/*
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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header - SIN STICKY para evitar problemas de renderizado */
.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    padding: 15px 0;
}

/* Hover desactivado durante scroll para mejor rendimiento */
/* .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: opacity 0.2s, background-color 0.2s;
}

.site-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    max-height: 100px;
    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: opacity 0.2s, background-color 0.2s;
}

.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: opacity 0.2s, background-color 0.2s;
    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);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    transition: opacity 0.2s, background-color 0.2s;
}

.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-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.35) 0%, rgba(13, 31, 61, 0.4) 50%, rgba(9, 156, 196, 0.3) 100%);
    z-index: 1;
}

.hero-background {
    display: none;
}

.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;
    visibility: hidden;
    opacity: 0;
}

/* Mostrar video solo en mobile */
@media (max-width: 992px) {
    .hero-video-card {
        visibility: visible;
        opacity: 1;
    }
}

.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;
}

.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.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    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.4);
    text-transform: uppercase;
    min-width: 280px;
    text-align: center;
}

/* 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.85);
}

.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;
        background-position: left center;
    }

    .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: center;
}

/* 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: opacity 0.2s, background-color 0.2s;
    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 GRID - Sin JavaScript, máximo rendimiento
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.products-grid .product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.products-grid .product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.products-grid .product-info {
    padding: 20px;
    text-align: center;
}

.products-grid .product-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid .product-card img {
        height: 250px;
    }
}

.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: opacity 0.2s, background-color 0.2s;
    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;
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.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);
    border: 1px solid var(--border-color);
}

.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: opacity 0.2s, background-color 0.2s;
    position: relative;
}

.benefit-icon i {
    font-size: 36px;
    line-height: 1;
}



.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;
    width: 100%;
    max-width: 100%;
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.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: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
}

.products-display-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.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: opacity 0.2s, background-color 0.2s;
    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 - Clean Design */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4;
    overflow: visible;
    background: linear-gradient(145deg, #ffffff 0%, #f7f8fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-info {
    padding: 18px 16px;
    text-align: center;
    background: #fff;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

/* Responsive Products Grid */
@media (max-width: 1200px) {
    .products-grid {
        gap: 20px;
    }
    
    .product-card-image img {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .product-card-image img {
        padding: 18px;
    }
    
    .product-info {
        padding: 16px 14px;
    }
    
    .product-info h3 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-card-image img {
        padding: 16px;
    }
    
    .product-info {
        padding: 14px 12px;
    }
    
    .product-info h3 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        border-radius: 10px;
    }
    
    .product-card-image img {
        padding: 12px;
    }
    
    .product-info {
        padding: 12px 10px;
    }
    
    .product-info h3 {
        font-size: 12px;
    }
}

/* Customization Section */
.customization-section {
    background-color: var(--light-gray);
    padding: 80px 20px;
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.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);
}

.workwear-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    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);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.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);
    flex-shrink: 0;
}

.custom-option-icon i {
    font-size: 26px;
    line-height: 1;
}

.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: opacity 0.2s, background-color 0.2s;
    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;
    pointer-events: none;
}

.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.12);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    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: opacity 0.2s, background-color 0.2s;
}

/* 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;
    width: 100%;
}

.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;
}

.factory-process-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .factory-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .factory-process-grid > .factory-process-item {
        grid-column: span 1 !important;
        justify-self: stretch !important;
    }
    
    .factory-process-grid > .factory-process-item:nth-child(1),
    .factory-process-grid > .factory-process-item:nth-child(2),
    .factory-process-grid > .factory-process-item:nth-child(3),
    .factory-process-grid > .factory-process-item:nth-child(4),
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .factory-process-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .factory-process-grid > .factory-process-item {
        grid-column: 1 !important;
        justify-self: stretch !important;
    }
    
    .factory-process-grid > .factory-process-item:nth-child(1),
    .factory-process-grid > .factory-process-item:nth-child(2),
    .factory-process-grid > .factory-process-item:nth-child(3),
    .factory-process-grid > .factory-process-item:nth-child(4),
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: 1 !important;
    }
}

.factory-process-item {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.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);
    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 h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.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: opacity 0.2s, background-color 0.2s;
    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: opacity 0.2s, background-color 0.2s;
    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 - Infinite Marquee */
.clients-section {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #0D1F3D 0%, #16658a 45%, #099CC4 100%);
    color: var(--white);
    overflow: hidden;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
    text-align: center;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.clients-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* Marquee Wrapper */
.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.clients-marquee {
    display: flex;
    width: max-content;
}

.clients-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

/* Animation - Move Left */
.clients-marquee-left {
    animation: marqueeLeft 60s linear infinite;
}

/* Animation - Move Left (Third Row - Different Speed) */
.clients-marquee-left-3 {
    animation: marqueeLeft 56s linear infinite;
}

/* Animation - Move Right */
.clients-marquee-right {
    animation: marqueeRight 70s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.clients-marquee-wrapper:hover .clients-marquee {
    animation-play-state: paused;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    min-width: 140px;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.client-logo-item img {
    max-width: 110px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.client-logo-item:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.client-logo-item:hover img {
    opacity: 1;
}

/* Responsive Clients Marquee */
@media (max-width: 768px) {
    .clients-section {
        padding: 50px 0 40px;
    }

    .clients-container {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .clients-title {
        font-size: 32px;
    }

    .clients-marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .client-logo-item {
        min-width: 120px;
        height: 60px;
        padding: 8px 15px;
    }

    .client-logo-item img {
        max-width: 90px;
        max-height: 38px;
    }

    .clients-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 0 30px;
    }

    .clients-title {
        font-size: 26px;
    }

    .clients-marquee-content {
        gap: 30px;
        padding: 0 15px;
    }

    .client-logo-item {
        min-width: 100px;
        height: 50px;
        padding: 6px 12px;
    }

    .client-logo-item img {
        max-width: 75px;
        max-height: 32px;
    }

    .clients-marquee-left {
        animation-duration: 40s;
    }

    .clients-marquee-left-3 {
        animation-duration: 36s;
    }

    .clients-marquee-right {
        animation-duration: 50s;
    }
}

.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.15);
    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: opacity 0.2s, background-color 0.2s;
}

.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);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 20px;
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    letter-spacing: 2px;
}

.blog-description {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary-color);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}

.blog-card-content {
    padding: 20px;
    text-align: left;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-card-date i {
    font-size: 12px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.blog-card-readmore i {
    font-size: 12px;
}

.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    padding: 40px 20px;
}

.blog-cta {
    text-align: center;
}

/* =====================================================
   BLOG ARCHIVE PAGE STYLES
   ===================================================== */

.blog-archive-main {
    background: #f8fafc;
}

.blog-archive-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.blog-archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
    background-size: 100px;
}

.blog-archive-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.blog-archive-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.blog-archive-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-archive-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.blog-archive-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-archive-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary-color);
}

.blog-archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-archive-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}

.blog-archive-card-content {
    padding: 25px;
}

.blog-archive-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blog-archive-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
}

.blog-archive-card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
}

.blog-archive-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-archive-card-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-archive-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.blog-archive-card-readmore i {
    font-size: 12px;
}

/* Pagination */
.blog-archive-pagination {
    text-align: center;
}

.blog-archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
}

.blog-archive-pagination .page-numbers:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blog-archive-pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.blog-archive-pagination .prev,
.blog-archive-pagination .next {
    gap: 6px;
}

/* Empty State */
.blog-archive-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-archive-empty i {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.blog-archive-empty h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-archive-empty p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Responsive Blog Archive */
@media (max-width: 992px) {
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-archive-hero {
        height: 250px;
    }

    .blog-archive-title {
        font-size: 32px;
    }

    .blog-archive-subtitle {
        font-size: 16px;
    }

    .blog-archive-container {
        padding: 40px 20px 60px;
    }

    .blog-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-archive-card-content {
        padding: 20px;
    }

    .blog-archive-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-archive-hero {
        height: 200px;
    }

    .blog-archive-title {
        font-size: 26px;
    }

    .blog-archive-card-excerpt {
        display: none;
    }

    .blog-archive-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }
}

/* =====================================================
   SINGLE POST PAGE STYLES
   ===================================================== */

/* Hero del Post */
.single-post-main {
    background: #f8fafc;
}

.single-post-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: var(--secondary-color);
}

.single-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 61, 0.95) 0%, rgba(13, 31, 61, 0.4) 50%, rgba(13, 31, 61, 0.2) 100%);
    z-index: 1;
}

.single-post-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.single-post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 30px;
    text-align: center;
    color: var(--white);
}

.single-post-category a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 20px;
}

.single-post-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.single-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.single-post-meta i {
    font-size: 13px;
    color: var(--primary-color);
}

/* Contenido del Post */
.single-post-article {
    background: #f8fafc;
}

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.single-post-content {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.single-post-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}

.single-post-content h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    font-weight: 700;
}

.single-post-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 35px 0 15px;
    font-weight: 600;
}

.single-post-content h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 30px 0 12px;
    font-weight: 600;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0 24px 25px;
}

.single-post-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.single-post-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(9, 156, 196, 0.08) 0%, rgba(26, 58, 95, 0.08) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--secondary-color);
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.single-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-post-content a:hover {
    color: var(--primary-dark);
}

/* Tags del Post */
.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tags-label i {
    color: var(--primary-color);
}

.tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
}

.tag-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Compartir en Redes */
.single-post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
}

.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0077b5; }

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Navegación entre Posts */
.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.nav-post {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.nav-post:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(9, 156, 196, 0.15);
}

.nav-post.nav-empty {
    visibility: hidden;
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; }

.nav-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Autor del Post */
.single-post-author-box {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 50px;
}

.author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 5px 0 10px;
}

.author-bio {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Posts Relacionados */
.single-post-related {
    margin-bottom: 50px;
}

.related-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.related-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary-color);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: rgba(255,255,255,0.3);
    font-size: 32px;
}

.related-card-content {
    padding: 18px;
}

.related-date {
    font-size: 12px;
    color: var(--primary-color);
}

.related-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 8px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Comentarios */
.single-post-comments {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.single-post-comments .comments-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.single-post-comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post-comments .comment {
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

.single-post-comments .comment:last-child {
    border-bottom: none;
}

.single-post-comments .comment-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.single-post-comments .comment-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 10px 0 0;
}

.single-post-comments .comment-respond {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.single-post-comments .comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.single-post-comments .comment-form-comment label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.single-post-comments .comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    resize: vertical;
    min-height: 120px;
}

.single-post-comments .comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.single-post-comments .form-submit .submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

.single-post-comments .form-submit .submit:hover {
    background: var(--primary-dark);
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .single-post-hero {
        height: 400px;
    }

    .single-post-hero-content {
        padding: 40px 20px;
    }

    .single-post-title {
        font-size: 28px;
    }

    .single-post-meta {
        gap: 15px;
        font-size: 13px;
    }

    .single-post-container {
        padding: 40px 20px 60px;
    }

    .single-post-content {
        padding: 30px 25px;
    }

    .single-post-content p,
    .single-post-content li {
        font-size: 16px;
    }

    .single-post-content h2 {
        font-size: 24px;
    }

    .single-post-content h3 {
        font-size: 20px;
    }

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-post.nav-empty {
        display: none;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .single-post-author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .single-post-hero {
        height: 350px;
    }

    .single-post-title {
        font-size: 24px;
    }

    .single-post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .single-post-content {
        padding: 25px 20px;
    }

    .single-post-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-post-comments {
        padding: 25px 20px;
    }
}

/* 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.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.2s, background-color 0.2s;
    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.15);
    color: var(--white);
    font-family: var(--font-primary);
}

.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: opacity 0.2s, background-color 0.2s;
    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 Contact Form 7 Styles - Compact */
.footer-form-wrapper .wpcf7 {
    margin: 0;
}

.footer-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-form-wrapper .wpcf7-form p {
    margin: 0;
}

.footer-form-wrapper .wpcf7-form label {
    display: none;
}

.footer-form-wrapper input[type="text"],
.footer-form-wrapper input[type="email"],
.footer-form-wrapper input[type="tel"],
.footer-form-wrapper textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.footer-form-wrapper input[type="text"]:focus,
.footer-form-wrapper input[type="email"]:focus,
.footer-form-wrapper input[type="tel"]:focus,
.footer-form-wrapper textarea:focus {
    outline: none;
    border-color: #099CC4;
    background: rgba(255,255,255,0.12);
}

.footer-form-wrapper input::placeholder,
.footer-form-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-form-wrapper textarea {
    min-height: 50px;
    max-height: 50px;
    resize: none;
}

.footer-form-wrapper input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    margin-top: 4px;
}

.footer-form-wrapper input[type="submit"]:hover {
    background: linear-gradient(135deg, #0889ad 0%, #099CC4 100%);
}

.footer-form-wrapper .wpcf7-response-output {
    margin: 8px 0 0 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 12px;
    border: none !important;
}

.footer-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #6ee7b7 !important;
}

.footer-form-wrapper .wpcf7 form.failed .wpcf7-response-output,
.footer-form-wrapper .wpcf7 form.aborted .wpcf7-response-output {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #fca5a5 !important;
}

.footer-form-wrapper .wpcf7 form.invalid .wpcf7-response-output {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #fcd34d !important;
}

.footer-form-wrapper .wpcf7-not-valid-tip {
    color: #fca5a5;
    font-size: 11px;
    margin-top: 2px;
}

.footer-form-wrapper .wpcf7-not-valid {
    border-color: #ef4444 !important;
}

.footer-form-wrapper .wpcf7-spinner {
    margin: 4px auto;
}

.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;
    }
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    /* Header */
    .site-header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-img {
        max-height: 70px;
    }

    .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;
        z-index: 999;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .main-navigation a {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .language-switcher {
        margin-right: 0;
        margin-top: 15px;
    }

    /* Hero Section */
    .hero-inner {
        padding: 60px 15px;
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-services {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }

    .hero-services li {
        padding: 8px 15px;
        font-size: 13px;
    }

    .hero-cta {
        padding: 16px 40px;
        font-size: 16px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .hero-video-card {
        max-width: 100%;
    }

    .hero-video-play-icon {
        width: 60px;
        height: 60px;
    }

    .hero-video-play-icon i {
        font-size: 22px;
    }

    .hero-video-play-text {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* Products Display Section */
    .products-display-container {
        padding: 0 20px;
    }

    .products-display-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .products-display-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .products-swiper-wrapper {
        padding: 0 10px;
    }

    /* Benefits Section */
    .benefits-container {
        padding: 0 20px;
    }

    .benefits-section {
        padding: 60px 20px;
    }

    .benefits-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    /* Customization Section */
    .customization-container {
        padding: 0 20px;
    }

    .customization-section {
        padding: 60px 20px;
    }

    .customization-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .customization-description {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .customization-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .customization-center {
        order: -1;
        margin-bottom: 20px;
    }
    
    .workwear-image {
        max-width: 100%;
    }

    .custom-option {
        padding: 18px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: flex-start;
    }

    .custom-option-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .custom-option-content {
        flex: 1;
        min-width: 0;
    }

    .custom-option-content h4 {
        font-size: 16px;
    }

    .custom-option-content p {
        font-size: 13px;
    }

    /* Factory Section */
    .factory-container {
        padding: 0 20px;
    }

    .factory-section {
        padding: 60px 20px;
    }

    .factory-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .factory-description {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .factory-process-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .factory-process-grid > .factory-process-item {
        grid-column: 1 !important;
        justify-self: stretch !important;
    }

    .factory-process-grid > .factory-process-item:nth-child(1),
    .factory-process-grid > .factory-process-item:nth-child(2),
    .factory-process-grid > .factory-process-item:nth-child(3),
    .factory-process-grid > .factory-process-item:nth-child(4),
    .factory-process-grid > .factory-process-item:nth-child(5) {
        grid-column: 1 !important;
    }

    .factory-process-item {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .about-description-container {
        padding: 0 10px;
        margin-top: 30px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Blog Section */
    .blog-section {
        padding: 60px 20px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    /* Buttons */
    .view-more-btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    /* Header */
    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        max-height: 65px;
    }

    .site-header {
        padding: 10px 0;
    }
    /* Hero Section */
    .hero-section {
        min-height: 600px;
        background-position: left center;
    }

    .hero-inner {
        padding: 50px 15px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content .subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-services {
        flex-direction: column;
        gap: 8px;
    }

    .hero-services li {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-cta {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-video-play-icon {
        width: 50px;
        height: 50px;
    }

    .hero-video-play-icon i {
        font-size: 18px;
    }

    /* Section Titles */
    .benefits-title,
    .products-display-title,
    .customization-title,
    .factory-title,
    .clients-title,
    .blog-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .products-display-description,
    .customization-description,
    .factory-description,
    .clients-description {
        font-size: 15px;
    }

    /* Products Display */
    .products-display-container {
        padding: 0 15px;
    }

    .products-swiper-wrapper {
        padding: 0 5px;
        margin: 30px 0;
    }

    .products-swiper .product-card {
        max-width: 100%;
    }

    .products-swiper .product-info {
        padding: 14px;
        min-height: 65px;
    }

    .products-swiper .product-info h3 {
        font-size: 15px;
    }

    /* Benefits */
    .benefits-container {
        padding: 0 15px;
    }

    .benefits-section {
        padding: 50px 15px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    /* Customization */
    .customization-container {
        padding: 0 15px;
    }

    .customization-section {
        padding: 50px 15px;
    }

    .custom-option {
        padding: 18px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: flex-start;
    }

    .custom-option-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        flex-shrink: 0;
    }

    /* Factory */
    .factory-container {
        padding: 0 15px;
    }

    .factory-section {
        padding: 50px 15px;
    }

    .factory-process-item {
        padding: 18px;
        width: 100%;
        max-width: 100%;
    }

    .factory-process-grid {
        gap: 20px;
    }

    .factory-process-image {
        height: 200px;
    }

    .factory-process-item h3 {
        font-size: 18px;
    }

    .factory-process-item p {
        font-size: 14px;
    }

    /* Blog Section */
    .blog-section {
        padding: 50px 15px;
    }

    .blog-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content {
        padding: 15px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-excerpt {
        display: none;
    }

    /* Video Modal */
    .hero-video-modal-dialog {
        width: 95%;
        padding: 15px;
    }

    .hero-video-modal-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
    }

    /* Buttons */
    .view-more-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer-container {
        padding: 30px 15px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content .subtitle {
        font-size: 14px;
    }

    .benefits-title,
    .products-display-title,
    .customization-title,
    .factory-title,
    .clients-title,
    .blog-title {
        font-size: 24px;
    }

    .hero-cta,
    .view-more-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
}

/* 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: opacity 0.2s, background-color 0.2s;
}

.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: opacity 0.2s, background-color 0.2s;
}

.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: opacity 0.2s, background-color 0.2s;
}

.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: opacity 0.2s, background-color 0.2s;
}

.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;
    }
}

/* Sin animaciones excepto botones CTA */
/* scroll-behavior: smooth removido - causa parpadeos */

/* Tipografía suavizada */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scroll to Top Button - Optimizado con CSS puro */
.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);
    /* Transición solo en opacity - NO en display */
    transition: opacity 0.2s ease;
    opacity: 0;
    align-items: center;
    justify-content: center;
    /* Forzar aceleración GPU */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.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;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0D1F3D 0%, #1a3a5c 100%);
    padding: 120px 20px 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 60px 20px 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Card */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0D1F3D;
    margin: 0 0 12px;
}

.contact-intro {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text a,
.contact-text span:last-child {
    font-size: 16px;
    color: #0D1F3D;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: #099CC4;
}

.contact-social {
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social > span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D1F3D;
    font-size: 18px;
    text-decoration: none;
}

.contact-social .social-links a:hover {
    background: #099CC4;
    color: #fff;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0D1F3D;
    margin: 0 0 12px;
}

.form-intro {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 32px;
}

/* Contact Form 7 Styles */
.contact-form-wrapper .wpcf7 {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper input[type="url"]:focus,
.contact-form-wrapper textarea:focus {
    border-color: #099CC4;
    background: #fff;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #9ca3af;
}

.contact-form-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-wrapper input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #099CC4 0%, #0BB8D9 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper input[type="submit"]:hover {
    background: linear-gradient(135deg, #0889ad 0%, #099CC4 100%);
}

/* CF7 Response Messages */
.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    font-size: 14px;
    border: none !important;
}

.contact-form-wrapper .wpcf7-mail-sent-ok,
.contact-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
    background: #d1fae5 !important;
    color: #065f46 !important;
}

.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7 form.failed .wpcf7-response-output,
.contact-form-wrapper .wpcf7 form.aborted .wpcf7-response-output {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-wrapper .wpcf7 form.unaccepted .wpcf7-response-output {
    background: #fef3c7 !important;
    color: #92400e !important;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
    border-color: #dc2626 !important;
}

/* Spinner */
.contact-form-wrapper .wpcf7-spinner {
    margin: 10px auto;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-hero {
        padding: 100px 20px 60px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 90px 16px 50px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-content {
        padding: 40px 16px 60px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 20px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-text a,
    .contact-text span:last-child {
        font-size: 14px;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-form-wrapper input[type="submit"] {
        padding: 14px 24px;
        font-size: 14px;
    }
}

