/*
Theme Name: Serigrafía de la Gringa
Theme URI: 
Author: Custom Development
Author URI: 
Description: Tema personalizado para fábrica de serigrafía. Diseño creativo, artesanal y profesional. Responsive y preparado para WooCommerce.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: serigrafia-gringa
Tags: e-commerce, woocommerce, custom-design, responsive, serigrafia, printing
*/

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #099CC4;
    --primary-dark: #077A9A;
    --primary-light: #0BB8D9;
    --secondary-color: #1A3A5F;
    --dark-blue: #0D1F3D;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Open Sans', 'Roboto', sans-serif;
    --shadow-sm: 0 2px 8px rgba(9, 156, 196, 0.1);
    --shadow-md: 0 4px 16px rgba(9, 156, 196, 0.15);
    --shadow-lg: 0 8px 32px rgba(9, 156, 196, 0.2);
    --shadow-xl: 0 16px 48px rgba(9, 156, 196, 0.25);
    --gradient-primary: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
    --gradient-hero: linear-gradient(135deg, #1A3A5F 0%, #0D1F3D 50%, #099CC4 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header:hover {
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.language-switcher ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.language-switcher li {
    margin: 0;
}

.language-switcher a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
}

.language-switcher a:hover,
.language-switcher .lang-item-current a {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.header-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.header-cta:hover::before {
    width: 300px;
    height: 300px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.menu-toggle i {
    line-height: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 700px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(9, 156, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(11, 184, 217, 0.2) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-card {
    width: 100%;
    max-width: 640px;
    background: transparent;
    border-radius: 24px;
    padding: 0;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.hero-video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.hero-video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transform: scale(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 60%);
    border: none;
    cursor: pointer;
    color: #ffffff;
    gap: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
}

.hero-video-play-icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(9,156,196,0.7);
    position: relative;
}

.hero-video-play-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,0.5);
    opacity: 0.8;
}

.hero-video-play-icon i {
    font-size: 26px;
    margin-left: 3px;
}

.hero-video-play-text {
    background: rgba(0,0,0,0.55);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-video-thumb:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.hero-video-thumb:hover .hero-video-play-icon {
    box-shadow: 0 14px 32px rgba(9,156,196,0.9);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-services li {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-services li i {
    font-size: 16px;
}

.hero-services li:nth-child(1) { animation-delay: 0.1s; }
.hero-services li:nth-child(2) { animation-delay: 0.2s; }
.hero-services li:nth-child(3) { animation-delay: 0.3s; }
.hero-services li:nth-child(4) { animation-delay: 0.4s; }
.hero-services li:nth-child(5) { animation-delay: 0.5s; }
.hero-services li:nth-child(6) { animation-delay: 0.6s; }
.hero-services li:nth-child(7) { animation-delay: 0.7s; }

.hero-services li:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(9, 156, 196, 0.5), 0 0 0 0 rgba(9, 156, 196, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    border: 2px solid transparent;
    text-transform: uppercase;
    min-width: 280px;
    text-align: center;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(9, 156, 196, 0.6), 0 0 20px rgba(9, 156, 196, 0.4);
    background: linear-gradient(135deg, #0BB8D9 0%, #099CC4 100%);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover::after {
    opacity: 1;
}

.hero-cta:active {
    transform: translateY(-2px) scale(0.98);
}

/* Hero Video Modal */
.hero-video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.hero-video-modal.is-open {
    display: flex;
}

.hero-video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.hero-video-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #0b1524;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
    padding: 18px 18px 24px;
    z-index: 1;
}

.hero-video-modal-body video {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.hero-video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-video-modal-close i {
    font-size: 16px;
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 120px;
        gap: 30px;
    }

    .hero-video-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }
}

/* Partner Section */
.partner-section {
    background-color: var(--white);
    padding: 60px 20px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.partner-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partner-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.partner-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.partner-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 100%;
    text-align: left;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding: 20px 0 60px;
    position: relative;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Partner Swiper */
/* Partner Splide */
.partner-splide {
    margin-bottom: 0;
}

.partner-splide .product-item {
    width: 100%;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.partner-splide .product-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    z-index: 10;
    position: relative;
}

.partner-splide .product-item h3 {
    margin-top: 15px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Products Splide */
.products-splide {
    margin-bottom: 0;
}

.products-splide .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.products-splide .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    position: relative;
}

.products-glide .product-card:hover {
    z-index: 10;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}


/* Swiper Pagination - Posicionada correctamente debajo del slider */

/* Product Carousel (Legacy - mantener por compatibilidad) */
.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-carousel::-webkit-scrollbar {
    height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.product-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.product-item {
    min-width: 250px;
    scroll-snap-align: start;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.product-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #ddd;
}

.product-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* ============================================
   SPLIDE.JS SLIDER - Sistema profesional de slider
   ============================================ */
.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 0 80px;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
}

/* Splide Container */
.slider-wrapper .splide {
    position: relative;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.slider-wrapper .splide__track {
    overflow: visible;
    padding: 20px 0;
    will-change: transform;
}

.slider-wrapper .splide__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-wrapper .splide__slide {
    height: auto;
    display: flex;
    padding: 15px;
    box-sizing: border-box;
    overflow: visible;
    will-change: transform;
    contain: layout style paint;
}

/* Flechas de navegación Splide - Posicionadas en los extremos */
.slider-wrapper .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 0;
    opacity: 1;
}

.slider-wrapper .splide__arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-wrapper .splide__arrow--prev {
    left: 10px;
}

.slider-wrapper .splide__arrow--next {
    right: 10px;
}

.slider-wrapper .splide__arrow svg {
    fill: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* Paginación Splide - Círculos azules */
.slider-wrapper .splide__pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-wrapper .splide__pagination__page {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
}

.slider-wrapper .splide__pagination__page.is-active {
    width: 30px;
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
}

/* Estilos para tarjetas dentro de Splide */
.partner-splide .product-item,
.products-splide .product-card {
    width: 100%;
    height: 100%;
}

.partner-splide .product-item {
    position: relative;
    z-index: 1;
}

.partner-splide .product-item:hover {
    z-index: 10;
}

/* Responsive Splide */
@media (max-width: 1024px) {
    .slider-wrapper .splide {
        padding: 0 70px;
    }
    
    .slider-wrapper .splide__arrow--prev {
        left: 5px;
    }
    
    .slider-wrapper .splide__arrow--next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 10px 0 50px;
    }
    
    .slider-wrapper .splide {
        padding: 0 20px;
    }
    
    .slider-wrapper .splide__track {
        padding: 10px 0;
    }
    
    .slider-wrapper .splide__slide {
        padding: 5px;
    }
    
    .slider-wrapper .splide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-wrapper .splide__arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-wrapper .splide__arrow--prev {
        left: 0;
    }
    
    .slider-wrapper .splide__arrow--next {
        right: 0;
    }
    
    /* Ajustes para tarjetas del partner slider */
    .partner-splide .product-item {
        padding: 20px 15px;
    }
    
    .partner-splide .product-item > div {
        height: 200px;
    }
    
    /* Ajustes para tarjetas de productos - mantener proporciones */
    .products-splide .product-card img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 5px 0 50px;
    }
    
    .slider-wrapper .splide {
        padding: 0 15px;
    }
    
    .slider-wrapper .splide__slide {
        padding: 3px;
    }
    
    .slider-wrapper .splide__arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-wrapper .splide__arrow--prev {
        left: 0;
    }
    
    .slider-wrapper .splide__arrow--next {
        right: 0;
    }
    
    .slider-wrapper .splide__arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .partner-splide .product-item {
        padding: 18px 12px;
    }
    
    .partner-splide .product-item > div {
        height: 180px;
    }
    
    .products-splide .product-card img {
        height: 280px;
    }
}

.view-more-btn {
    display: inline-block;
    margin-top: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.view-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-gray);
    padding: 80px 20px;
}

.benefits-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefits-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.benefit-icon i {
    font-size: 36px;
    line-height: 1;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.4s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.5;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Products Display Section */
.products-display-section {
    background-color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.products-display-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products-display-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.products-display-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-tag {
    background: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.category-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(9, 156, 196, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
    contain: layout style paint;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 156, 196, 0.03) 0%, rgba(9, 156, 196, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(9, 156, 196, 0.15);
    border-color: var(--primary-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.product-card:hover img {
    transform: scale(1.03) translateZ(0);
}

.product-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.product-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card h3 a:hover {
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.product-card .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 16px;
    border-top: 2px solid rgba(9, 156, 196, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card .price::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Customization Section */
.customization-section {
    background-color: var(--light-gray);
    padding: 80px 20px;
}

.customization-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.customization-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.customization-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.customization-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Customization Layout with Central Image */
.customization-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    margin-top: 60px;
    align-items: center;
}

.customization-left,
.customization-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.customization-left .custom-option {
    text-align: left;
}

.customization-right .custom-option {
    text-align: left;
}

.customization-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.workwear-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.workwear-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 156, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.workwear-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.workwear-image:hover::before {
    opacity: 1;
}

.workwear-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.workwear-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #FF6B35 0%, #1A3A5F 50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.workwear-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 22px),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 22px);
}

.workwear-placeholder i {
    font-size: 120px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.workwear-placeholder p {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.custom-option {
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.custom-option::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 156, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.custom-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.custom-option:hover::before {
    opacity: 1;
}

.custom-option-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.custom-option-icon i {
    font-size: 26px;
    line-height: 1;
}

.custom-option:hover .custom-option-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.custom-option-content {
    flex: 1;
    min-width: 0;
}

.custom-option h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.custom-option p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Process Section */
.process-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.process-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-tab {
    background: var(--white);
    padding: 14px 35px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.process-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.process-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.process-tab.active::before {
    left: 0;
}

.process-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.process-step-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #ddd;
}

.process-step-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.process-step-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.process-steps-list {
    list-style: none;
}

.process-steps-list li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.process-steps-list li:last-child {
    border-bottom: none;
}

/* About Section */
.about-section {
    position: relative;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 20px;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 31, 61, 0.85);
    z-index: 1;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: rgba(9, 156, 196, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-description-container {
    padding-top: 60px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: left;
}

.about-section .view-more-btn {
    position: relative;
    z-index: 2;
    font-size: 16px;
    padding: 14px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Factory View Section */
.factory-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.factory-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.factory-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.factory-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.factory-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.factory-process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.factory-process-grid > .factory-process-item:nth-child(1) {
    grid-column: 1 / 3;
}

.factory-process-grid > .factory-process-item:nth-child(2) {
    grid-column: 3 / 5;
}

.factory-process-grid > .factory-process-item:nth-child(3) {
    grid-column: 5 / 7;
}

.factory-process-grid > .factory-process-item:nth-child(4) {
    grid-column: 2 / 4;
    justify-self: center;
}

.factory-process-grid > .factory-process-item:nth-child(5) {
    grid-column: 4 / 6;
    justify-self: center;
}

@media (max-width: 1024px) {
    .factory-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factory-process-grid > .factory-process-item:nth-child(4),
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: span 1;
        justify-self: stretch;
    }
    
    .factory-process-grid > .factory-process-item:nth-child(4) {
        grid-column: 1;
    }
    
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .factory-process-grid {
        grid-template-columns: 1fr;
    }
    
    .factory-process-grid > .factory-process-item:nth-child(4),
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: 1;
        justify-self: stretch;
    }
}

.factory-process-item {
    text-align: center;
    transition: all 0.3s ease;
}

.factory-process-image {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.factory-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
}

.factory-process-image img[src=""],
.factory-process-image img:not([src]) {
    display: none;
}

.factory-process-image:not(:has(img)) {
    background: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.factory-process-image:not(:has(img)) .factory-process-overlay {
    opacity: 1;
    position: relative;
}

.factory-process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 156, 196, 0.8) 0%, rgba(13, 31, 61, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.factory-process-overlay i {
    font-size: 48px;
    color: var(--white);
}

.factory-process-item:hover .factory-process-image {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(9, 156, 196, 0.3);
}

.factory-process-item:hover .factory-process-image img {
    transform: scale(1.1);
}

.factory-process-item:hover .factory-process-overlay {
    opacity: 1;
}

.factory-process-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.factory-process-item:hover h3 {
    color: var(--primary-color);
}

.factory-process-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    padding: 80px 20px;
}

.features-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-icon i {
    font-size: 36px;
    line-height: 1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Clients / Logos Section */
.clients-section {
    padding: 70px 20px;
    background: radial-gradient(circle at top left, rgba(9,156,196,0.18) 0%, transparent 55%),
                radial-gradient(circle at bottom right, rgba(11,184,217,0.2) 0%, transparent 55%),
                linear-gradient(135deg, #0D1F3D 0%, #16658a 45%, #099CC4 100%);
    color: var(--white);
}

.clients-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.clients-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.clients-description {
    max-width: 820px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.client-logo-item img {
    max-width: 140px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}

.client-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.12);
}

@media (max-width: 1024px) {
    .clients-logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .clients-container {
        padding: 0 20px;
    }

    .clients-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .clients-title {
        font-size: 26px;
    }

    .clients-description {
        font-size: 15px;
    }
}
.certifications-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.certifications-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-logo {
    width: 140px;
    height: 90px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.cert-logo:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    flex: 0 0 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 18px;
}

.social-icon i {
    line-height: 1;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(9, 156, 196, 0.4);
    border-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(9, 156, 196, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form button:hover::before {
    width: 300px;
    height: 300px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .customization-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .customization-center {
        order: -1;
        margin-bottom: 30px;
    }
    
    .workwear-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .customization-left,
    .customization-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-cta {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    .hero-services {
        flex-direction: column;
        gap: 10px;
    }

    .benefits-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .customization-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .customization-center {
        order: -1;
        margin-bottom: 20px;
    }
    
    .workwear-image {
        max-width: 100%;
    }
    
    .customization-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .benefits-title,
    .products-display-title,
    .customization-title,
    .process-title,
    .about-title,
    .factory-title,
    .features-title {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Compatibility */
.woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-products-header {
    margin-bottom: 40px;
}

.woocommerce-products-header h1 {
    font-size: 36px;
    color: var(--text-dark);
}

.products-grid.woocommerce {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* WooCommerce Product Loop */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    color: var(--text-dark);
    margin: 15px 0 10px;
    padding: 0 20px;
}

.woocommerce ul.products li.product .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    padding: 0 20px 20px;
}

.woocommerce ul.products li.product .button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* WooCommerce Single Product */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.woocommerce div.product .woocommerce-product-gallery {
    margin-bottom: 0;
}

.woocommerce div.product .summary {
    padding: 20px;
}

.woocommerce div.product .summary .price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 20px 0;
}

.woocommerce div.product .summary .single_add_to_cart_button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.woocommerce div.product .summary .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* WooCommerce Cart */
.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}

.woocommerce-cart .cart_totals {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* WooCommerce Checkout */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.woocommerce-checkout #place_order {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid;
}

.woocommerce-message {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.woocommerce-info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.woocommerce-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* WooCommerce Shop Toolbar */
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
    margin-bottom: 30px;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

/* Responsive WooCommerce */
@media (max-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.scroll-to-top i {
    line-height: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(9, 156, 196, 0.5);
}

/* Form Error Styles */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
    border-width: 2px;
}

