/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-red: #1e3a8a;
    --dark-red: #172554;
    --accent-red: #3b82f6;
    --light-red: #dbeafe;
    --text-dark: #1A202C;
    --text-light: #718096;
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --gold: #D69E2E;
    --blue: #3182CE;
    --green: #38A169;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.nav-brand h1 span {
    color: var(--text-dark);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector {
    position: relative;
    margin-right: 1rem;
    cursor: pointer;
}

.language-selector > span {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-dark);
    display: inline-block;
}

/* Language Switcher (for main.js) */
.language-switcher {
    position: relative;
    margin-right: 1rem;
    z-index: 9999;
}

.language-btn {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn:hover {
    background: #E2E8F0;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0.5rem 0 0 0;
    min-width: 140px;
    z-index: 9999;
    display: none;
}

.language-btn[aria-expanded="true"] + .language-menu,
.language-menu.show {
    display: block;
}

.language-menu li {
    margin: 0;
}

.language-menu button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.language-menu button:hover {
    background: var(--light-gray);
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    display: none;
    z-index: 1000;
    min-width: 120px;
}

.dropdown span {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.dropdown span:hover {
    background: var(--light-gray);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.btn-quote {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: var(--dark-red);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #172554;
    opacity: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: #3b82f6;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.hero-social-link.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: white;
}

.hero-social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.hero-social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.hero-social-link.email:hover {
    background: #EA4335;
    border-color: #EA4335;
    color: white;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:disabled {
    background: #CBD5E0;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #172554;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

/* Labels Showcase Box - Exact Match */
.labels-showcase-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    padding: 1rem;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-image-area {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.showcase-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
}

.showcase-text-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.showcase-label {
    color: #93c5fd;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.showcase-line {
    flex: 1;
    height: 1px;
    background: #93c5fd;
    margin-left: 0.5rem;
}

.showcase-text-area h3 {
    width: 100%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.25rem 0 0 0;
}

@media (max-width: 768px) {
    .labels-showcase-box {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .showcase-image-area img {
        min-height: 120px;
    }
    
    .showcase-text-area h3 {
        font-size: 1rem;
    }
}

/* Hero Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.product-showcase {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-showcase:hover {
    transform: translateY(-5px);
}

.product-showcase .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-showcase .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.product-showcase .product-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    z-index: 1;
}

.product-showcase .product-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
    z-index: 1;
}

/* Fallback styles for categories without images */
.cosmetic-labels {
    background: linear-gradient(135deg, #E53E3E, #FF6B6B);
}

.food-labels {
    background: linear-gradient(135deg, var(--green), #2F855A);
}

.electronic-labels {
    background: linear-gradient(135deg, var(--blue), #2C5282);
}

/* Product Categories Carousel */
.product-categories {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.product-carousel-wrapper {
    position: relative;
    margin-top: 4rem;
}

.product-carousel-container {
    position: relative;
    width: 100%;
    min-height: 450px;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-card ul {
    flex-grow: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(229, 62, 62, 0.15);
}

.category-image-container {
    width: 100%;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    background: #fff;
}

.category-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-product-image {
    transform: scale(1.05);
}

.category-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    position: relative;
}

.category-image.bottle {
    background: linear-gradient(135deg, #F5F5DC 0%, #E6E6E6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image.bottle::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 25%;
    right: 25%;
    bottom: 15%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.8) 0%, transparent 50%),
        linear-gradient(180deg, 
            #E8E8E8 0%, 
            #D0D0D0 15%, 
            #C8C8C8 30%, 
            #B8B8B8 50%, 
            #C8C8C8 70%, 
            #D0D0D0 85%, 
            #E8E8E8 100%);
    border-radius: 8px 8px 12px 12px;
    box-shadow: 
        inset -2px 0 4px rgba(0,0,0,0.1),
        inset 2px 0 4px rgba(255,255,255,0.3),
        0 2px 8px rgba(0,0,0,0.15);
}

.category-image.bottle::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 30%;
    right: 30%;
    height: 6%;
    background: 
        linear-gradient(180deg, #F0F0F0 0%, #D8D8D8 50%, #C0C0C0 100%);
    border-radius: 50px;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.5);
    z-index: 2;
}

.category-image.food {
    background: linear-gradient(135deg, var(--green), #48BB78);
}

.category-image.industrial {
    background: linear-gradient(135deg, var(--text-dark), #4A5568);
}

.category-image.sticker {
    background: linear-gradient(135deg, var(--blue), #4299E1);
}

.category-image.protective {
    background: linear-gradient(135deg, var(--gold), #B7791F);
}

.category-image.wine {
    background: linear-gradient(135deg, #805AD5, #6B46C1);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.category-tag {
    display: inline-block;
    background: var(--light-red);
    color: var(--primary-red);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.prev-btn {
    margin-left: 0;
}

.next-btn {
    margin-right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Company Info Grid */
.company-info {
    padding: 100px 0;
    background: var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(229, 62, 62, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.info-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Export CTA Section */
.export-cta {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2D3748 100%);
    padding: 100px 0;
    color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.cta-features span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

.contact-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--white);
}

.footer-brand p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.linkedin:hover {
    background: #0A66C2;
}

.social-link.tiktok:hover {
    background: #000000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--primary-red);
}

.link-group p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 350px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .carousel-navigation {
        width: calc(100% + 100px);
        left: -50px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .labels-showcase-box {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .language-selector {
        margin-right: 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .carousel-navigation {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* Additional Styles for Sub-pages */

/* Active Navigation State */
.nav-menu a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success states */
.success {
    background: var(--green) !important;
    color: var(--white) !important;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    margin-top: 80px;
    overflow: hidden;
    background: #172554;
}

.page-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Search Section */
.search-section {
    padding: 80px 0;
    background: var(--white);
}

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 2rem;
    align-items: end;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.filter-select {
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-search {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* Product Grid Section */
.product-grid-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image-real {
    transform: scale(1.05);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #f8f8f8;
}

.product-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-item:hover .product-image-real {
    transform: scale(1.08);
}

.product-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.product-image.cosmetic {
    background: linear-gradient(135deg, #E53E3E, #FF6B6B);
}

.product-image.wine {
    background: linear-gradient(135deg, #744210, #D69E2E);
}

.product-image.electronic {
    background: linear-gradient(135deg, var(--text-dark), #4A5568);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-specs span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

/* Custom Process */
.custom-process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--light-gray);
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Customization Options */
.customization-options {
    padding: 100px 0;
    background: var(--light-gray);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.option-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.option-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.option-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Quote Form */
.quote-form-section {
    padding: 100px 0;
    background: var(--white);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.quote-benefits {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    height: fit-content;
}

.quote-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* FAQ Styles */
.faq-categories {
    padding: 60px 0 0;
    background: var(--white);
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-nav-btn {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-nav-btn.active,
.faq-nav-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.faq-content {
    padding: 60px 0 100px;
    background: var(--white);
}

.faq-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category.active {
    display: block;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Styles */
.contact-methods {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--light-gray);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-details strong {
    color: var(--primary-red);
    font-weight: 700;
}

.contact-details span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-item,
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.info-item:last-child,
.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label,
.day {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.info-value,
.time {
    color: var(--text-light);
    text-align: right;
    flex: 1;
}

.timezone {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.response-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.response-item:last-child {
    margin-bottom: 0;
}

.response-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.response-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.response-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #CBD5E0;
}

.map-content {
    text-align: center;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* CTA Sections */
.cta-section,
.contact-cta {
    padding: 80px 0;
    background: var(--primary-red);
    text-align: center;
}

.cta-content-center {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Enhanced Mobile Responsiveness for Sub-pages */
@media (max-width: 1024px) {
    .search-filters {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .btn-search {
        grid-column: 1 / -1;
    }
    
    .products-grid-large {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-nav-btn {
        width: 200px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content-center h2 {
        font-size: 2rem;
    }
    
    .quote-form-content h2 {
        font-size: 2rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
}