/* Comprehensive Mobile Responsiveness Fixes */

/* Global mobile overflow prevention */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: clamp(14px, 1.2vw, 18px);
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
}

/* Ensure no elements exceed viewport width */
img {
    max-width: 100%;
    height: auto;
}

/* CSS Variables - Premium Green Theme */
:root {
    --primary-green: #1a5f3f;
    --light-green: #248457;
    --accent-green: #2ea76a;
    --bright-green: #34d058;
    --primary-white: #ffffff;
    --off-white: #f8fffe;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-lighter: rgba(255, 255, 255, 0.7);
    --text-dark: rgba(255, 255, 255, 0.95);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-intense: rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bouncy: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Responsive Scaling Variables */
    --base-font-size: clamp(14px, 1.2vw, 18px);
    --container-max-width: clamp(900px, 85vw, 1200px);
    --section-gap: clamp(0.75rem, 2vh, 1.5rem);
    --element-padding: clamp(0.5rem, 1.5vw, 1rem);
    --border-radius: clamp(8px, 1.2vw, 12px);
    
    /* Sketchy Effects */
    --sketch-offset: 2px;
    --sketch-blur: 1px;
}

/* ENHANCED RESPONSIVE CONTAINER SYSTEM - Consistent proportions across all devices */

/* Logo and Brand Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    z-index: 1000;
    flex-shrink: 0;
    min-width: max-content;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* Specific navbar logo styling with high specificity */
.navbar-brand .logo-image,
.navbar .logo-image {
    height: 45px !important;
    width: auto !important;
    min-width: 45px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    transition: filter var(--transition-fast) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-image:hover {
    filter: brightness(1) invert(0);
}

/* Ensure logo is visible on all backgrounds */
.logo-image {
    filter: brightness(0) invert(1) !important;
}

/* Hide logo in header/navbar on desktop (768px and above) */
@media (min-width: 768px) {
    .header .navbar-brand,
    .header .logo-link,
    .header .navbar-brand .logo-image,
    .header .navbar .logo-image,
    .header .logo,
    .header .logo-text,
    .header .mobile-menu-logo {
        display: none !important;
    }
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2.5vw, 2rem);
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet Portrait */
@media (min-width: 768px) {
    .container {
        max-width: min(1000px, 92vw);
        padding: 0 clamp(1rem, 2.5vw, 2rem);
    }
}

/* Tablet Landscape / Small Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: min(1100px, 90vw);
        padding: 0 clamp(1.25rem, 2.8vw, 2.2rem);
    }
    
    .navbar {
        padding: 0 clamp(1.25rem, 2.8vw, 2.2rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        right: clamp(1.25rem, 2.8vw, 2.2rem);
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 2vw, 2rem);
        margin-left: auto;
    }
}

/* Standard Desktop (Your 14-inch screen) - This is our reference point */
@media (min-width: 1200px) {
    .container {
        max-width: min(1200px, 92vw);
        padding: 0 clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .navbar {
        padding: 0 clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .mobile-menu-toggle {
        right: clamp(1.5rem, 3vw, 2.5rem);
    }
}

/* Large Desktop (24-27 inch screens) - Maintains 14-inch proportions */
@media (min-width: 1440px) {
    .container {
        max-width: min(1300px, 92vw);
        padding: 0 clamp(2rem, 4vw, 3.5rem);
        margin: 0 auto;
    }
    
    .navbar {
        padding: 0 clamp(2rem, 4vw, 3.5rem);
    }
    
    .mobile-menu-toggle {
        right: clamp(2rem, 4vw, 3.5rem);
    }
}

/* Extra Large Desktop */
@media (min-width: 1600px) {
    .container {
        max-width: min(1400px, 90vw);
        padding: 0 clamp(2.5rem, 4.5vw, 4rem);
        margin: 0 auto;
    }
    
    .navbar {
        padding: 0 clamp(2.5rem, 4.5vw, 4rem);
    }
    
    .mobile-menu-toggle {
        right: clamp(2.5rem, 4.5vw, 4rem);
    }
}

/* Ultra-wide and 4K Display Optimization */
@media (min-width: 2560px) {
    .container {
        max-width: min(1500px, 85vw);
        padding: 0 clamp(3rem, 5vw, 5rem);
        margin: 0 auto;
    }
}

/* Ultra-wide screens (27+ inch) - Maintains 14-inch proportions */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px; /* Same as 14-inch screen */
        padding: 0 clamp(2rem, 4vw, 4rem);
        /* Center the content to maintain visual balance */
        margin: 0 auto;
    }
}

/* Extra Large Screens (32+ inch) - Maintains 14-inch proportions */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px; /* Same as 14-inch screen */
        padding: 0 clamp(2rem, 4vw, 4rem);
        /* Center the content to maintain visual balance */
        margin: 0 auto;
    }
}

/* STANDARDIZED TYPOGRAPHY SYSTEM - Consistent across all pages */
/* This ensures all titles, subtitles, and descriptions have consistent sizing */

/* Hero titles - Standardized scaling */
.hero-title,
.about-hero-title,
.washcloth-hero-title,
.graphical-cleaning-hero-title,
.customer-service-hero-title,
.cassette-rolls-hero-title,
.windingdevice-hero-title,
.formula1-hero-title {
    font-family: var(--font-primary);
    margin-bottom: 30px;
}

/* Standardized title line - consistent across all pages */
.title-line {
    display: block;
    font-size: clamp(0.8rem, 1.8vw + 0.2rem, 1.4rem);
    font-weight: 500;
    color: var(--text-lighter);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Standardized main title - consistent across all pages */
.title-main {
    display: block;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-white);
    line-height: 0.9;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Standardized title subtitle - consistent across all pages */
.title-subtitle {
    display: block;
    font-size: clamp(0.7rem, 1.6vw, 1.2rem);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Standardized section descriptions - consistent across all pages */
.hero-description,
.about-hero-description,
.washcloth-hero-description,
.graphical-cleaning-hero-description,
.customer-service-hero-description,
.cassette-rolls-hero-description,
.windingdevice-hero-description,
.formula1-hero-description,
.section-description,
.machines-description {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.8rem);
    line-height: 1.7;
    color: var(--text-lighter);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: clamp(400px, 70%, 900px);
}

/* Standardized section titles - consistent across all pages */
.section-title,
.machines-title .title-main,
.brochures-title .title-main,
.formula1-title .title-main,
.about-section-title,
.graphical-cleaning-section-title,
.washcloth-section-title,
.customer-service-section-title,
.cassette-rolls-section-title,
.windingdevice-section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    color: var(--primary-green) !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
}

/* ENHANCED BUTTON SYSTEM - Perfect scaling across all devices */
.btn-primary, 
.cta-primary, 
.f1-cta-button, 
.machines-cta-button, 
.quote-cta {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 10px);
    padding: clamp(8px, 1.8vh, 12px) clamp(16px, 3vw, 24px);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1.3vw, 0.9rem);
    min-height: clamp(36px, 5vh, 44px);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-bouncy);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: clamp(140px, 20vw, 200px);
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-white);
    color: var(--primary-green);
    border: 2px solid var(--primary-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary::before, 
.cta-primary::before, 
.f1-cta-button::before, 
.machines-cta-button::before, 
.quote-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 63, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before, 
.cta-primary:hover::before, 
.f1-cta-button:hover::before, 
.machines-cta-button:hover::before, 
.quote-cta:hover::before {
    left: 100%;
}

.btn-primary:hover, 
.cta-primary:hover, 
.f1-cta-button:hover, 
.machines-cta-button:hover, 
.quote-cta:hover {
    background: var(--bright-green);
    color: var(--primary-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary, 
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-bouncy);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover, 
.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-accent, 
.machines-cta-button {
    background: var(--accent-green);
    color: var(--primary-white);
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 25px rgba(46, 167, 106, 0.3);
}

.btn-accent::before, 
.machines-cta-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-accent:hover, 
.machines-cta-button:hover {
    background: var(--bright-green);
    border-color: var(--bright-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 208, 88, 0.4);
}

.btn-small, 
.card-cta {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-bouncy);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-small::before, 
.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    transition: left var(--transition-fast);
    z-index: -1;
}

.btn-small:hover::before, 
.card-cta:hover::before {
    left: 0;
}

.btn-small:hover, 
.card-cta:hover {
    color: var(--primary-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 167, 106, 0.3);
}

.cta-icon {
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .cta-icon, 
.cta-primary:hover .cta-icon, 
.f1-cta-button:hover .cta-icon, 
.machines-cta-button:hover .cta-icon, 
.quote-cta:hover .cta-icon {
    transform: translateX(5px);
}

.btn-secondary:hover .cta-icon, 
.cta-secondary:hover .cta-icon {
    transform: translateY(3px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    min-height: 100vh;
}

/* Premium Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(26, 95, 63, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.visible {
    transform: translateY(0);
    animation: headerSlideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 2s ease;
    opacity: 0;
}

.header.scrolled::before {
    opacity: 1;
}

.header:hover::before {
    transform: translateX(100%);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 30px;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-white);
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* .logo-tagline - Removed Est. 1991 from all logos */
/*
.logo-tagline {
    font-family: var(--font-secondary);
    font-size: 0.65rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-top: -3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
*/

/* ENHANCED NAVIGATION SYSTEM - Perfect scaling across all devices */
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    flex-wrap: nowrap;
}

/* Enhanced navigation for different screen sizes */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: clamp(12px, 2vw, 20px);
    }
}

/* Enhanced navigation spacing for medium desktops */

@media (min-width: 1440px) {
    .nav-menu {
        gap: clamp(16px, 2.5vw, 24px);
    }
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 95, 63, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 8px;
    /* Prevent layout shifts */
    contain: layout style paint;
    /* Improve performance */
    will-change: opacity, visibility, transform;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown improvements */
@media (max-width: 768px) {
    .nav-dropdown:hover .dropdown-content {
        /* Disable hover effects on mobile to prevent glitches */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    /* Show dropdown on focus for mobile accessibility */
    .nav-dropdown:focus-within .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 8px;
    margin: 4px 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover,
.dropdown-link.active {
    color: var(--primary-white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-link:first-child {
    margin-top: 8px;
}

.dropdown-link:last-child {
    margin-bottom: 8px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem);
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    padding: clamp(5px, 0.8vw, 8px) clamp(6px, 1vw, 12px);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.nav-contact-button {
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem);
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    padding: clamp(6px, 1vw, 10px) clamp(12px, 2vw, 20px);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 20px;
    background: var(--primary-white);
    border: 2px solid var(--primary-white);
    margin-left: clamp(6px, 1vw, 12px);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-contact-button:hover {
    background: var(--bright-green);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform var(--transition-fast);
    border-radius: 20px;
}

.nav-link:hover::before {
    transform: scale(1);
}

.nav-link:hover {
    color: var(--primary-white);
    transform: translateY(-2px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-link.active {
    color: var(--primary-white);
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* NEW MODERN MOBILE MENU - Clean and Simple */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-white);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: var(--primary-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo img {
    height: 32px;
    width: auto;
}

.mobile-menu-logo-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background: #f3f4f6;
    color: var(--primary-green);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 24px 0;
}

.mobile-menu-link {
    display: block;
    padding: 16px 24px;
    color: #374151;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.mobile-menu-link:hover {
    background: #f9fafb;
    color: var(--primary-green);
    border-left-color: var(--accent-green);
}

.mobile-menu-link.active {
    background: #f0fdf4;
    color: var(--primary-green);
    border-left-color: var(--bright-green);
    font-weight: 600;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    margin: 0;
}

.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: #374151;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-menu-dropdown-toggle:hover {
    background: #f9fafb;
    color: var(--primary-green);
    border-left-color: var(--accent-green);
}

.mobile-menu-dropdown-toggle.active {
    background: #f0fdf4;
    color: var(--primary-green);
    border-left-color: var(--bright-green);
    font-weight: 600;
}

.mobile-menu-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    color: #9ca3af;
}

.mobile-menu-dropdown-toggle.active .mobile-menu-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.mobile-menu-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.mobile-menu-submenu.active {
    max-height: 300px;
}

.mobile-menu-sublink {
    display: block;
    padding: 12px 24px 12px 48px;
    color: #6b7280;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu-sublink:hover {
    background: #f3f4f6;
    color: var(--primary-green);
}

.mobile-menu-sublink.active {
    background: #e0f2fe;
    color: var(--primary-green);
    font-weight: 500;
}

.mobile-menu-sublink::before {
    content: '—';
    position: absolute;
    left: 36px;
    color: #d1d5db;
}

.mobile-menu-sublink:hover::before,
.mobile-menu-sublink.active::before {
    color: var(--accent-green);
}

/* Contact Button */
.mobile-menu-contact {
    margin: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        color: var(--primary-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: block;
}

.mobile-menu-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

/* Mobile Menu Responsive Adjustments */
@media (max-width: 480px) {
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-menu-header {
        padding: 16px 20px;
    }
    
    .mobile-menu-logo img {
        height: 28px;
    }
    
    .mobile-menu-logo-text {
        font-size: 1.1rem;
    }
    
    .mobile-menu-link,
    .mobile-menu-dropdown-toggle {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .mobile-menu-sublink {
        padding: 10px 20px 10px 44px;
        font-size: 0.85rem;
    }
    
    .mobile-menu-sublink::before {
        left: 32px;
    }
    
    .mobile-menu-contact {
        margin: 20px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Mobile Menu Animation Delays */
.mobile-menu.active .mobile-menu-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu.active .mobile-menu-link:nth-child(6) { animation-delay: 0.6s; }

/* Smooth animations */
.mobile-menu-link,
.mobile-menu-dropdown-toggle {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-menu-link,
.mobile-menu.active .mobile-menu-dropdown-toggle {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ENHANCED HERO SECTION - Perfect scaling across all devices */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px) 0 clamp(40px, 6vh, 80px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.hero-grid-pattern {
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    animation: gridMove 25s linear infinite;
    transform: translate(-10%, -10%);
}

@keyframes gridMove {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(-10% + 40px, -10% + 40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 60px;
    animation: heroFadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    max-width: clamp(600px, 80%, 900px);
    margin-bottom: clamp(30px, 5vh, 60px);
}

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    color: var(--text-lighter);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.title-main {
    display: block;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--primary-white);
    line-height: 0.9;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-green), transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.title-subtitle {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-lighter);
    margin-bottom: clamp(2rem, 4vh, 3rem);
    font-weight: 400;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    flex-wrap: wrap;
    margin-bottom: clamp(30px, 5vh, 60px);
    justify-content: flex-start;
}

/* Enhanced CTA alignment for different screen sizes */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto 30px auto;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        padding: 16px 24px;
        font-size: 0.95rem;
        min-width: auto;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Graphical Cleaning Hero specific mobile styles - Same as home page */
    .graphical-cleaning-hero .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto 30px auto;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .graphical-cleaning-hero .hero-cta .cta-primary,
    .graphical-cleaning-hero .hero-cta .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        padding: 16px 24px;
        font-size: 0.95rem;
        min-width: auto;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .graphical-cleaning-hero .hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Graphical Cleaning Hero content mobile styles - Same as home page */
    .graphical-cleaning-hero .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .graphical-cleaning-hero .hero-title {
        text-align: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }
    
    .graphical-cleaning-hero .hero-description {
        text-align: center !important;
        padding: 0 20px !important;
        margin: 0 auto 30px auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }
}

@media (min-width: 1440px) {
    .hero-cta {
        gap: 30px;
    }
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-bouncy);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: var(--primary-white);
    color: var(--primary-green);
    border: 2px solid var(--primary-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 63, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--bright-green);
    color: var(--primary-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.cta-primary:hover .cta-icon {
    transform: translateX(5px);
}

.cta-secondary:hover .cta-icon {
    transform: translateY(3px);
}

/* ENHANCED SERVICE CARDS - Responsive grid system */
.services-showcase {
    position: relative;
    z-index: 2;
    margin-top: clamp(30px, 5vw, 50px);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 320px), 1fr));
    gap: clamp(20px, 3vw, 40px);
    max-width: 100%;
    margin: 0 auto;
}

/* Standardized services grid - Maintains 14-inch screen proportions */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        gap: 50px;
    }
}

@media (min-width: 1440px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        gap: 50px;
    }
}

@media (min-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        gap: 50px;
    }
}

@media (min-width: 1920px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        gap: 50px;
    }
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(16px, 2vw, 25px);
    padding: clamp(20px, 3vw, 35px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--bright-green) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.service-card:hover .card-background {
    opacity: 0.05;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--accent-green);
    background: linear-gradient(135deg, rgba(46, 167, 106, 0.1), rgba(52, 208, 88, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-bouncy);
    border: 2px solid rgba(46, 167, 106, 0.1);
}

.card-icon svg {
    width: 30px;
    height: 30px;
    transition: all var(--transition-fast);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent-green);
    color: var(--primary-white);
    box-shadow: 0 10px 30px rgba(46, 167, 106, 0.3);
    border-color: var(--bright-green);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: all var(--transition-fast);
    line-height: 1.2;
}

.service-card:hover h3 {
    transform: translateX(5px);
    color: var(--light-green);
}

.service-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.service-card:hover p {
    color: #444;
}

.card-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat {
    padding: 6px 12px;
    background: rgba(46, 167, 106, 0.08);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-green);
    transition: all var(--transition-fast);
    border: 1px solid rgba(46, 167, 106, 0.1);
}

.service-card:hover .stat {
    background: var(--bright-green);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 208, 88, 0.3);
}

.card-cta {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-bouncy);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    transition: left var(--transition-fast);
    z-index: -1;
}

.card-cta:hover::before {
    left: 0;
}

.card-cta:hover {
    color: var(--primary-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 167, 106, 0.3);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-hover-effect {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-white), rgba(255, 255, 255, 0.5));
    position: relative;
    animation: scroll 2.5s infinite;
    border-radius: 1px;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary-white);
}

@keyframes scroll {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

/* Comprehensive Responsive Design - Premium Green Theme */

/* Global Mobile Fixes */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ENHANCED MOBILE RESPONSIVE DESIGN */

/* Extra Small Mobile (320px - 480px) - Enhanced touch targets and spacing */
@media (max-width: 480px) {
    /* Enhanced mobile typography */
    .title-main {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.0 !important;
    }
    
    .title-line {
        font-size: clamp(0.7rem, 3vw, 0.9rem) !important;
        margin-bottom: 8px !important;
    }
    
    .title-subtitle {
        font-size: clamp(0.7rem, 3vw, 1rem) !important;
    }
    
    /* Enhanced hero spacing */
    .hero {
        padding: clamp(80px, 15vh, 120px) 0 clamp(30px, 8vh, 50px);
    }
    
    /* Better mobile buttons */
    .cta-primary,
    .cta-secondary,
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.8rem;
        min-width: 100%;
        max-width: 280px;
    }
    
    /* Enhanced service cards for mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }
    
    .service-card {
        padding: 28px 24px !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1) !important;
        background: #ffffff !important;
        border: 1px solid rgba(46, 167, 106, 0.2) !important;
        backdrop-filter: none !important;
        margin-bottom: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .service-card h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
        margin-bottom: 16px !important;
        color: var(--primary-green) !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
    
    .service-card p {
        font-size: clamp(0.85rem, 3vw, 0.95rem) !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        color: #666 !important;
    }
    
    .card-icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 16px !important;
        background: linear-gradient(135deg, rgba(46, 167, 106, 0.1), rgba(52, 208, 88, 0.05)) !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 2px solid rgba(46, 167, 106, 0.1) !important;
    }
    
    .card-icon svg {
        width: 20px !important;
        height: 20px !important;
        color: var(--accent-green) !important;
    }
    
    /* Mobile service card stats and CTA styling - Same as desktop */
    .service-card .card-stats {
        display: flex !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
        flex-wrap: wrap !important;
    }
    
    .service-card .stat {
        background: rgba(46, 167, 106, 0.1) !important;
        color: var(--accent-green) !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        border: 1px solid rgba(46, 167, 106, 0.2) !important;
    }
    
    .service-card .card-cta {
        background: var(--primary-white) !important;
        color: var(--accent-green) !important;
        border: 1px solid var(--accent-green) !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        width: 100% !important;
        transition: all var(--transition-fast) !important;
        margin-top: auto !important;
    }
    
    .service-card .card-cta:hover {
        background: var(--accent-green) !important;
        color: var(--primary-white) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Prevent horizontal scroll and enhance mobile layout */
    .hero,
    .services-showcase,
    .formula1-section,
    .machines-section,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero,
    .our-products-section,
    .intro-section,
    .detailed-content-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Mobile services showcase specific styling */
    .services-showcase {
        padding: 40px 0 !important;
        margin-top: 0 !important;
    }
    
    /* Mobile-specific section overrides for full-width experience */
    @media (max-width: 767px) {
        .hero,
        .services-showcase {
            width: 100vw !important;
            max-width: 100vw !important;
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            overflow-x: hidden !important;
        }
        
        .hero .container,
        .services-showcase .container {
            max-width: 100% !important;
            padding: 0 20px !important;
            margin: 0 !important;
        }
        
        /* Ensure mobile hero displays proper colors and effects */
        .hero {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%) !important;
            position: relative !important;
        }
        
        .hero .hero-background {
            display: block !important;
            visibility: visible !important;
        }
        
        .hero .hero-grid-pattern {
            display: block !important;
            visibility: visible !important;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
            background-size: 40px 40px !important;
            opacity: 0.6 !important;
        }
        
        .hero::before {
            display: block !important;
            visibility: visible !important;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%) !important;
        }
        
        /* Remove glass morphism effect from hero content on mobile */
        .hero .hero-content,
        .hero .about-hero-content {
            background: transparent !important;
            backdrop-filter: none !important;
            border: none !important;
            border-radius: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            box-shadow: none !important;
        }
        
        /* Ensure hero text is properly visible without glass container */
        .hero .hero-text {
            background: transparent !important;
            backdrop-filter: none !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
    }
    
    /* Enhanced mobile containers */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Global mobile typography optimization for all pages */
    .hero-title,
    .about-hero-title,
    .washcloth-hero-title,
    .graphical-cleaning-hero-title,
    .customer-service-hero-title,
    .cassette-rolls-hero-title,
    .windingdevice-hero-title,
    .formula1-hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.0 !important;
        margin-bottom: clamp(15px, 4vw, 25px) !important;
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description,
    .graphical-cleaning-hero-description,
    .customer-service-hero-description,
    .cassette-rolls-hero-description,
    .windingdevice-hero-description,
    .formula1-hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
        line-height: 1.4 !important;
        margin-bottom: clamp(20px, 5vw, 30px) !important;
        max-width: 100% !important;
        padding: 0 clamp(8px, 2vw, 16px) !important;
    }
    
    /* Enhanced mobile CTA buttons for all pages */
    .hero-cta,
    .about-hero-cta,
    .washcloth-hero-cta,
    .graphical-cleaning-hero-cta,
    .customer-service-hero-cta,
    .cassette-rolls-hero-cta,
    .windingdevice-hero-cta,
    .formula1-hero-cta {
        flex-direction: column !important;
        align-items: center !important;
        gap: clamp(12px, 3vw, 18px) !important;
        margin-bottom: clamp(20px, 5vw, 30px) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto 30px auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary,
    .about-hero-cta .cta-primary,
    .about-hero-cta .cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
        min-width: auto !important;
        padding: clamp(10px, 3vw, 14px) clamp(20px, 5vw, 28px) !important;
        font-size: clamp(0.75rem, 3vw, 0.9rem) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hero-cta .cta-secondary,
    .about-hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Mobile navigation full screen */
    .mobile-nav-menu {
        width: 100vw;
        right: -100vw;
    }
    
    .mobile-nav-menu.active {
        right: 0;
    }
    
    /* Mobile navbar and logo styling */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .navbar-brand {
        margin-right: 0;
        z-index: 1000;
    }
    
    .logo-image {
        height: 38px !important;
        width: auto !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        z-index: 1000;
    }
    
    /* Mobile navigation header with logo */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-brand {
        display: flex;
        align-items: center;
    }
    
    .mobile-logo-image {
        height: 24px;
        width: auto;
        filter: brightness(0) invert(1);
    }
    
    /* Hero sections mobile padding - Consistent across all pages */
    .hero {
        padding: 120px 0 60px;
        min-height: 100vh;
    }
    
    /* Mobile hero section - Remove container constraints for full-width experience */
    .hero .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    .hero .about-hero-content,
    .about-hero .about-hero-content,
    .graphical-cleaning-hero .graphical-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .hero .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .hero .hero-title {
        text-align: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }
    
    .hero .hero-description {
        text-align: center !important;
        padding: 0 20px !important;
        margin: 0 auto 30px auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }
    
    .hero .hero-cta {
        justify-content: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 30px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero .hero-cta .cta-primary,
    .hero .hero-cta .cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
        min-width: auto !important;
        margin: 0 auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .hero .hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* About Hero specific mobile styles */
    .about-hero .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .about-hero .hero-title {
        text-align: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }
    
    .about-hero .hero-description {
        text-align: center !important;
        padding: 0 20px !important;
        margin: 0 auto 30px auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }
    
    .about-hero .hero-cta {
        justify-content: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 30px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .about-hero .hero-cta .cta-primary,
    .about-hero .hero-cta .cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
        min-width: auto !important;
        margin: 0 auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .about-hero .hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Graphical Cleaning Hero specific mobile styles */
    .graphical-cleaning-hero .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .graphical-cleaning-hero .hero-title {
        text-align: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }
    
    .graphical-cleaning-hero .hero-description {
        text-align: center !important;
        padding: 0 20px !important;
        margin: 0 auto 30px auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }
    
    .graphical-cleaning-hero .hero-cta {
        justify-content: center !important;
        padding: 0 20px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 30px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .graphical-cleaning-hero .hero-cta .cta-primary,
    .graphical-cleaning-hero .hero-cta .cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
        min-width: auto !important;
        margin: 0 auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .graphical-cleaning-hero .hero-cta .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Solutions Section mobile styles for graphical cleaning page */
    .solutions-section .solutions-content {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
        margin: 0 20px !important;
    }
    
    .solutions-section .solution-card {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        margin-bottom: 20px !important;
    }
    
    /* Production Centre Section mobile styles */
    .production-centre-section .production-centre-content {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
        margin: 0 20px !important;
    }
    
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero {
        padding: 120px 0 60px;
        min-height: 100vh;
    }
    
    /* About Hero mobile container styles */
    .about-hero .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    /* Graphical Cleaning Hero mobile container styles */
    .graphical-cleaning-hero .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    /* Graphical Cleaning Hero content mobile container styles */
    .graphical-cleaning-hero .graphical-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    /* Products showcase mobile fix */
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        height: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .product-image {
        height: 160px;
        width: 100%;
        border-radius: 15px 15px 0 0;
    }
    
    .product-info {
        padding: 20px;
        width: 100%;
    }
    
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .product-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .product-tags {
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .tag {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    .download-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    /* Services grid mobile - Seamless hero integration */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    /* Mobile services showcase - Seamless hero integration */
    .services-showcase .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    .services-showcase {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        background: transparent !important;
        position: relative !important;
        z-index: 2 !important;
        padding: 0 !important;
        margin-top: -60px !important;
    }
    
    /* Clean mobile service card styling - Same as desktop */
    .services-showcase .service-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 18px !important;
        padding: 24px 20px !important;
        margin: 0 !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-card {
        padding: 24px 20px !important;
        border-radius: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Mobile typography scaling */
    .hero-title,
    .about-hero-title,
    .washcloth-hero-title {
        font-size: clamp(2rem, 8vw, 3.2rem);
        line-height: 1.1;
        word-wrap: break-word;
        margin-bottom: 20px;
    }
    
    /* Mobile hero section specific optimizations */
    .hero .hero-title .title-main {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        text-align: center !important;
        margin: 0 auto 15px auto !important;
        color: var(--primary-white) !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero .hero-title .title-line,
    .hero .hero-title .title-subtitle {
        text-align: center !important;
        margin: 0 auto 8px auto !important;
        color: var(--text-light) !important;
    }
    
    .hero .hero-title .title-main::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
        background: linear-gradient(90deg, var(--bright-green), transparent) !important;
        opacity: 0.8 !important;
    }
    
    /* Ensure mobile hero content is properly positioned */
    .hero .hero-content {
        position: relative !important;
        z-index: 3 !important;
        text-align: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    .hero .hero-text {
        text-align: center !important;
        margin: 0 auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
    }
    
    /* Override any glass morphism effects for hero elements on mobile */
    .hero * {
        backdrop-filter: none !important;
    }
    
    .hero .hero-content *,
    .hero .about-hero-content *,
    .hero .hero-text * {
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    /* Preserve button styling on mobile - restore button containers */
    .hero .cta-primary,
    .hero .cta-secondary {
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        border: 2px solid var(--primary-white) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: none !important;
        padding: 14px 28px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: all var(--transition-bouncy) !important;
        cursor: pointer !important;
        min-width: 180px !important;
        justify-content: center !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }
    
    .hero .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid var(--primary-white) !important;
    }
    
    /* Button hover effects for mobile */
    .hero .cta-primary:hover {
        background: var(--bright-green) !important;
        color: var(--primary-white) !important;
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero .cta-secondary:hover {
        background: var(--primary-white) !important;
        color: var(--primary-green) !important;
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Ensure button text and icons are properly styled */
    .hero .cta-text {
        color: inherit !important;
        font-weight: 700 !important;
    }
    
    .hero .cta-icon {
        color: inherit !important;
        font-weight: bold !important;
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 40px;
        padding: 0 8px;
    }
    
    /* Button responsiveness */
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.85rem;
        text-align: center;
        margin: 5px 0;
    }
    

    
    /* Additional mobile hero optimizations */
    .hero .hero-background {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
    }
    
    .hero .hero-grid-pattern {
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
        background-position: center !important;
    }
    
    /* Ensure mobile hero maintains desktop colors and effects */
    .hero {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%) !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%) !important;
        opacity: 1 !important;
        z-index: 1 !important;
}
    
    .hero .hero-grid-pattern {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
        background-size: 40px 40px !important;
        opacity: 0.6 !important;
        animation: gridMove 25s linear infinite !important;
        z-index: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Ensure hero section takes full mobile width */
    .hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile carousel fixes */
    .carousel-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
        padding: 20px 0;
    }
    
    .carousel-track {
        gap: 8px;
        animation: smoothScroll 25s linear infinite;
    }
    
    .carousel-item {
        min-width: 120px;
        flex-shrink: 0;
    }
    
    .company-logo {
        width: 100px;
        height: 60px;
        padding: 10px;
    }
    
    /* Formula 1 section mobile */
    .formula1-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .formula1-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile menu improvements */
    .mobile-nav-links {
        padding: 25px 0;
        overflow-y: auto;
        max-height: calc(100vh - 90px);
    }
    
    .mobile-nav-sublink {
        padding: 12px 30px 12px 45px;
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    /* Detailed content section mobile */
    .detailed-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 0 24px;
    }
    
    .content-image-container {
        max-width: 100%;
        aspect-ratio: 4/3;
        height: auto;
    }
    
    /* Mobile navigation dropdown arrow positioning */
    .mobile-dropdown-arrow {
        padding: 12px 15px 12px 8px;
        font-size: 0.7rem;
    }
    
    /* Mobile navigation missing elements */
    .navbar {
        height: 80px;
        padding: 0 24px;
    }
    
    .mobile-menu-toggle {
        right: 24px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* .logo-tagline - Removed */
    /*
    .logo-tagline {
        font-size: 0.6rem;
    }
    */
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    /* Mobile nav header fix */
    .mobile-nav-header {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-header .logo-text {
        font-size: 1.3rem;
    }
    
    /* .mobile-nav-header .logo-tagline - Removed */
    /*
    .mobile-nav-header .logo-tagline {
        font-size: 0.65rem;
    }
    */
    
    .mobile-nav-link {
        padding: 18px 30px;
        font-size: 0.95rem;
    }
    
    /* Hero content mobile adjustments */
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    /* Service card mobile improvements */
    .card-icon {
    width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .card-icon svg {
    width: 20px;
    height: 20px;
    }
    
    .card-stats {
    flex-direction: column;
        gap: 5px;
    }
    
    .stat {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .card-cta {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    /* General mobile text sizing */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    p {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Footer mobile */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        text-align: center;
        padding: 0 8px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ENHANCED TABLET DESIGN - Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Enhanced tablet typography */
    .title-main {
        font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    }
    
    .title-line {
        font-size: clamp(0.8rem, 2vw, 1rem) !important;
    }
    
    .title-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem) !important;
    }
    
    /* Enhanced hero sections for tablets */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero {
        padding: clamp(100px, 10vh, 130px) 0 clamp(50px, 6vh, 70px);
    }
    
    /* Better tablet navigation */
    .mobile-nav-menu {
        width: min(400px, 70vw);
        right: calc(-1 * min(400px, 70vw));
    }
    
    .navbar {
        height: 80px;
    }
    
    /* Enhanced service grid for tablets */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 30px);
        max-width: 90%;
    }
    
    /* Better button sizing for tablets */
    .cta-primary,
    .cta-secondary,
    .btn-primary {
        min-width: clamp(160px, 25vw, 200px);
        padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    }
}

/* ENHANCED TABLET LANDSCAPE (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Enhanced typography for tablet landscape */
    .title-main {
        font-size: clamp(3rem, 5vw, 4rem) !important;
    }
    
    .title-line {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
    }
    
    .title-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem) !important;
    }
    
    /* Enhanced hero sections for tablet landscape */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero {
        padding: clamp(110px, 12vh, 140px) 0 clamp(50px, 6vh, 70px);
    }
    
    /* Optimized service grid for tablet landscape */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 3vw, 30px);
        max-width: 95%;
    }
    
    /* Better button sizing */
    .cta-primary,
    .cta-secondary,
    .btn-primary {
        min-width: clamp(170px, 20vw, 220px);
        padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 30px);
    }
    
    /* Enhanced hero CTA layout */
    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
        gap: clamp(20px, 3vw, 30px);
    }
}

/* Comprehensive Responsive Design - Premium Green Theme */

/* Our Machines Section */
.machines-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
    overflow: hidden;
    padding: 80px 0;
}

.machines-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.machines-grid-pattern {
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(26, 95, 63, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 95, 63, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    animation: gridMove 30s linear infinite;
    transform: translate(-10%, -10%);
}

    .machines-header {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
        z-index: 2;
    }

    .machines-title {
        font-family: var(--font-primary);
        margin-bottom: 30px;
    }

    .machines-description {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
        line-height: 1.6;
        color: var(--light-green);
        font-weight: 400;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

.machines-title .title-line {
    display: block;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.machines-title .title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(26, 95, 63, 0.2);
}

.machines-title .title-main::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.machines-title .title-subtitle {
    display: block;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    color: var(--light-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.machines-content {
    position: relative;
    z-index: 2;
}

    /* Enhanced Auto-Scrolling Carousel */
    .carousel-container {
        position: relative;
        margin-bottom: 80px;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: linear-gradient(90deg, 
            rgba(248, 255, 254, 0.3) 0%, 
            rgba(248, 255, 254, 0.95) 10%, 
            rgba(248, 255, 254, 1) 20%, 
            rgba(248, 255, 254, 1) 80%, 
            rgba(248, 255, 254, 0.95) 90%, 
            rgba(248, 255, 254, 0.3) 100%);
        padding: 40px 0;
        box-shadow: inset 0 10px 30px rgba(26, 95, 63, 0.05);
    }

    .carousel-track {
        display: flex;
        align-items: center;
        animation: smoothScroll 40s linear infinite;
        gap: 15px;
        width: max-content;
    }

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

    .carousel-item {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
    }

    .company-logo {
        width: 160px;
        height: 100px;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-medium);
        cursor: pointer;
        position: relative;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(26, 95, 63, 0.08);
        border: 1px solid rgba(26, 95, 63, 0.1);
        backdrop-filter: blur(10px);
        text-decoration: none;
    }

    .company-logo:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 40px rgba(26, 95, 63, 0.15);
        background: rgba(255, 255, 255, 1);
        border-color: var(--accent-green);
    }

    .company-logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: all var(--transition-medium);
        filter: grayscale(0.7) brightness(0.8);
    }

    .company-logo:hover img {
        filter: grayscale(0) brightness(1);
        transform: scale(1.05);
    }

    .logo-placeholder {
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 1rem;
        color: var(--primary-green);
        text-align: center;
        letter-spacing: 1px;
        transition: all var(--transition-medium);
    }

    .company-logo:hover .logo-placeholder {
        color: var(--accent-green);
        transform: scale(1.05);
    }

    /* Pause animation on hover */
    .carousel-container:hover .carousel-track {
        animation-play-state: paused;
    }

/* Carousel controls removed for auto-scroll */

/* ENHANCED CTA SECTION - Better mobile experience */
.machines-cta-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(26, 95, 63, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 70px rgba(26, 95, 63, 0.1);
    position: relative;
    overflow: hidden;
}

/* Enhanced mobile CTA section */
@media (max-width: 768px) {
    .machines-cta-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
        border-radius: 16px;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 10px;
    }
    
    .cta-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .machines-cta-section {
        padding: 20px 16px;
        gap: 20px;
    }
}

.machines-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.02), rgba(46, 167, 106, 0.02));
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Enhanced mobile sizing for CTA heading */
@media (max-width: 480px) {
    .cta-heading {
        font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }
}

.cta-description {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Consistent CTA Button */
.machines-cta-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    padding: clamp(8px, 1.5vh, 10px) clamp(16px, 2.5vw, 20px);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-bouncy);
    min-width: clamp(120px, 16vw, 160px);
    min-height: clamp(32px, 4vh, 36px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-green);
    color: var(--primary-white);
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 25px rgba(46, 167, 106, 0.3);
}

.machines-cta-button::before {
    content: '';
    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.6s ease;
}

.machines-cta-button:hover::before {
    left: 100%;
}

.machines-cta-button:hover {
    background: var(--bright-green);
    border-color: var(--bright-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 208, 88, 0.4);
}

.machines-cta-button .cta-icon {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    transition: transform var(--transition-fast);
}

.machines-cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    color: var(--primary-white);
    overflow: hidden;
    padding: 80px 0 40px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.footer-grid-pattern {
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridMove 35s linear infinite reverse;
    transform: translate(-10%, -10%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
        margin-bottom: 50px;
        align-items: start;
    }

    .footer-brand {
        max-width: 500px;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .footer-logo .logo-text {
        font-family: var(--font-primary);
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary-white);
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* .footer-logo .logo-tagline - Removed */
    /*
    .footer-logo .logo-tagline {
        font-family: var(--font-secondary);
        font-size: 0.7rem;
        color: var(--text-lighter);
        font-weight: 500;
        margin-top: -3px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    */

    .footer-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-lighter);
        margin: 0;
        font-weight: 400;
    }

    .footer-contact h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-white);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contact-link {
        color: var(--text-lighter);
        text-decoration: none;
        font-size: 1rem;
        transition: all var(--transition-fast);
        font-weight: 500;
    }

    .contact-link:hover {
        color: var(--bright-green);
        transform: translateX(5px);
    }

    .contact-address {
        color: var(--text-lighter);
        font-size: 1rem;
        opacity: 0.9;
        font-weight: 500;
    }

    .contact-location {
        color: var(--text-lighter);
        font-size: 1rem;
        opacity: 0.8;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
    }

    .footer-copyright p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-lighter);
        opacity: 0.8;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .social-link {
        color: var(--text-lighter);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all var(--transition-fast);
        padding: 8px 16px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .social-link svg {
        flex-shrink: 0;
        transition: transform var(--transition-fast);
    }

    .social-link:hover {
        color: var(--primary-white);
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .social-link:hover svg {
        transform: scale(1.1);
    }



/* Responsive styles for Our Machines and Footer */
@media (max-width: 1024px) {
    .machines-cta-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .machines-section {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .machines-header {
        margin-bottom: 60px;
    }
    
    .carousel-container {
        margin-bottom: 60px;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .carousel-item {
        flex: 0 0 220px;
        margin: 0 3px;
    }
    
    .company-logo {
        width: 160px;
        height: 100px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .machines-cta-section {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .machines-section {
        padding: 80px 0 60px;
    }
    
    .machines-header {
        margin-bottom: 50px;
    }
    
    .carousel-container {
        margin-bottom: 50px;
    }
    
    .carousel-track {
        gap: 6px;
    }
    
    .carousel-item {
        flex: 0 0 180px;
        margin: 0 2px;
    }
    
    .company-logo {
        width: 140px;
        height: 80px;
    }
    
    .logo-placeholder {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .machines-cta-section {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .cta-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .machines-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 1rem;
    }
    
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .social-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-wave svg {
        height: 40px;
    }
}

/* About Hero Section - matching main hero */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    overflow: hidden;
    padding: 130px 0 60px; /* Matching main hero padding */
}

/* Graphical Cleaning Hero Section */
.graphical-cleaning-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    overflow: hidden;
    padding: 130px 0 60px; /* Matching main hero padding */
}

/* Product Page Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    overflow: hidden;
    padding: 130px 0 60px; /* Matching main hero padding */
}

/* Mobile Navigation Dropdown Styles */
.mobile-nav-dropdown {
    width: 100%;
}

.mobile-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.mobile-nav-parent .mobile-nav-link {
    flex: 1;
    padding: 15px 30px;
    margin: 0;
}

.mobile-dropdown-arrow {
    padding: 15px 30px 15px 10px;
    color: var(--primary-white);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    user-select: none;
    cursor: pointer;
}

.mobile-nav-parent.expanded .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
}

.mobile-nav-submenu.active {
    max-height: 300px;
    opacity: 1;
}

.mobile-nav-sublink {
    display: block;
    color: var(--primary-white);
    text-decoration: none;
    padding: 10px 25px 10px 40px;
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 4px solid transparent;
    opacity: 0.9;
    flex-shrink: 0;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--bright-green);
    transform: translateX(8px);
    opacity: 1;
}

/* Formula 1 Section */
.formula1-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.3) 100%);
    overflow: hidden;
    padding: 120px 0;
}

.formula1-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.formula1-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hsr-1700-06.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: brightness(0.9) contrast(1.1);
}

.formula1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 2;
}

.formula1-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.checkered-flags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.checkered-flag {
    position: absolute;
    width: 120px;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: flagWave 8s ease-in-out infinite;
    opacity: 0.6;
}

.flag-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.flag-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.flag-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(5deg) scale(1.1); opacity: 0.8; }
}

.formula1-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.formula1-header {
    margin-bottom: 60px;
}

.f1-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.f1-icon {
    width: 24px;
    height: 24px;
    fill: var(--bright-green);
}

.f1-badge span {
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.formula1-title {
    font-family: var(--font-primary);
    margin-bottom: 20px;
}

.title-highlight {
    display: block;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--bright-green);
    line-height: 0.9;
    margin-bottom: 10px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(52, 208, 88, 0.3);
}

.formula1-title .title-main {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.formula1-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.formula1-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.formula1-text {
    text-align: left;
}

.text-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-card:last-child {
    margin-bottom: 0;
}

.text-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.formula1-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.formula1-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bright-green);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-white);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(52, 208, 88, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.f1-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--bright-green), var(--accent-green));
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(52, 208, 88, 0.3);
}

.f1-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 208, 88, 0.4);
    background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
}

.f1-cta-button .cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.f1-cta-button:hover .cta-icon {
    transform: translateX(5px);
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.racing-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 4;
    overflow: hidden;
}

.stripe {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--bright-green) 0%, 
        var(--primary-white) 50%, 
        var(--bright-green) 100%);
    animation: stripeMove 3s linear infinite;
}

.stripe-1 {
    width: 200px;
    left: -200px;
    animation-delay: 0s;
}

.stripe-2 {
    width: 150px;
    left: -150px;
    animation-delay: 1s;
}

.stripe-3 {
    width: 100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes stripeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* Formula 1 Section Mobile Responsive */
@media (max-width: 768px) {
    .formula1-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .formula1-text {
        text-align: center;
    }
    
    .text-card {
        padding: 20px;
    }
    
    .formula1-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .formula1-section {
        padding: 80px 0 60px;
    }
    
    .formula1-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .f1-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Cassette Rolls Page Styles */

/* Washcloth Hero Section (used for cassette rolls) */
.washcloth-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    overflow: hidden;
    padding: 130px 0 60px;
}

.washcloth-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.washcloth-hero .hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 60s linear infinite;
    transform: translate(-10%, -10%);
}

.washcloth-hero .container {
    position: relative;
    z-index: 3;
}

.washcloth-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

.washcloth-hero .hero-text {
    position: relative;
}

.washcloth-hero .hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-white);
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.washcloth-hero .hero-title .title-line {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.washcloth-hero .hero-title .title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-white);
}

.washcloth-hero .hero-title .title-subtitle {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.washcloth-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-lighter);
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.washcloth-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.washcloth-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Comprehensive Washcloth Section */
.comprehensive-washcloth-section {
    position: relative;
    padding: 120px 0;
    background: var(--primary-white);
    overflow: hidden;
}

.comprehensive-washcloth-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.comprehensive-washcloth-section .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: grayscale(100%);
}

.comprehensive-washcloth-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(26, 95, 63, 0.95) 0%, 
        rgba(36, 132, 87, 0.9) 50%, 
        rgba(46, 167, 106, 0.95) 100%
    );
    z-index: 2;
}

.comprehensive-washcloth-section .container {
    position: relative;
    z-index: 3;
}

.comprehensive-washcloth-section .section-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comprehensive-washcloth-section .section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comprehensive-washcloth-section .title-decoration {
    color: var(--bright-green);
    margin: 0 20px;
    font-size: 0.8em;
    opacity: 0.8;
}

.comprehensive-washcloth-section .section-description {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-lighter);
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro-section {
    background: var(--off-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.intro-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(26, 95, 63, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 95, 63, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 35s linear infinite;
    transform: translate(-10%, -10%);
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.intro-section .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-section .intro-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
}

.intro-section .intro-title .title-line {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--light-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.intro-section .intro-title .title-main {
    display: block;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.intro-section .intro-description {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.7;
    color: var(--light-green);
    margin-bottom: 60px;
    font-weight: 400;
    opacity: 0.9;
}

.intro-section .intro-cta {
    margin-top: 40px;
}

/* Detailed Content Section */
.detailed-content-section {
    background: var(--primary-white);
    padding: 120px 0;
    position: relative;
}

.detailed-content-section .container {
    position: relative;
    z-index: 2;
}

.detailed-content-section .detailed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-content-section .content-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.detailed-content-section .content-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.detailed-content-section .content-image-container:hover .content-image {
    transform: scale(1.05);
}

.detailed-content-section .image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.detailed-content-section .overlay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(26, 95, 63, 0.9);
    color: var(--primary-white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.detailed-content-section .content-text {
    position: relative;
}

.detailed-content-section .content-header {
    margin-bottom: 40px;
}

.detailed-content-section .content-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
}

.detailed-content-section .title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--bright-green));
    border-radius: 2px;
}

.detailed-content-section .content-description {
    position: relative;
}

.detailed-content-section .lead-paragraph {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--light-green);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.9;
}

.detailed-content-section .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.detailed-content-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 95, 63, 0.03);
    border-radius: 15px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(26, 95, 63, 0.1);
}

.detailed-content-section .feature-item:hover {
    background: rgba(26, 95, 63, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detailed-content-section .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detailed-content-section .feature-content h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.detailed-content-section .feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-green);
    opacity: 0.8;
    margin: 0;
}

.detailed-content-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.detailed-content-section .stat-card {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 15px;
    color: var(--primary-white);
    transition: all var(--transition-fast);
}

.detailed-content-section .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 95, 63, 0.3);
}

.detailed-content-section .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.detailed-content-section .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detailed-content-section .content-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Mobile Responsive Styles for Cassette Rolls Page */
@media (max-width: 768px) {
    .washcloth-hero {
        padding: 120px 0 50px;
        min-height: 90vh;
    }
    
    .washcloth-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Fix washcloth hero title visibility on mobile */
    .washcloth-hero .hero-title .title-main {
        -webkit-text-fill-color: var(--primary-white) !important;
        color: var(--primary-white) !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .washcloth-hero .hero-title .title-line,
    .washcloth-hero .hero-title .title-subtitle {
        color: var(--primary-white) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Ensure CTA button container is visible on mobile */
    .washcloth-hero .hero-cta {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 30px !important;
    }
    
    /* Ensure hero content is visible on mobile */
    .washcloth-hero-content {
        opacity: 1 !important;
        animation: none !important;
    }
    
    .washcloth-hero .hero-text {
        opacity: 1 !important;
    }
    
    .washcloth-hero .hero-title {
        opacity: 1 !important;
    }
    
    .comprehensive-washcloth-section {
        padding: 80px 0;
    }
    
    .intro-section {
        padding: 80px 0;
    }
    
    .detailed-content-section {
        padding: 80px 0;
    }
    
    .detailed-content-section .detailed-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .detailed-content-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detailed-content-section .content-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .detailed-content-section .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .washcloth-hero .hero-cta {
        gap: 15px;
    }
    
    /* Additional mobile fixes for very small screens */
    .washcloth-hero .hero-title .title-main {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
    }
    
    .washcloth-hero .hero-title .title-line,
    .washcloth-hero .hero-title .title-subtitle {
        font-size: clamp(0.8rem, 1.8vw, 1rem) !important;
    }
    
    /* Ensure hero content is visible on very small screens */
    .washcloth-hero-content {
        opacity: 1 !important;
        animation: none !important;
    }
    
    .washcloth-hero .hero-text {
        opacity: 1 !important;
    }
    
    .washcloth-hero .hero-title {
        opacity: 1 !important;
    }
    
    .detailed-content-section .feature-grid {
        gap: 15px;
    }
    
    .detailed-content-section .feature-item {
        padding: 15px;
    }
    
    .detailed-content-section .stat-card {
        padding: 20px;
    }
    
    .detailed-content-section .stat-number {
        font-size: 2rem;
    }
}

.logo-image {
    height: 45px !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-logo .logo-image {
    height: 50px;
    margin-bottom: 10px;
}

/* Universal Section Title Styles - Apply to all pages */
.section-title,
.solutions-title .title-main,
.services-title .title-main,
.formula1-title .title-main,
.distribution-title,
.concept-cta-title,
.cta-heading,
.about-section-title,
.graphical-cleaning-section-title,
.washcloth-section-title,
.customer-service-section-title,
.cassette-rolls-section-title,
.windingdevice-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 2.5rem) !important;
    font-weight: 800 !important;
    color: var(--primary-green) !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
}

/* Specific override for "Our Machines" title to make it much bigger */
.machines-title .title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
}

/* Specific override for "Wiping Solutions" title to match "Our Machines" size */
.solutions-title .title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
}

/* Specific override for "Our Story & Expertise" title to match machines section */
.services-title .title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
}

/* Special styling for titles on green backgrounds */
.production-centre-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: var(--primary-white) !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Section title decorative line */
.section-title::after,
.distribution-title::after,
.concept-cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--bright-green));
    border-radius: 2px;
}

/* White decorative line for green background */
.production-centre-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-green), rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

/* Standardized subtitle styles - consistent across all pages */
.section-description,
.solutions-description,
.services-description,
.machines-description,
.about-section-description,
.graphical-cleaning-section-description,
.washcloth-section-description,
.customer-service-section-description,
.cassette-rolls-section-description,
.windingdevice-section-description {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.8rem) !important;
    line-height: 1.7 !important;
    color: var(--light-green) !important;
    margin-bottom: 60px !important;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.formula1-title .title-main {
    color: #fff !important;
}





/* Video CTA Button Styles - Global */
.video-cta-btn {
    background: linear-gradient(135deg, var(--bright-green), var(--accent-green)) !important;
    border: 2px solid var(--bright-green) !important;
    color: var(--primary-white) !important;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-bouncy) !important;
}

.video-cta-btn::before {
    content: '';
    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.6s ease;
}

.video-cta-btn:hover::before {
    left: 100%;
}

.video-cta-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(52, 208, 88, 0.4) !important;
    background: linear-gradient(135deg, var(--accent-green), var(--bright-green)) !important;
}

.video-cta-btn .cta-icon {
    transition: transform var(--transition-fast);
}

.video-cta-btn:hover .cta-icon {
    transform: scale(1.2);
}

/* ENHANCED LARGE SCREEN OPTIMIZATION - Perfect for 27" and larger displays */

/* Large Desktops (1200px - 1440px) - Your 14" screen will also benefit */
@media (min-width: 1200px) {
    /* Standardized spacing and layout */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero {
        padding: clamp(120px, 15vh, 180px) 0 clamp(60px, 8vh, 100px);
    }
    
    /* Standardized hero content scaling */
    .hero-text {
        max-width: clamp(700px, 65%, 1000px);
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description {
        font-size: clamp(1.1rem, 1.2vw + 0.2rem, 1.6rem);
        max-width: clamp(600px, 70%, 900px);
        line-height: 1.6;
    }
    
    /* Standardized services for large screens */
    .services-grid {
        gap: clamp(20px, 3vw, 40px);
    }
    
    .service-card {
        padding: clamp(25px, 3vw, 40px);
    }
    
    /* Standardized button sizing for large screens */
    .cta-primary,
    .cta-secondary,
    .btn-primary {
        padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 36px);
        font-size: clamp(0.9rem, 1vw + 0.1rem, 1.1rem);
        min-width: clamp(180px, 18vw, 220px);
    }
    
    /* Standardized hero CTA for large screens */
    .hero-cta {
        gap: clamp(25px, 3vw, 35px);
        margin-bottom: clamp(40px, 6vh, 80px);
    }
}

/* ULTRA-WIDE DESKTOPS (1440px - 1600px) - Maintains 14-inch proportions */
@media (min-width: 1440px) {
    /* Standardized spacing and proportions for large screens */
    .hero,
    .about-hero,
    .washcloth-hero,
    .graphical-cleaning-hero {
        padding: clamp(120px, 15vh, 180px) 0 clamp(60px, 8vh, 100px);
    }
    
    /* Standardized hero content for large screens */
    .hero-text {
        max-width: clamp(700px, 65%, 1000px);
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description {
        font-size: clamp(1.1rem, 1.2vw + 0.2rem, 1.6rem);
        max-width: clamp(600px, 70%, 900px);
        line-height: 1.6;
    }
    
    /* Standardized services grid for ultra-wide */
    .services-showcase {
        margin-top: clamp(30px, 5vw, 50px);
    }
    
    .services-grid {
        gap: clamp(20px, 3vw, 40px);
        max-width: 1200px;
    }
    
    .service-card {
        padding: clamp(25px, 3vw, 40px);
        border-radius: clamp(16px, 2vw, 25px);
    }
    
    /* Standardized button scaling */
    .cta-primary,
    .cta-secondary,
    .f1-cta-button,
    .machines-cta-button {
        padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 36px);
        font-size: clamp(0.9rem, 1vw + 0.1rem, 1.1rem);
        min-width: clamp(180px, 18vw, 220px);
    }
    
    /* Standardized hero CTA for ultra-wide */
    .hero-cta {
        gap: clamp(25px, 3vw, 35px);
        margin-bottom: clamp(40px, 6vh, 80px);
    }
    
    /* Standardized section spacing */
    .machines-section,
    .formula1-section {
        padding: clamp(120px, 15vh, 180px) 0;
    }
}

/* MASSIVE SCREENS (1600px+) - Maintains 14-inch proportions */
@media (min-width: 1600px) {
    /* Standardized hero scaling for massive displays */
    .hero,
    .about-hero,
    .washcloth-hero,
    .graphical-cleaning-hero {
        padding: clamp(120px, 15vh, 180px) 0 clamp(60px, 8vh, 100px);
    }
    
    /* Standardized hero content scaling */
    .hero-text {
        max-width: clamp(700px, 65%, 1000px);
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description {
        font-size: clamp(1.1rem, 1.2vw + 0.2rem, 1.6rem);
        max-width: clamp(600px, 70%, 900px);
        line-height: 1.6;
    }
    
    /* Standardized services grid - 3 columns for consistency */
    .services-showcase {
        margin-top: clamp(30px, 5vw, 50px);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 3vw, 40px);
        max-width: 1200px;
    }
    
    .service-card {
        padding: clamp(25px, 3vw, 40px);
        border-radius: clamp(16px, 2vw, 25px);
    }
    
    /* Standardized button scaling */
    .cta-primary,
    .cta-secondary,
    .f1-cta-button,
    .machines-cta-button {
        padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 36px);
        font-size: clamp(0.9rem, 1vw + 0.1rem, 1.1rem);
        min-width: clamp(180px, 18vw, 220px);
    }
    
    /* Standardized hero CTA spacing */
    .hero-cta {
        gap: clamp(25px, 3vw, 35px);
        margin-bottom: clamp(40px, 6vh, 80px);
    }
    
    /* Standardized section spacing */
    .machines-section,
    .formula1-section {
        padding: clamp(120px, 15vh, 180px) 0;
    }
    
    /* Standardized content areas for massive screens */
    .formula1-content,
    .machines-content {
        max-width: 100%;
    }
    
    .formula1-content-grid,
    .machines-cta-section {
        gap: clamp(60px, 8vw, 120px);
    }
}

/* EXTRA MASSIVE SCREENS (1920px+) - Maintains 14-inch proportions */
@media (min-width: 1920px) {
    /* Standardized hero scaling for extra large displays */
    .hero,
    .about-hero,
    .washcloth-hero,
    .graphical-cleaning-hero {
        padding: clamp(120px, 15vh, 180px) 0 clamp(60px, 8vh, 100px);
    }
    
    /* Standardized hero content scaling */
    .hero-text {
        max-width: clamp(700px, 65%, 1000px);
    }
    
    /* Standardized hero title scaling for large screens */
    .title-main {
        font-size: clamp(2.2rem, 6vw + 0.5rem, 7rem) !important;
        line-height: 0.9 !important;
        letter-spacing: -2px !important;
    }
    
    .title-line {
        font-size: clamp(0.8rem, 1.8vw + 0.2rem, 1.4rem) !important;
        margin-bottom: 12px !important;
    }
    
    .title-subtitle {
        font-size: clamp(0.8rem, 2vw + 0.1rem, 1.6rem) !important;
    }
    
    .hero-description,
    .about-hero-description,
    .washcloth-hero-description {
        font-size: clamp(1.1rem, 1.2vw + 0.2rem, 1.6rem);
        max-width: clamp(600px, 70%, 900px);
        line-height: 1.6;
    }
    
    /* Standardized services grid for extra large screens */
    .services-showcase {
        margin-top: clamp(30px, 5vw, 50px);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 3vw, 40px);
        max-width: 1200px;
    }
    
    .service-card {
        padding: clamp(25px, 3vw, 40px);
        border-radius: clamp(16px, 2vw, 25px);
    }
    
    /* Standardized service card content for large screens */
    .service-card h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
        margin-bottom: 15px !important;
    }
    
    .service-card p {
        font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    .card-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .card-icon svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .card-stats {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .stat {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
    
    .card-cta {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Standardized button scaling */
    .cta-primary,
    .cta-secondary,
    .f1-cta-button,
    .machines-cta-button {
        padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 36px);
        font-size: clamp(0.9rem, 1vw + 0.1rem, 1.1rem);
        min-width: clamp(180px, 18vw, 220px);
    }
    
    /* Standardized hero CTA spacing */
    .hero-cta {
        gap: clamp(25px, 3vw, 35px);
        margin-bottom: clamp(40px, 6vh, 80px);
    }
    
    /* Standardized section spacing */
    .machines-section,
    .formula1-section {
        padding: clamp(120px, 15vh, 180px) 0;
    }
    
    /* Standardized content areas for extra large screens */
    .formula1-content,
    .machines-content {
        max-width: 100%;
    }
    
    .formula1-content-grid,
    .machines-cta-section {
        gap: clamp(60px, 8vw, 120px);
    }
    
    /* Standardized navigation for large screens */
    .navbar {
        height: 80px !important;
        padding: 0 clamp(2rem, 4vw, 4rem) !important;
    }
    
    .mobile-menu-toggle {
        right: clamp(2rem, 4vw, 4rem) !important;
    }
    
    .logo-text {
        font-size: 1.6rem !important;
    }
    
    /* .logo-tagline - Removed */
    /*
    .logo-tagline {
        font-size: 0.65rem !important;
    }
    */
    
    .nav-link {
        font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem) !important;
        padding: clamp(5px, 0.8vw, 8px) clamp(6px, 1vw, 12px) !important;
    }
    
    .nav-contact-button {
        font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem) !important;
        padding: clamp(6px, 1vw, 10px) clamp(12px, 2vw, 20px) !important;
    }
    
    /* Standardized overall spacing for large screens */
    .hero-content {
        margin-bottom: clamp(60px, 5vh, 80px) !important;
    }
    
    .services-showcase {
        padding: 0 clamp(1rem, 3vw, 2rem) !important;
    }
}

/* ENHANCED MOBILE DESIGN IMPROVEMENTS - Applied to All Pages */

/* Enhanced Mobile Responsiveness for All Pages */
@media (max-width: 768px) {
    /* Enhanced background gradient for mobile - All hero sections */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .customer-service-hero,
    .formula1-hero,
    .cassette-rolls-hero,
    .washcloth-hero,
    .windingdevice-hero {
        background: linear-gradient(145deg, var(--primary-green) 0%, var(--light-green) 40%, var(--accent-green) 100%) !important;
    }

    /* Hero content styling - Glass morphism removed */
    .hero-content,
    .about-hero-content,
    .graphical-hero-content,
    .customer-service-hero-content,
    .formula1-hero-content,
    .cassette-hero-content,
    .washcloth-hero-content,
    .windingdevice-hero-content {
        background: transparent !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
        margin: clamp(1rem, 3vh, 2rem) 0 !important;
    }
    
    /* Mobile override: Remove glass morphism from home page hero */
    @media (max-width: 767px) {
        .hero .hero-content,
        .hero .about-hero-content {
            background: transparent !important;
            backdrop-filter: none !important;
            border: none !important;
            border-radius: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            box-shadow: none !important;
        }
    }

    /* Enhanced service cards */
    .service-card {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    /* Enhanced CTA buttons for mobile - All pages - Glass morphism removed */
    .cta-primary,
    .graphical-hero-cta,
    .cassette-hero-cta {
        background: var(--primary-white) !important;
        border: 2px solid var(--primary-white) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        color: var(--primary-green) !important;
    }

    .cta-secondary {
        background: transparent !important;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        backdrop-filter: none !important;
    }

    /* Enhanced text shadows for better readability - All pages */
    .hero-title, 
    .about-hero-title,
    .graphical-hero-title,
    .customer-service-hero-title,
    .formula1-hero-title,
    .cassette-hero-title,
    .washcloth-hero-title,
    .windingdevice-hero-title,
    .title-main {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }

    .hero-description,
    .about-hero-description,
    .graphical-hero-description,
    .customer-service-hero-description,
    .formula1-hero-description,
    .cassette-hero-description,
    .washcloth-hero-description,
    .windingdevice-hero-description,
    .hero-subtitle,
    .graphical-hero-subtitle,
    .customer-service-hero-subtitle,
    .formula1-hero-subtitle,
    .cassette-hero-subtitle,
    .washcloth-hero-subtitle,
    .windingdevice-hero-subtitle,
    .title-subtitle {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
    }

    /* Enhanced sections for mobile - All pages */
    .formula1-section {
        background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.3) 100%) !important;
    }
    
    .machines-section,
    .solutions-section,
    .comprehensive-washcloth-section,
    .intro-section {
        background: linear-gradient(145deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%) !important;
    }

    .formula1-content,
    .machines-content,
    .section-content,
    .intro-content {
        background: transparent !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
    }
    
    /* Keep solutions-content with proper styling for graphical cleaning page */
    .solutions-content {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
    }
    
    /* Keep production-centre-content with proper styling */
    .production-centre-content {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
    }
    
    /* Keep other important content sections with proper styling */
    .ceo-content,
    .quote-content,
    .services-content {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1rem, 3vw, 2rem) !important;
    }

    /* Enhanced product cards and content cards - Glass morphism removed */
    .product-card,
    .content-card,
    .feature-card {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: none !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
    }
    
    /* Keep solution cards with proper glass morphism styling for graphical cleaning page */
    .solution-card {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: clamp(12px, 3vw, 18px) !important;
    }
}

/* Enhanced Small Mobile Screens - All Pages */
@media (max-width: 480px) {
    /* More compact glass containers - All hero content */
    .hero-content,
    .about-hero-content,
    .graphical-hero-content,
    .customer-service-hero-content,
    .formula1-hero-content,
    .cassette-hero-content,
    .washcloth-hero-content,
    .windingdevice-hero-content {
        padding: clamp(1rem, 3vh, 1.8rem) clamp(0.75rem, 2.5vw, 1.5rem) !important;
        margin: clamp(0.75rem, 2vh, 1.5rem) 0 !important;
    }

    /* Enhanced service cards for small screens */
    .service-card {
        padding: clamp(1rem, 3vh, 1.5rem) !important;
        border-radius: clamp(8px, 2vw, 12px) !important;
    }

    /* Optimized button sizing */
    .cta-primary, .cta-secondary {
        min-width: clamp(120px, 28vw, 160px) !important;
        padding: clamp(10px, 2.5vh, 14px) clamp(16px, 4vw, 24px) !important;
        font-size: clamp(0.65rem, 1.8vw, 0.8rem) !important;
    }

    /* Machines CTA button optimization for mobile */
    .machines-cta-button {
        min-width: clamp(110px, 24vw, 140px) !important;
        padding: clamp(8px, 2vh, 10px) clamp(14px, 3.5vw, 18px) !important;
        font-size: clamp(0.65rem, 1.6vw, 0.75rem) !important;
    }

    .formula1-content,
    .machines-content,
    .solutions-content,
    .section-content,
    .intro-content {
        padding: clamp(1rem, 3vh, 1.8rem) clamp(0.75rem, 2.5vw, 1.5rem) !important;
    }

    /* Enhanced product cards for small mobile */
    .product-card,
    .content-card,
    .feature-card,
    .solution-card {
        padding: clamp(1rem, 3vh, 1.5rem) !important;
        border-radius: clamp(8px, 2vw, 12px) !important;
        margin-bottom: clamp(1rem, 2vh, 1.5rem) !important;
    }
}

/* High DPI Display Scaling for All Pages */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title, 
    .about-hero-title,
    .graphical-hero-title,
    .customer-service-hero-title,
    .formula1-hero-title,
    .cassette-hero-title,
    .washcloth-hero-title,
    .windingdevice-hero-title,
    .title-main {
        letter-spacing: -0.025em;
    }
    
    .hero-description,
    .about-hero-description,
    .graphical-hero-description,
    .customer-service-hero-description,
    .formula1-hero-description,
    .cassette-hero-description,
    .washcloth-hero-description,
    .windingdevice-hero-description,
    .title-subtitle {
        letter-spacing: 0.005em;
    }
    
    .cta-primary, .cta-secondary, .graphical-hero-cta, .cassette-hero-cta {
        letter-spacing: 0.4px;
    }
    
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Comprehensive Responsive Design - Premium Green Theme */

/* ===== BACK TO TOP BUTTON ===== */
/* Themed button matching the website's premium green aesthetic */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all var(--transition-bouncy);
    z-index: 1000;
    box-shadow: 
        0 8px 25px rgba(26, 95, 63, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--bright-green) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    border-radius: 50%;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(26, 95, 63, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top .arrow-icon {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-fast);
}

.back-to-top:hover .arrow-icon {
    transform: translateY(-2px);
}

/* Enhanced mobile responsiveness for back-to-top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* High DPI display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .back-to-top {
        border-width: 1.5px;
        box-shadow: 
            0 8px 25px rgba(26, 95, 63, 0.3),
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 0.5px 0 rgba(255, 255, 255, 0.1);
    }
}

/* Animation keyframes for smooth entrance */
@keyframes backToTopFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.back-to-top.visible {
    animation: backToTopFadeIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* DESPERATE OVERRIDE FOR MOBILE SERVICE CARDS - MAXIMUM SPECIFICITY */
/* This section overrides ALL other service-card styles for mobile devices */

/* Force mobile service cards to be solid white with proper spacing */
@media (max-width: 480px) {
    /* Override ALL service card styles with maximum specificity */
    .services-showcase .services-grid .service-card,
    .hero .services-showcase .services-grid .service-card,
    .services-showcase .service-card,
    .hero .services-showcase .service-card,
    .service-card {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 2px solid rgba(46, 167, 106, 0.3) !important;
        border-radius: 20px !important;
        padding: 30px 25px !important;
        margin: 0 0 20px 0 !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
        z-index: 10 !important;
        overflow: hidden !important;
        min-height: 350px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    /* Force white background on all child elements */
    .services-showcase .services-grid .service-card *,
    .hero .services-showcase .services-grid .service-card *,
    .services-showcase .service-card *,
    .hero .services-showcase .service-card *,
    .service-card * {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Override card background element */
    .services-showcase .services-grid .service-card .card-background,
    .hero .services-showcase .services-grid .service-card .card-background,
    .services-showcase .service-card .card-background,
    .hero .services-showcase .service-card .card-background,
    .service-card .card-background {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Force proper text colors */
    .services-showcase .services-grid .service-card h3,
    .hero .services-showcase .services-grid .service-card h3,
    .services-showcase .service-card h3,
    .hero .services-showcase .service-card h3,
    .service-card h3 {
        color: #2ea76a !important;
        font-size: 1.3rem !important;
        margin-bottom: 18px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }
    
    .services-showcase .services-grid .service-card p,
    .hero .services-showcase .services-grid .service-card p,
    .services-showcase .service-card p,
    .hero .services-showcase .service-card p,
    .service-card p {
        color: #666666 !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 22px !important;
    }
    
    /* Force icon styling */
    .services-showcase .services-grid .service-card .card-icon,
    .hero .services-showcase .services-grid .service-card .card-icon,
    .services-showcase .service-card .card-icon,
    .hero .services-showcase .service-card .card-icon,
    .service-card .card-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, rgba(46, 167, 106, 0.15), rgba(52, 208, 88, 0.08)) !important;
        border: 2px solid rgba(46, 167, 106, 0.2) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .services-showcase .services-grid .service-card .card-icon svg,
    .hero .services-showcase .services-grid .service-card .card-icon svg,
    .services-showcase .service-card .card-icon svg,
    .hero .services-showcase .service-card .card-icon svg,
    .service-card .card-icon svg {
        width: 24px !important;
        height: 24px !important;
        color: #2ea76a !important;
    }
    
    /* Force stats styling */
    .services-showcase .services-grid .service-card .card-stats,
    .hero .services-showcase .services-grid .service-card .card-stats,
    .services-showcase .service-card .card-stats,
    .hero .services-showcase .service-card .card-stats,
    .service-card .card-stats {
        display: flex !important;
        gap: 12px !important;
        margin-bottom: 26px !important;
        flex-wrap: wrap !important;
    }
    
    .services-showcase .services-grid .service-card .stat,
    .hero .services-showcase .services-grid .service-card .stat,
    .services-showcase .service-card .stat,
    .hero .services-showcase .service-card .stat,
    .service-card .stat {
        background: rgba(46, 167, 106, 0.12) !important;
        color: #2ea76a !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        border: 1px solid rgba(46, 167, 106, 0.25) !important;
    }
    
    /* Force CTA button styling */
    .services-showcase .services-grid .service-card .card-cta,
    .hero .services-showcase .services-grid .service-card .card-cta,
    .services-showcase .service-card .card-cta,
    .hero .services-showcase .service-card .card-cta,
    .service-card .card-cta {
        background: #ffffff !important;
        color: #2ea76a !important;
        border: 2px solid #2ea76a !important;
        padding: 14px 24px !important;
        border-radius: 12px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        width: 100% !important;
        transition: all 0.3s ease !important;
        margin-top: auto !important;
        cursor: pointer !important;
        text-decoration: none !important;
        display: block !important;
    }
    
    .services-showcase .services-grid .service-card .card-cta:hover,
    .hero .services-showcase .services-grid .service-card .card-cta:hover,
    .services-showcase .service-card .card-cta:hover,
    .hero .services-showcase .service-card .card-cta:hover,
    .service-card .card-cta:hover {
        background: #2ea76a !important;
        color: #ffffff !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 30px rgba(46, 167, 106, 0.3) !important;
    }
    
    /* Force services grid layout */
    .services-showcase .services-grid,
    .hero .services-showcase .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        margin-bottom: 50px !important;
    }
    
    /* Force services showcase spacing */
    .services-showcase {
        padding: 50px 0 !important;
        margin-top: 0 !important;
        background: transparent !important;
    }
}

/* Also override for tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .services-showcase .services-grid .service-card,
    .hero .services-showcase .services-grid .service-card,
    .services-showcase .service-card,
    .hero .services-showcase .service-card,
    .service-card {
        background: #ffffff !important;
        background-color: #ffffff !important;
        border: 2px solid rgba(46, 167, 106, 0.3) !important;
        border-radius: 20px !important;
        padding: 28px 24px !important;
        margin: 0 0 18px 0 !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08) !important;
        position: relative !important;
        z-index: 10 !important;
        min-height: 320px !important;
    }
    
    .services-showcase .services-grid .service-card .card-background,
    .hero .services-showcase .services-grid .service-card .card-background,
    .services-showcase .service-card .card-background,
    .hero .services-showcase .service-card .card-background,
    .service-card .card-background {
        display: none !important;
    }
}

/* DESPERATE OVERRIDE FOR OUR MACHINES SECTION - MOBILE FIXES */
/* This section fixes all color and layout issues for mobile devices */

@media (max-width: 768px) {
    /* Force machines section background and layout */
    .machines-section,
    .hero .machines-section,
    .services-showcase .machines-section {
        background: #f8f9fa !important;
        background-color: #f8f9fa !important;
        background-image: none !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 1 !important;
        overflow: hidden !important;
    }
    
    /* Hide problematic background elements */
    .machines-section .machines-background,
    .hero .machines-section .machines-background,
    .services-showcase .machines-section .machines-background {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .machines-section .machines-grid-pattern,
    .hero .machines-section .machines-grid-pattern,
    .services-showcase .machines-section .machines-grid-pattern {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Fix machines header */
    .machines-section .machines-header,
    .hero .machines-section .machines-header,
    .services-showcase .machines-section .machines-header {
        margin-bottom: 40px !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    /* Fix machines title colors */
    .machines-section .machines-title .title-line,
    .hero .machines-section .machines-title .title-line,
    .services-showcase .machines-section .machines-title .title-line {
        color: #2ea76a !important;
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .machines-section .machines-title .title-main,
    .hero .machines-section .machines-title .title-main,
    .services-showcase .machines-section .machines-title .title-main {
        color: #1a5f3f !important;
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        text-shadow: none !important;
    }
    
    .machines-section .machines-title .title-subtitle,
    .hero .machines-section .machines-title .title-subtitle,
    .services-showcase .machines-section .machines-title .title-subtitle {
        color: #4a7c59 !important;
        font-size: 0.8rem !important;
    }
    
    /* Fix machines description */
    .machines-section .machines-description,
    .hero .machines-section .machines-description,
    .services-showcase .machines-section .machines-description {
        color: #666666 !important;
        font-size: 1rem !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    /* Fix carousel container */
    .machines-section .carousel-container,
    .hero .machines-section .carousel-container,
    .services-showcase .machines-section .carousel-container {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden !important;
        padding: 20px 0 !important;
        margin-bottom: 40px !important;
    }
    
    /* Fix carousel track */
    .machines-section .carousel-track,
    .hero .machines-section .carousel-track,
    .services-showcase .machines-section .carousel-track {
        gap: 15px !important;
        padding: 0 20px !important;
    }
    
    /* Fix carousel items */
    .machines-section .carousel-item,
    .hero .machines-section .carousel-item,
    .services-showcase .machines-section .carousel-item {
        flex: 0 0 160px !important;
        margin: 0 5px !important;
        min-width: 160px !important;
    }
    
    /* Fix company logos */
    .machines-section .company-logo,
    .hero .machines-section .company-logo,
    .services-showcase .machines-section .company-logo {
        width: 140px !important;
        height: 80px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 2px solid #e9ecef !important;
        border-radius: 12px !important;
        padding: 15px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .company-logo:hover,
    .hero .machines-section .company-logo:hover,
    .services-showcase .machines-section .company-logo:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 8px 25px rgba(46, 167, 106, 0.15) !important;
        border-color: #2ea76a !important;
        background: #ffffff !important;
    }
    
    /* Fix company logo images */
    .machines-section .company-logo img,
    .hero .machines-section .company-logo img,
    .services-showcase .machines-section .company-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0.3) brightness(0.9) !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .company-logo:hover img,
    .hero .machines-section .company-logo:hover img,
    .services-showcase .machines-section .company-logo:hover img {
        filter: grayscale(0) brightness(1) !important;
        transform: scale(1.05) !important;
    }
    
    /* Fix logo placeholders */
    .machines-section .company-logo .logo-placeholder,
    .hero .machines-section .company-logo .logo-placeholder,
    .services-showcase .machines-section .company-logo .logo-placeholder {
        color: #2ea76a !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
    
    /* Fix machines CTA section */
    .machines-section .machines-cta-section,
    .hero .machines-section .machines-cta-section,
    .services-showcase .machines-section .machines-cta-section {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 2px solid #e9ecef !important;
        border-radius: 16px !important;
        padding: 30px 20px !important;
        margin: 0 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    /* Fix CTA content */
    .machines-section .machines-cta-section .cta-heading,
    .hero .machines-section .machines-cta-section .cta-heading,
    .services-showcase .machines-section .machines-cta-section .cta-heading {
        color: #1a5f3f !important;
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .machines-section .machines-cta-section .cta-description,
    .hero .machines-section .machines-cta-section .cta-description,
    .services-showcase .machines-section .machines-cta-section .cta-description {
        color: #666666 !important;
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Fix CTA button */
    .machines-section .machines-cta-section .machines-cta-button,
    .hero .machines-section .machines-cta-section .machines-cta-button,
    .services-showcase .machines-section .machines-cta-section .machines-cta-button {
        background: #2ea76a !important;
        color: #ffffff !important;
        border: 2px solid #2ea76a !important;
        padding: 12px 24px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .machines-cta-section .machines-cta-button:hover,
    .hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .services-showcase .machines-section .machines-cta-section .machines-cta-button:hover {
        background: #ffffff !important;
        color: #2ea76a !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(46, 167, 106, 0.2) !important;
    }
}

/* Extra small mobile specific fixes */
@media (max-width: 480px) {
    .machines-section .machines-title .title-main,
    .hero .machines-section .machines-title .title-main,
    .services-showcase .machines-section .machines-title .title-main {
        font-size: 2rem !important;
    }
    
    .machines-section .carousel-item,
    .hero .machines-section .carousel-item,
    .services-showcase .machines-section .carousel-item {
        flex: 0 0 140px !important;
        min-width: 140px !important;
    }
    
    .machines-section .company-logo,
    .hero .machines-section .company-logo,
    .services-showcase .machines-section .company-logo {
        width: 120px !important;
        height: 70px !important;
        padding: 12px !important;
    }
    
    .machines-section .machines-cta-section,
    .hero .machines-section .machines-cta-section,
    .services-showcase .machines-section .machines-cta-section {
        padding: 25px 15px !important;
        margin: 0 15px !important;
    }
}

/* DESPERATE OVERRIDE FOR ALL PAGES HERO SECTIONS - REMOVE GLASS MORPHISM */
/* This section removes glass morphism containers from hero sections on ALL pages for mobile */

@media (max-width: 768px) {
    /* Remove glass morphism from ALL hero sections across all pages */
    .hero .hero-content,
    .hero .about-hero-content,
    .hero .graphical-cleaning-hero-content,
    .hero .washcloth-hero-content,
    .hero .formula1-hero-content,
    .hero .machines-hero-content,
    .hero .pricing-hero-content,
    .hero .customer-service-hero-content,
    .hero .brochures-hero-content,
    .hero .cassette-rolls-hero-content,
    .hero .winding-device-hero-content,
    .hero .manual-wiping-hero-content,
    .about-hero .hero-content,
    .about-hero .about-hero-content,
    .graphical-cleaning-hero .hero-content,
    .graphical-cleaning-hero .graphical-cleaning-hero-content,
    .washcloth-hero .hero-content,
    .washcloth-hero .washcloth-hero-content,
    .formula1-hero .hero-content,
    .formula1-hero .formula1-hero-content,
    .machines-hero .hero-content,
    .machines-hero .machines-hero-content,
    .pricing-hero .hero-content,
    .pricing-hero .pricing-hero-content,
    .customer-service-hero .hero-content,
    .customer-service-hero .customer-service-hero-content,
    .brochures-hero .hero-content,
    .brochures-hero .brochures-hero-content,
    .cassette-rolls-hero .hero-content,
    .cassette-rolls-hero .cassette-rolls-hero-content,
    .winding-device-hero .hero-content,
    .winding-device-hero .winding-device-hero-content,
    .manual-wiping-hero .hero-content,
    .manual-wiping-hero .manual-wiping-hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    /* Remove glass morphism from ALL hero text containers */
    .hero .hero-text,
    .hero .about-hero-text,
    .hero .graphical-cleaning-hero-text,
    .hero .washcloth-hero-text,
    .hero .formula1-hero-text,
    .hero .machines-hero-text,
    .hero .pricing-hero-text,
    .hero .customer-service-hero-text,
    .hero .brochures-hero-text,
    .hero .cassette-rolls-hero-text,
    .hero .winding-device-hero-text,
    .hero .manual-wiping-hero-text,
    .about-hero .hero-text,
    .about-hero .about-hero-text,
    .graphical-cleaning-hero .hero-text,
    .graphical-cleaning-hero .graphical-cleaning-hero-text,
    .washcloth-hero .hero-text,
    .washcloth-hero .washcloth-hero-text,
    .formula1-hero .hero-text,
    .formula1-hero .formula1-hero-text,
    .machines-hero .hero-text,
    .machines-hero .machines-hero-text,
    .pricing-hero .hero-text,
    .pricing-hero .pricing-hero-text,
    .customer-service-hero .hero-text,
    .customer-service-hero .customer-service-hero-text,
    .brochures-hero .hero-text,
    .brochures-hero .brochures-hero-text,
    .cassette-rolls-hero .hero-text,
    .cassette-rolls-hero .cassette-rolls-hero-text,
    .winding-device-hero .hero-text,
    .winding-device-hero .winding-device-hero-text,
    .manual-wiping-hero .hero-text,
    .manual-wiping-hero .manual-wiping-hero-text {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    /* Remove glass morphism from ALL hero content elements */
    .hero *,
    .about-hero *,
    .graphical-cleaning-hero *,
    .washcloth-hero *,
    .formula1-hero *,
    .machines-hero *,
    .pricing-hero *,
    .customer-service-hero *,
    .brochures-hero *,
    .cassette-rolls-hero *,
    .winding-device-hero *,
    .manual-wiping-hero * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Remove glass morphism from ALL hero content and about-hero-content */
    .hero .hero-content *,
    .hero .about-hero-content *,
    .hero .graphical-cleaning-hero-content *,
    .hero .washcloth-hero-content *,
    .hero .formula1-hero-content *,
    .hero .machines-hero-content *,
    .hero .pricing-hero-content *,
    .hero .customer-service-hero-content *,
    .hero .brochures-hero-content *,
    .hero .cassette-rolls-hero-content *,
    .hero .winding-device-hero-content *,
    .hero .manual-wiping-hero-content *,
    .about-hero .hero-content *,
    .about-hero .about-hero-content *,
    .graphical-cleaning-hero .hero-content *,
    .graphical-cleaning-hero .graphical-cleaning-hero-content *,
    .washcloth-hero .hero-content *,
    .washcloth-hero .washcloth-hero-content *,
    .formula1-hero .hero-content *,
    .formula1-hero .formula1-hero-content *,
    .machines-hero .hero-content *,
    .machines-hero .machines-hero-content *,
    .pricing-hero .hero-content *,
    .pricing-hero .pricing-hero-content *,
    .customer-service-hero .hero-content *,
    .customer-service-hero .customer-service-hero-content *,
    .brochures-hero .hero-content *,
    .brochures-hero .brochures-hero-content *,
    .cassette-rolls-hero .hero-content *,
    .cassette-rolls-hero .cassette-rolls-hero-content *,
    .winding-device-hero .hero-content *,
    .winding-device-hero .winding-device-hero-content *,
    .manual-wiping-hero .hero-content *,
    .manual-wiping-hero .manual-wiping-hero-content * {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    /* Ensure ALL hero sections display proper colors and effects on mobile */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero,
    .formula1-hero,
    .machines-hero,
    .pricing-hero,
    .customer-service-hero,
    .brochures-hero,
    .cassette-rolls-hero,
    .winding-device-hero,
    .manual-wiping-hero {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%) !important;
        position: relative !important;
    }
    
    /* Ensure ALL hero backgrounds are visible on mobile */
    .hero .hero-background,
    .about-hero .hero-background,
    .graphical-cleaning-hero .hero-background,
    .washcloth-hero .hero-background,
    .formula1-hero .hero-background,
    .machines-hero .hero-background,
    .pricing-hero .hero-background,
    .customer-service-hero .hero-background,
    .brochures-hero .hero-background,
    .cassette-rolls-hero .hero-background,
    .winding-device-hero .hero-background,
    .manual-wiping-hero .hero-background {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Ensure ALL hero grid patterns are visible on mobile */
    .hero .hero-grid-pattern,
    .about-hero .hero-grid-pattern,
    .graphical-cleaning-hero .hero-grid-pattern,
    .washcloth-hero .hero-grid-pattern,
    .formula1-hero .hero-grid-pattern,
    .machines-hero .hero-grid-pattern,
    .pricing-hero .hero-grid-pattern,
    .customer-service-hero .hero-grid-pattern,
    .brochures-hero .hero-grid-pattern,
    .cassette-rolls-hero .hero-grid-pattern,
    .winding-device-hero .hero-grid-pattern,
    .manual-wiping-hero .hero-grid-pattern {
        display: block !important;
        visibility: visible !important;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
        background-size: 40px 40px !important;
        opacity: 0.6 !important;
    }
    
    /* Ensure ALL hero before pseudo-elements are visible on mobile */
    .hero::before,
    .about-hero::before,
    .graphical-cleaning-hero::before,
    .washcloth-hero::before,
    .formula1-hero::before,
    .machines-hero::before,
    .pricing-hero::before,
    .customer-service-hero::before,
    .brochures-hero::before,
    .cassette-rolls-hero::before,
    .winding-device-hero::before,
    .manual-wiping-hero::before {
        display: block !important;
        visibility: visible !important;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%) !important;
    }
    
    /* Ensure ALL hero titles are properly centered and visible on mobile */
    .hero .hero-title .title-main,
    .about-hero .hero-title .title-main,
    .graphical-cleaning-hero .hero-title .title-main,
    .washcloth-hero .hero-title .title-main,
    .formula1-hero .hero-title .title-main,
    .machines-hero .hero-title .title-main,
    .pricing-hero .hero-title .title-main,
    .customer-service-hero .hero-title .title-main,
    .brochures-hero .hero-title .title-main,
    .cassette-rolls-hero .hero-title .title-main,
    .winding-device-hero .hero-title .title-main,
    .manual-wiping-hero .hero-title .title-main {
        text-align: center !important;
        margin: 0 auto 15px auto !important;
        color: var(--primary-white) !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Ensure ALL hero title lines and subtitles are properly centered on mobile */
    .hero .hero-title .title-line,
    .hero .hero-title .title-subtitle,
    .about-hero .hero-title .title-line,
    .about-hero .hero-title .title-subtitle,
    .graphical-cleaning-hero .hero-title .title-line,
    .graphical-cleaning-hero .hero-title .title-subtitle,
    .washcloth-hero .hero-title .title-line,
    .washcloth-hero .hero-title .title-subtitle,
    .formula1-hero .hero-title .title-line,
    .formula1-hero .hero-title .title-subtitle,
    .machines-hero .hero-title .title-line,
    .machines-hero .hero-title .title-subtitle,
    .pricing-hero .hero-title .title-line,
    .pricing-hero .hero-title .title-subtitle,
    .customer-service-hero .hero-title .title-line,
    .customer-service-hero .hero-title .title-subtitle,
    .brochures-hero .hero-title .title-line,
    .brochures-hero .hero-title .title-subtitle,
    .cassette-rolls-hero .hero-title .title-line,
    .cassette-rolls-hero .hero-title .title-subtitle,
    .winding-device-hero .hero-title .title-line,
    .winding-device-hero .hero-title .title-subtitle,
    .manual-wiping-hero .hero-title .title-line,
    .manual-wiping-hero .hero-title .title-subtitle {
        text-align: center !important;
        margin: 0 auto 8px auto !important;
        color: var(--text-light) !important;
    }
    
    /* Ensure ALL hero title main after pseudo-elements are properly positioned on mobile */
    .hero .hero-title .title-main::after,
    .about-hero .hero-title .title-main::after,
    .graphical-cleaning-hero .hero-title .title-main::after,
    .washcloth-hero .hero-title .title-main::after,
    .formula1-hero .hero-title .title-main::after,
    .machines-hero .hero-title .title-main::after,
    .pricing-hero .hero-title .title-main::after,
    .customer-service-hero .hero-title .title-main::after,
    .brochures-hero .hero-title .title-main::after,
    .cassette-rolls-hero .hero-title .title-main::after,
    .winding-device-hero .hero-title .title-main::after,
    .manual-wiping-hero .hero-title .title-main::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
        background: linear-gradient(90deg, var(--bright-green), transparent) !important;
        opacity: 0.8 !important;
    }
}

/* DESPERATE OVERRIDE FOR OUR MACHINES SECTION - ALL PAGES MOBILE FIXES */
/* This section fixes all color and layout issues for mobile devices on ALL pages */

@media (max-width: 768px) {
    /* Force machines section background and layout on ALL pages */
    .machines-section,
    .hero .machines-section,
    .services-showcase .machines-section,
    .about-hero .machines-section,
    .graphical-cleaning-hero .machines-section,
    .washcloth-hero .machines-section,
    .formula1-hero .machines-section,
    .pricing-hero .machines-section,
    .customer-service-hero .machines-section,
    .brochures-hero .machines-section,
    .cassette-rolls-hero .machines-section,
    .winding-device-hero .machines-section,
    .manual-wiping-hero .machines-section {
        background: #f8f9fa !important;
        background-color: #f8f9fa !important;
        background-image: none !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 1 !important;
        overflow: hidden !important;
    }
    
    /* Hide problematic background elements on ALL pages */
    .machines-section .machines-background,
    .hero .machines-section .machines-background,
    .services-showcase .machines-section .machines-background,
    .about-hero .machines-section .machines-background,
    .graphical-cleaning-hero .machines-section .machines-background,
    .washcloth-hero .machines-section .machines-background,
    .formula1-hero .machines-section .machines-background,
    .pricing-hero .machines-section .machines-background,
    .customer-service-hero .machines-section .machines-background,
    .brochures-hero .machines-section .machines-background,
    .cassette-rolls-hero .machines-section .machines-background,
    .winding-device-hero .machines-section .machines-background,
    .manual-wiping-hero .machines-section .machines-background {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .machines-section .machines-grid-pattern,
    .hero .machines-section .machines-grid-pattern,
    .services-showcase .machines-section .machines-grid-pattern,
    .about-hero .machines-section .machines-grid-pattern,
    .graphical-cleaning-hero .machines-section .machines-grid-pattern,
    .washcloth-hero .machines-section .machines-grid-pattern,
    .formula1-hero .machines-section .machines-grid-pattern,
    .pricing-hero .machines-section .machines-grid-pattern,
    .customer-service-hero .machines-section .machines-grid-pattern,
    .brochures-hero .machines-section .machines-grid-pattern,
    .cassette-rolls-hero .machines-section .machines-grid-pattern,
    .winding-device-hero .machines-section .machines-grid-pattern,
    .manual-wiping-hero .machines-section .machines-grid-pattern {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Fix machines header on ALL pages */
    .machines-section .machines-header,
    .hero .machines-section .machines-header,
    .services-showcase .machines-section .machines-header,
    .about-hero .machines-section .machines-header,
    .graphical-cleaning-hero .machines-section .machines-header,
    .washcloth-hero .machines-section .machines-header,
    .formula1-hero .machines-section .machines-header,
    .pricing-hero .machines-section .machines-header,
    .customer-service-hero .machines-section .machines-header,
    .brochures-hero .machines-section .machines-header,
    .cassette-rolls-hero .machines-section .machines-header,
    .winding-device-hero .machines-section .machines-header,
    .manual-wiping-hero .machines-section .machines-header {
        margin-bottom: 40px !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    /* Fix machines title colors on ALL pages */
    .machines-section .machines-title .title-line,
    .hero .machines-section .machines-title .title-line,
    .services-showcase .machines-section .machines-title .title-line,
    .about-hero .machines-section .machines-title .title-line,
    .graphical-cleaning-hero .machines-section .machines-title .title-line,
    .washcloth-hero .machines-section .machines-title .title-line,
    .formula1-hero .machines-section .machines-title .title-line,
    .pricing-hero .machines-section .machines-title .title-line,
    .customer-service-hero .machines-section .machines-title .title-line,
    .brochures-hero .machines-section .machines-title .title-line,
    .cassette-rolls-hero .machines-section .machines-title .title-line,
    .winding-device-hero .machines-section .machines-title .title-line,
    .manual-wiping-hero .machines-section .machines-title .title-line {
        color: #2ea76a !important;
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .machines-section .machines-title .title-main,
    .hero .machines-section .machines-title .title-main,
    .services-showcase .machines-section .machines-title .title-main,
    .about-hero .machines-section .machines-title .title-main,
    .graphical-cleaning-hero .machines-section .machines-title .title-main,
    .washcloth-hero .machines-section .machines-title .title-main,
    .formula1-hero .machines-section .machines-title .title-main,
    .pricing-hero .machines-section .machines-title .title-main,
    .customer-service-hero .machines-section .machines-title .title-main,
    .brochures-hero .machines-section .machines-title .title-main,
    .cassette-rolls-hero .machines-section .machines-title .title-main,
    .winding-device-hero .machines-section .machines-title .title-main,
    .manual-wiping-hero .machines-section .machines-title .title-main {
        color: #1a5f3f !important;
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        text-shadow: none !important;
    }
    
    .machines-section .machines-title .title-subtitle,
    .hero .machines-section .machines-title .title-subtitle,
    .services-showcase .machines-section .machines-title .title-subtitle,
    .about-hero .machines-section .machines-title .title-subtitle,
    .graphical-cleaning-hero .machines-section .machines-title .title-subtitle,
    .washcloth-hero .machines-section .machines-title .title-subtitle,
    .formula1-hero .machines-section .machines-title .title-subtitle,
    .pricing-hero .machines-section .machines-title .title-subtitle,
    .customer-service-hero .machines-section .machines-title .title-subtitle,
    .brochures-hero .machines-section .machines-title .title-subtitle,
    .cassette-rolls-hero .machines-section .machines-title .title-subtitle,
    .winding-device-hero .machines-section .machines-title .title-subtitle,
    .manual-wiping-hero .machines-section .machines-title .title-subtitle {
        color: #4a7c59 !important;
        font-size: 0.8rem !important;
    }
    
    /* Fix machines description on ALL pages */
    .machines-section .machines-description,
    .hero .machines-section .machines-description,
    .services-showcase .machines-section .machines-description,
    .about-hero .machines-section .machines-description,
    .graphical-cleaning-hero .machines-section .machines-description,
    .washcloth-hero .machines-section .machines-description,
    .formula1-hero .machines-section .machines-description,
    .pricing-hero .machines-section .machines-description,
    .customer-service-hero .machines-section .machines-description,
    .brochures-hero .machines-section .machines-description,
    .cassette-rolls-hero .machines-section .machines-description,
    .winding-device-hero .machines-section .machines-description,
    .manual-wiping-hero .machines-section .machines-description {
        color: #666666 !important;
        font-size: 1rem !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    /* Fix carousel container on ALL pages */
    .machines-section .carousel-container,
    .hero .machines-section .carousel-container,
    .services-showcase .machines-section .carousel-container,
    .about-hero .machines-section .carousel-container,
    .graphical-cleaning-hero .machines-section .carousel-container,
    .washcloth-hero .machines-section .carousel-container,
    .formula1-hero .machines-section .carousel-container,
    .pricing-hero .machines-section .carousel-container,
    .customer-service-hero .machines-section .carousel-container,
    .brochures-hero .machines-section .carousel-container,
    .cassette-rolls-hero .machines-section .carousel-container,
    .winding-device-hero .machines-section .carousel-container,
    .manual-wiping-hero .machines-section .carousel-container {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden !important;
        padding: 20px 0 !important;
        margin-bottom: 40px !important;
    }
    
    /* Fix carousel track on ALL pages */
    .machines-section .carousel-track,
    .hero .machines-section .carousel-track,
    .services-showcase .machines-section .carousel-track,
    .about-hero .machines-section .carousel-track,
    .graphical-cleaning-hero .machines-section .carousel-track,
    .washcloth-hero .machines-section .carousel-track,
    .formula1-hero .machines-section .carousel-track,
    .pricing-hero .machines-section .carousel-track,
    .customer-service-hero .machines-section .carousel-track,
    .brochures-hero .machines-section .carousel-track,
    .cassette-rolls-hero .machines-section .carousel-track,
    .winding-device-hero .machines-section .carousel-track,
    .manual-wiping-hero .machines-section .carousel-track {
        gap: 15px !important;
        padding: 0 20px !important;
    }
    
    /* Fix carousel items on ALL pages */
    .machines-section .carousel-item,
    .hero .machines-section .carousel-item,
    .services-showcase .machines-section .carousel-item,
    .about-hero .machines-section .carousel-item,
    .graphical-cleaning-hero .machines-section .carousel-item,
    .washcloth-hero .machines-section .carousel-item,
    .formula1-hero .machines-section .carousel-item,
    .pricing-hero .machines-section .carousel-item,
    .customer-service-hero .machines-section .carousel-item,
    .brochures-hero .machines-section .carousel-item,
    .cassette-rolls-hero .machines-section .carousel-item,
    .winding-device-hero .machines-section .carousel-item,
    .manual-wiping-hero .machines-section .carousel-item {
        flex: 0 0 160px !important;
        margin: 0 5px !important;
        min-width: 160px !important;
    }
    
    /* Fix company logos on ALL pages */
    .machines-section .company-logo,
    .hero .machines-section .company-logo,
    .services-showcase .machines-section .company-logo,
    .about-hero .machines-section .company-logo,
    .graphical-cleaning-hero .machines-section .company-logo,
    .washcloth-hero .machines-section .company-logo,
    .formula1-hero .machines-section .company-logo,
    .pricing-hero .machines-section .company-logo,
    .customer-service-hero .machines-section .company-logo,
    .brochures-hero .machines-section .company-logo,
    .cassette-rolls-hero .machines-section .company-logo,
    .winding-device-hero .machines-section .company-logo,
    .manual-wiping-hero .machines-section .company-logo {
        width: 140px !important;
        height: 80px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 2px solid #e9ecef !important;
        border-radius: 12px !important;
        padding: 15px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .company-logo:hover,
    .hero .machines-section .company-logo:hover,
    .services-showcase .machines-section .company-logo:hover,
    .about-hero .machines-section .company-logo:hover,
    .graphical-cleaning-hero .machines-section .company-logo:hover,
    .washcloth-hero .machines-section .company-logo:hover,
    .formula1-hero .machines-section .company-logo:hover,
    .pricing-hero .machines-section .company-logo:hover,
    .customer-service-hero .machines-section .company-logo:hover,
    .brochures-hero .machines-section .company-logo:hover,
    .cassette-rolls-hero .machines-section .company-logo:hover,
    .winding-device-hero .machines-section .company-logo:hover,
    .manual-wiping-hero .machines-section .company-logo:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 8px 25px rgba(46, 167, 106, 0.15) !important;
        border-color: #2ea76a !important;
        background: #ffffff !important;
    }
    
    /* Fix company logo images on ALL pages */
    .machines-section .company-logo img,
    .hero .machines-section .company-logo img,
    .services-showcase .machines-section .company-logo img,
    .about-hero .machines-section .company-logo img,
    .graphical-cleaning-hero .machines-section .company-logo img,
    .washcloth-hero .machines-section .company-logo img,
    .formula1-hero .machines-section .company-logo img,
    .pricing-hero .machines-section .company-logo img,
    .customer-service-hero .machines-section .company-logo img,
    .brochures-hero .machines-section .company-logo img,
    .cassette-rolls-hero .machines-section .company-logo img,
    .winding-device-hero .machines-section .company-logo img,
    .manual-wiping-hero .machines-section .company-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0.3) brightness(0.9) !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .company-logo:hover img,
    .hero .machines-section .company-logo:hover img,
    .services-showcase .machines-section .company-logo:hover img,
    .about-hero .machines-section .company-logo:hover img,
    .graphical-cleaning-hero .machines-section .company-logo:hover img,
    .washcloth-hero .machines-section .company-logo:hover img,
    .formula1-hero .machines-section .company-logo:hover img,
    .pricing-hero .machines-section .company-logo:hover img,
    .customer-service-hero .machines-section .company-logo:hover img,
    .brochures-hero .machines-section .company-logo:hover img,
    .cassette-rolls-hero .machines-section .company-logo:hover img,
    .winding-device-hero .machines-section .company-logo:hover img,
    .manual-wiping-hero .machines-section .company-logo:hover img {
        filter: grayscale(0) brightness(1) !important;
        transform: scale(1.05) !important;
    }
    
    /* Fix logo placeholders on ALL pages */
    .machines-section .company-logo .logo-placeholder,
    .hero .machines-section .company-logo .logo-placeholder,
    .services-showcase .machines-section .company-logo .logo-placeholder,
    .about-hero .machines-section .company-logo .logo-placeholder,
    .graphical-cleaning-hero .machines-section .company-logo .logo-placeholder,
    .washcloth-hero .machines-section .company-logo .logo-placeholder,
    .formula1-hero .machines-section .company-logo .logo-placeholder,
    .pricing-hero .machines-section .company-logo .logo-placeholder,
    .customer-service-hero .machines-section .company-logo .logo-placeholder,
    .brochures-hero .machines-section .company-logo .logo-placeholder,
    .cassette-rolls-hero .machines-section .company-logo .logo-placeholder,
    .winding-device-hero .machines-section .company-logo .logo-placeholder,
    .manual-wiping-hero .machines-section .company-logo .logo-placeholder {
        color: #2ea76a !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
    
    /* Fix machines CTA section on ALL pages */
    .machines-section .machines-cta-section,
    .hero .machines-section .machines-cta-section,
    .services-showcase .machines-section .machines-cta-section,
    .about-hero .machines-section .machines-cta-section,
    .graphical-cleaning-hero .machines-section .machines-cta-section,
    .washcloth-hero .machines-section .machines-cta-section,
    .formula1-hero .machines-section .machines-cta-section,
    .pricing-hero .machines-section .machines-cta-section,
    .customer-service-hero .machines-section .machines-cta-section,
    .brochures-hero .machines-section .machines-cta-section,
    .cassette-rolls-hero .machines-section .machines-cta-section,
    .winding-device-hero .machines-section .machines-cta-section,
    .manual-wiping-hero .machines-section .machines-cta-section {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 2px solid #e9ecef !important;
        border-radius: 16px !important;
        padding: 30px 20px !important;
        margin: 0 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    /* Fix CTA content on ALL pages */
    .machines-section .machines-cta-section .cta-heading,
    .hero .machines-section .machines-cta-section .cta-heading,
    .services-showcase .machines-section .machines-cta-section .cta-heading,
    .about-hero .machines-section .machines-cta-section .cta-heading,
    .graphical-cleaning-hero .machines-section .machines-cta-section .cta-heading,
    .washcloth-hero .machines-section .machines-cta-section .cta-heading,
    .formula1-hero .machines-section .machines-cta-section .cta-heading,
    .pricing-hero .machines-section .machines-cta-section .cta-heading,
    .customer-service-hero .machines-section .machines-cta-section .cta-heading,
    .brochures-hero .machines-section .machines-cta-section .cta-heading,
    .cassette-rolls-hero .machines-section .machines-cta-section .cta-heading,
    .winding-device-hero .machines-section .machines-cta-section .cta-heading,
    .manual-wiping-hero .machines-section .machines-cta-section .cta-heading {
        color: #1a5f3f !important;
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .machines-section .machines-cta-section .cta-description,
    .hero .machines-section .machines-cta-section .cta-description,
    .services-showcase .machines-section .machines-cta-section .cta-description,
    .about-hero .machines-section .machines-cta-section .cta-description,
    .graphical-cleaning-hero .machines-section .machines-cta-section .cta-description,
    .washcloth-hero .machines-section .machines-cta-section .cta-description,
    .formula1-hero .machines-section .machines-cta-section .cta-description,
    .pricing-hero .machines-section .machines-cta-section .cta-description,
    .customer-service-hero .machines-section .machines-cta-section .cta-description,
    .brochures-hero .machines-section .machines-cta-section .cta-description,
    .cassette-rolls-hero .machines-section .machines-cta-section .cta-description,
    .winding-device-hero .machines-section .machines-cta-section .cta-description,
    .manual-wiping-hero .machines-section .machines-cta-section .cta-description {
        color: #666666 !important;
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Fix CTA button on ALL pages */
    .machines-section .machines-cta-section .machines-cta-button,
    .hero .machines-section .machines-cta-section .machines-cta-button,
    .services-showcase .machines-section .machines-cta-section .machines-cta-button,
    .about-hero .machines-section .machines-cta-section .machines-cta-button,
    .graphical-cleaning-hero .machines-section .machines-cta-section .machines-cta-button,
    .washcloth-hero .machines-section .machines-cta-section .machines-cta-button,
    .formula1-hero .machines-section .machines-cta-section .machines-cta-button,
    .pricing-hero .machines-section .machines-cta-section .machines-cta-button,
    .customer-service-hero .machines-section .machines-cta-section .machines-cta-button,
    .brochures-hero .machines-section .machines-cta-section .machines-cta-button,
    .cassette-rolls-hero .machines-section .machines-cta-section .machines-cta-button,
    .winding-device-hero .machines-section .machines-cta-section .machines-cta-button,
    .manual-wiping-hero .machines-section .machines-cta-section .machines-cta-button {
        background: #2ea76a !important;
        color: #ffffff !important;
        border: 2px solid #2ea76a !important;
        padding: 12px 24px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
    }
    
    .machines-section .machines-cta-section .machines-cta-button:hover,
    .hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .services-showcase .machines-section .machines-cta-section .machines-cta-button:hover,
    .about-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .graphical-cleaning-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .washcloth-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .formula1-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .pricing-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .customer-service-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .brochures-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .cassette-rolls-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .winding-device-hero .machines-section .machines-cta-section .machines-cta-button:hover,
    .manual-wiping-hero .machines-section .machines-cta-section .machines-cta-button:hover {
        background: #ffffff !important;
        color: #2ea76a !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(46, 167, 106, 0.2) !important;
    }
}

/* Extra small mobile specific fixes for ALL pages */
@media (max-width: 480px) {
    .machines-section .machines-title .title-main,
    .hero .machines-section .machines-title .title-main,
    .services-showcase .machines-section .machines-title .title-main,
    .about-hero .machines-section .machines-title .title-main,
    .graphical-cleaning-hero .machines-section .machines-title .title-main,
    .washcloth-hero .machines-section .machines-title .title-main,
    .formula1-hero .machines-section .machines-title .title-main,
    .pricing-hero .machines-section .machines-title .title-main,
    .customer-service-hero .machines-section .machines-title .title-main,
    .brochures-hero .machines-section .machines-title .title-main,
    .cassette-rolls-hero .machines-section .machines-title .title-main,
    .winding-device-hero .machines-section .machines-title .title-main,
    .manual-wiping-hero .machines-section .machines-title .title-main {
        font-size: 2rem !important;
    }
    
    .machines-section .carousel-item,
    .hero .machines-section .carousel-item,
    .services-showcase .machines-section .carousel-item,
    .about-hero .machines-section .carousel-item,
    .graphical-cleaning-hero .machines-section .carousel-item,
    .washcloth-hero .machines-section .carousel-item,
    .formula1-hero .machines-section .carousel-item,
    .pricing-hero .machines-section .carousel-item,
    .customer-service-hero .machines-section .carousel-item,
    .brochures-hero .machines-section .carousel-item,
    .cassette-rolls-hero .machines-section .carousel-item,
    .winding-device-hero .machines-section .carousel-item,
    .manual-wiping-hero .machines-section .carousel-item {
        flex: 0 0 140px !important;
        min-width: 140px !important;
    }
    
    .machines-section .company-logo,
    .hero .machines-section .company-logo,
    .services-showcase .machines-section .company-logo,
    .about-hero .machines-section .company-logo,
    .graphical-cleaning-hero .machines-section .company-logo,
    .washcloth-hero .machines-section .company-logo,
    .formula1-hero .machines-section .company-logo,
    .pricing-hero .machines-section .company-logo,
    .customer-service-hero .machines-section .company-logo,
    .brochures-hero .machines-section .company-logo,
    .cassette-rolls-hero .machines-section .company-logo,
    .winding-device-hero .machines-section .company-logo,
    .manual-wiping-hero .machines-section .company-logo {
        width: 120px !important;
        height: 70px !important;
        padding: 12px !important;
    }
    
    .machines-section .machines-cta-section,
    .hero .machines-section .machines-cta-section,
    .services-showcase .machines-section .machines-cta-section,
    .about-hero .machines-section .machines-cta-section,
    .graphical-cleaning-hero .machines-section .machines-cta-section,
    .washcloth-hero .machines-section .machines-cta-section,
    .formula1-hero .machines-section .machines-cta-section,
    .pricing-hero .machines-section .machines-cta-section,
    .customer-service-hero .machines-section .machines-cta-section,
    .brochures-hero .machines-section .machines-cta-section,
    .cassette-rolls-hero .machines-section .machines-cta-section,
    .winding-device-hero .machines-section .machines-cta-section,
    .manual-wiping-hero .machines-section .machines-cta-section {
        padding: 25px 15px !important;
        margin: 0 15px !important;
    }
}

/* DESPERATE OVERRIDE FOR ALL PAGES HERO SECTIONS - REMOVE GLASS MORPHISM */
/* This section removes glass morphism containers from hero sections on ALL pages for mobile */

@media (max-width: 768px) {
    /* Remove glass morphism from ALL hero sections across all pages */
    .hero .hero-content,
    .hero .about-hero-content,
    .hero .graphical-cleaning-hero-content,
    .hero .washcloth-hero-content,
    .hero .formula1-hero-content,
    .hero .machines-hero-content,
    .hero .pricing-hero-content,
    .hero .customer-service-hero-content,
    .hero .brochures-hero-content,
    .hero .cassette-rolls-hero-content,
    .hero .winding-device-hero-content,
    .hero .manual-wiping-hero-content,
    .about-hero .hero-content,
    .about-hero .about-hero-content,
    .graphical-cleaning-hero .hero-content,
    .graphical-cleaning-hero .graphical-cleaning-hero-content,
    .washcloth-hero .hero-content,
    .washcloth-hero .washcloth-hero-content,
    .formula1-hero .hero-content,
    .formula1-hero .formula1-hero-content,
    .machines-hero .hero-content,
    .machines-hero .machines-hero-content,
    .pricing-hero .hero-content,
    .pricing-hero .pricing-hero-content,
    .customer-service-hero .hero-content,
    .customer-service-hero .customer-service-hero-content,
    .brochures-hero .hero-content,
    .brochures-hero .brochures-hero-content,
    .cassette-rolls-hero .hero-content,
    .cassette-rolls-hero .cassette-rolls-hero-content,
    .winding-device-hero .hero-content,
    .winding-device-hero .winding-device-hero-content,
    .manual-wiping-hero .hero-content,
    .manual-wiping-hero .manual-wiping-hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    /* Remove glass morphism from ALL hero text containers */
    .hero .hero-text,
    .hero .about-hero-text,
    .hero .graphical-cleaning-hero-text,
    .hero .washcloth-hero-text,
    .hero .formula1-hero-text,
    .hero .machines-hero-text,
    .hero .pricing-hero-text,
    .hero .customer-service-hero-text,
    .hero .brochures-hero-text,
    .hero .cassette-rolls-hero-text,
    .hero .winding-device-hero-text,
    .hero .manual-wiping-hero-text,
    .about-hero .hero-text,
    .about-hero .about-hero-text,
    .graphical-cleaning-hero .hero-text,
    .graphical-cleaning-hero .graphical-cleaning-hero-text,
    .washcloth-hero .hero-text,
    .washcloth-hero .washcloth-hero-text,
    .formula1-hero .hero-text,
    .formula1-hero .formula1-hero-text,
    .machines-hero .hero-text,
    .machines-hero .machines-hero-text,
    .pricing-hero .hero-text,
    .pricing-hero .pricing-hero-text,
    .customer-service-hero .hero-text,
    .customer-service-hero .customer-service-hero-text,
    .brochures-hero .hero-text,
    .brochures-hero .brochures-hero-text,
    .cassette-rolls-hero .hero-text,
    .cassette-rolls-hero .cassette-rolls-hero-text,
    .winding-device-hero .hero-text,
    .winding-device-hero .winding-device-hero-text,
    .manual-wiping-hero .hero-text,
    .manual-wiping-hero .manual-wiping-hero-text {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    /* Remove glass morphism from ALL hero content elements */
    .hero *,
    .about-hero *,
    .graphical-cleaning-hero *,
    .washcloth-hero *,
    .formula1-hero *,
    .machines-hero *,
    .pricing-hero *,
    .customer-service-hero *,
    .brochures-hero *,
    .cassette-rolls-hero *,
    .winding-device-hero *,
    .manual-wiping-hero * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Remove glass morphism from ALL hero content and about-hero-content */
    .hero .hero-content *,
    .hero .about-hero-content *,
    .hero .graphical-cleaning-hero-content *,
    .hero .washcloth-hero-content *,
    .hero .formula1-hero-content *,
    .hero .machines-hero-content *,
    .hero .pricing-hero-content *,
    .hero .customer-service-hero-content *,
    .hero .brochures-hero-content *,
    .hero .cassette-rolls-hero-content *,
    .hero .winding-device-hero-content *,
    .hero .manual-wiping-hero-content *,
    .about-hero .hero-content *,
    .about-hero .about-hero-content *,
    .graphical-cleaning-hero .hero-content *,
    .graphical-cleaning-hero .graphical-cleaning-hero-content *,
    .washcloth-hero .hero-content *,
    .washcloth-hero .washcloth-hero-content *,
    .formula1-hero .hero-content *,
    .formula1-hero .formula1-hero-content *,
    .machines-hero .hero-content *,
    .machines-hero .machines-hero-content *,
    .pricing-hero .hero-content *,
    .pricing-hero .pricing-hero-content *,
    .customer-service-hero .hero-content *,
    .customer-service-hero .customer-service-hero-content *,
    .brochures-hero .hero-content *,
    .brochures-hero .brochures-hero-content *,
    .cassette-rolls-hero .hero-content *,
    .cassette-rolls-hero .cassette-rolls-hero-content *,
    .winding-device-hero .hero-content *,
    .winding-device-hero .winding-device-hero-content *,
    .manual-wiping-hero .hero-content *,
    .manual-wiping-hero .manual-wiping-hero-content * {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    /* Ensure ALL hero sections display proper colors and effects on mobile */
    .hero,
    .about-hero,
    .graphical-cleaning-hero,
    .washcloth-hero,
    .formula1-hero,
    .machines-hero,
    .pricing-hero,
    .customer-service-hero,
    .brochures-hero,
    .cassette-rolls-hero,
    .winding-device-hero,
    .manual-wiping-hero {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%) !important;
        position: relative !important;
    }
    
    /* Ensure ALL hero backgrounds are visible on mobile */
    .hero .hero-background,
    .about-hero .hero-background,
    .graphical-cleaning-hero .hero-background,
    .washcloth-hero .hero-background,
    .formula1-hero .hero-background,
    .machines-hero .hero-background,
    .pricing-hero .hero-background,
    .customer-service-hero .hero-background,
    .brochures-hero .hero-background,
    .cassette-rolls-hero .hero-background,
    .winding-device-hero .hero-background,
    .manual-wiping-hero .hero-background {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Ensure ALL hero grid patterns are visible on mobile */
    .hero .hero-grid-pattern,
    .about-hero .hero-grid-pattern,
    .graphical-cleaning-hero .hero-grid-pattern,
    .washcloth-hero .hero-grid-pattern,
    .formula1-hero .hero-grid-pattern,
    .machines-hero .hero-grid-pattern,
    .pricing-hero .hero-grid-pattern,
    .customer-service-hero .hero-grid-pattern,
    .brochures-hero .hero-grid-pattern,
    .cassette-rolls-hero .hero-grid-pattern,
    .winding-device-hero .hero-grid-pattern,
    .manual-wiping-hero .hero-grid-pattern {
        display: block !important;
        visibility: visible !important;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
        background-size: 40px 40px !important;
        opacity: 0.6 !important;
    }
    
    /* Ensure ALL hero before pseudo-elements are visible on mobile */
    .hero::before,
    .about-hero::before,
    .graphical-cleaning-hero::before,
    .washcloth-hero::before,
    .formula1-hero::before,
    .machines-hero::before,
    .pricing-hero::before,
    .customer-service-hero::before,
    .brochures-hero::before,
    .cassette-rolls-hero::before,
    .winding-device-hero::before,
    .manual-wiping-hero::before {
        display: block !important;
        visibility: visible !important;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%) !important;
    }
    
    /* Ensure ALL hero titles are properly centered and visible on mobile */
    .hero .hero-title .title-main,
    .about-hero .hero-title .title-main,
    .graphical-cleaning-hero .hero-title .title-main,
    .washcloth-hero .hero-title .title-main,
    .formula1-hero .hero-title .title-main,
    .machines-hero .hero-title .title-main,
    .pricing-hero .hero-title .title-main,
    .customer-service-hero .hero-title .title-main,
    .brochures-hero .hero-title .title-main,
    .cassette-rolls-hero .hero-title .title-main,
    .winding-device-hero .hero-title .title-main,
    .manual-wiping-hero .hero-title .title-main {
        text-align: center !important;
        margin: 0 auto 15px auto !important;
        color: var(--primary-white) !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Ensure ALL hero title lines and subtitles are properly centered on mobile */
    .hero .hero-title .title-line,
    .hero .hero-title .title-subtitle,
    .about-hero .hero-title .title-line,
    .about-hero .hero-title .title-subtitle,
    .graphical-cleaning-hero .hero-title .title-line,
    .graphical-cleaning-hero .hero-title .title-subtitle,
    .washcloth-hero .hero-title .title-line,
    .washcloth-hero .hero-title .title-subtitle,
    .formula1-hero .hero-title .title-line,
    .formula1-hero .hero-title .title-subtitle,
    .machines-hero .hero-title .title-line,
    .machines-hero .hero-title .title-subtitle,
    .pricing-hero .hero-title .title-line,
    .pricing-hero .hero-title .title-subtitle,
    .customer-service-hero .hero-title .title-line,
    .customer-service-hero .hero-title .title-subtitle,
    .brochures-hero .hero-title .title-line,
    .brochures-hero .hero-title .title-subtitle,
    .cassette-rolls-hero .hero-title .title-line,
    .cassette-rolls-hero .hero-title .title-subtitle,
    .winding-device-hero .hero-title .title-line,
    .winding-device-hero .hero-title .title-subtitle,
    .manual-wiping-hero .hero-title .title-line,
    .manual-wiping-hero .hero-title .title-subtitle {
        text-align: center !important;
        margin: 0 auto 8px auto !important;
        color: var(--text-light) !important;
    }
    
    /* Ensure ALL hero title main after pseudo-elements are properly positioned on mobile */
    .hero .hero-title .title-main::after,
    .about-hero .hero-title .title-main::after,
    .graphical-cleaning-hero .hero-title .title-main::after,
    .washcloth-hero .hero-title .title-main::after,
    .formula1-hero .hero-title .title-main::after,
    .machines-hero .hero-title .title-main::after,
    .pricing-hero .hero-title .title-main::after,
    .customer-service-hero .hero-title .title-main::after,
    .brochures-hero .hero-title .title-main::after,
    .cassette-rolls-hero .hero-title .title-main::after,
    .winding-device-hero .hero-title .title-main::after,
    .manual-wiping-hero .hero-title .title-main::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
        background: linear-gradient(90deg, var(--bright-green), transparent) !important;
        opacity: 0.8 !important;
    }
}

/* DESPERATE OVERRIDE FOR OUR MACHINES SECTION - ALL PAGES MOBILE FIXES */
/* This section fixes all color and layout issues for mobile devices on ALL pages */

@media (max-width: 768px) {
    /* Force machines section background and layout on ALL pages */
    .machines-section,
    .hero .machines-section,
    .services-showcase .machines-section,
    .about-hero .machines-section,
    .graphical-cleaning-hero .machines-section,
    .washcloth-hero .machines-section,
    .formula1-hero .machines-section,
    .pricing-hero .machines-section,
    .customer-service-hero .machines-section,
    .brochures-hero .machines-section,
    .cassette-rolls-hero .machines-section,
    .winding-device-hero .machines-section,
    .manual-wiping-hero .machines-section {
        background: #f8f9fa !important;
        background-color: #f8f9fa !important;
        background-image: none !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 1 !important;
        overflow: hidden !important;
    }
    
    /* Hide problematic background elements on ALL pages */
    .machines-section .machines-background,
    .hero .machines-section .machines-background,
    .services-showcase .machines-section .machines-background,
    .about-hero .machines-section .machines-background,
    .graphical-cleaning-hero .machines-section .machines-background,
    .washcloth-hero .machines-section .machines-background,
    .formula1-hero .machines-section .machines-background,
    .pricing-hero .machines-section .machines-background,
    .customer-service-hero .machines-section .machines-background,
    .brochures-hero .machines-section .machines-background,
    .cassette-rolls-hero .machines-section .machines-background,
    .winding-device-hero .machines-section .machines-background,
    .manual-wiping-hero .machines-section .machines-background {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .machines-section .machines-grid-pattern,
    .hero .machines-section .machines-grid-pattern,
    .services-showcase .machines-section .machines-grid-pattern,
    .about-hero .machines-section .machines-grid-pattern,
    .graphical-cleaning-hero .machines-section .machines-grid-pattern,
    .washcloth-hero .machines-section .machines-grid-pattern,
    .formula1-hero .machines-section .machines-grid-pattern,
    .pricing-hero .machines-section .machines-grid-pattern,
    .customer-service-hero .machines-section .machines-grid-pattern,
    .brochures-hero .machines-section .machines-grid-pattern,
    .cassette-rolls-hero .machines-section .machines-grid-pattern,
    .winding-device-hero .machines-section .machines-grid-pattern,
    .manual-wiping-hero .machines-section .machines-grid-pattern {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Fix machines header on ALL pages */
    .machines-section .machines-header,
    .hero .machines-section .machines-header,
    .services-showcase .machines-section .machines-header,
    .about-hero .machines-section .machines-header,
    .graphical-cleaning-hero .machines-section .machines-header,
    .washcloth-hero .machines-section .machines-header,
    .formula1-hero .machines-section .machines-header,
    .pricing-hero .machines-section .machines-header,
    .customer-service-hero .machines-section .machines-header,
    .brochures-hero .machines-section .machines-header,
    .cassette-rolls-hero .machines-section .machines-header,
    .winding-device-hero .machines-section .machines-header,
    .manual-wiping-hero .machines-section .machines-header {
        margin-bottom: 40px !important;
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    /* Fix machines title colors on ALL pages */
    .machines-section .machines-title .title-line,
    .hero .machines-section .machines-title .title-line,
    .services-showcase .machines-section .machines-title .title-line,
    .about-hero .machines-section .machines-title .title-line,
    .graphical-cleaning-hero .machines-section .machines-title .title-line,
    .washcloth-hero .machines-section .machines-title .title-line,
    .formula1-hero .machines-section .machines-title .title-line,
    .pricing-hero .machines-section .machines-title .title-line,
    .customer-service-hero .machines-section .machines-title .title-line,
    .brochures-hero .machines-section .machines-title .title-line,
    .cassette-rolls-hero .machines-section .machines-title .title-line,
    .winding-device-hero .machines-section .machines-title .title-line,
    .manual-wiping-hero .machines-section .machines-title .title-line {
        color: #2ea76a !important;
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .machines-section .machines-title .title-main,
    .hero .machines-section .machines-title .title-main,
    .services-showcase .machines-section .machines-title .title-main,
    .about-hero .machines-section .machines-title .title-main,
    .graphical-cleaning-hero .machines-section .machines-title .title-main,
    .washcloth-hero .machines-section .machines-title .title-main,
    .formula1-hero .machines-section .machines-title .title-main,
    .pricing-hero .machines-section .machines-title .title-main,
    .customer-service-hero .machines-section .machines-title .title-main,
    .brochures-hero .machines-section .machines-title .title-main,
    .cassette-rolls-hero .machines-section .machines-title .title-main,
    .winding-device-hero .machines-section .machines-title .title-main,
    .manual-wiping-hero .machines-section .machines-title .title-main {
        color: var(--primary-green) !important;
        font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
        position: relative !important;
        letter-spacing: -1px !important;
        text-shadow: 0 4px 20px rgba(26, 95, 63, 0.2) !important;
    }
}

/* ===== LANGUAGE TOGGLE BUTTON ===== */
/* Fixed bottom-left language switcher with slide-up menu */

.language-toggle-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: var(--font-primary);
}

/* Language Menu - slides up */
.language-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--primary-white);
    border-radius: 16px;
    padding: 12px 8px;
    box-shadow: 
        0 15px 40px rgba(26, 95, 63, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    min-width: 60px;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Language option items */
.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.language-option:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--primary-white);
    transform: translateX(5px);
    border-color: var(--accent-green);
}

.language-option.active {
    background: var(--accent-green);
    color: var(--primary-white);
    border-color: var(--accent-green);
}

/* Main toggle button */
.language-toggle-button {
    min-width: 56px;
    height: 56px;
    padding: 0 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(26, 95, 63, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-white);
    text-transform: uppercase;
}

.language-toggle-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.language-toggle-button:hover::before {
    left: 100%;
}

.language-toggle-button:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 12px 35px rgba(26, 95, 63, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.25);
}

.language-toggle-button:active {
    transform: translateY(-2px) scale(1.05);
}

.language-toggle-button.active {
    background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
    transform: translateY(-2px) scale(1.05);
}

/* Current language display */
.current-language {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .language-toggle-container {
        bottom: 20px;
        left: 20px;
    }
    
    .language-toggle-button {
        min-width: 52px;
        height: 52px;
        padding: 0 16px;
        font-size: 15px;
    }
    
    .language-menu {
        bottom: 65px;
    }
    
    .language-option {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .language-toggle-container {
        bottom: 15px;
        left: 15px;
    }
    
    .language-toggle-button {
        min-width: 48px;
        height: 48px;
        padding: 0 14px;
        font-size: 14px;
        border-radius: 24px;
    }
    
    .language-menu {
        bottom: 60px;
    }
    
    .language-option {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
}

/* Animation for language change */
@keyframes languageChange {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.language-toggle-button.changing {
    animation: languageChange 0.4s ease;
}