/*
 Theme Name: WP Fashion Storefront Child
 Theme URI: https://example.com/themes/wp-fashion-storefront-child
 Description: Child theme for the WP Fashion Storefront theme. Use this theme to safely customize templates and styles.
 Author: UniqCraftWear
 Author URI: https://example.com
 Template: wp-fashion-storefront
 Text Domain: wp-fashion-storefront-child
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: ecommerce, woocommerce, blog, custom-colors, custom-menu, featured-images
*/

/*
 Place your child theme CSS customizations below.
 The parent stylesheet is enqueued via functions.php.
*/

/* Features Section Styling - Updated to match UI design */
.features-section-container {
    background: linear-gradient(135deg, #f8f4e6 0%, #fff8e1 100%);
    padding: 3rem 2rem;
    margin-top: -5%;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 0;
    width: 100%;
    max-width: none;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.feature-item img {
    max-width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    letter-spacing: -0.02em;
}

.feature-item p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-section-container {
        margin-top: -8%;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-section-container {
        margin-top: -10%;
        padding: 2rem 1rem;
    }
    
    .feature-item {
        padding: 1rem 0.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-section-container {
        margin-top: -15%;
        padding: 1.5rem 1rem;
    }
    
    .feature-item img {
        max-width: 50px;
        height: 50px;
    }
}

/* Product Slider Styling */
.product-slider-container {
    padding: 4rem 2rem;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.product-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.product-slider-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-all-btn {
    background: #2188fb;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.shop-all-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.slider-arrows {
    display: flex;
    gap: 0.5rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border: 2px solid #e1e8ed;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #718096;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    border-color: #2c3e50;
    color: #2c3e50;
    transform: scale(1.1);
}

.product-slider-wrapper {
    overflow: hidden;
    position: relative;
}
.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0px 20px 30px 20px;
    transition: transform 0.3s ease;
}

.product-slide-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
}

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

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.customize-btn {
    display: inline-block;
    background: #2188fb;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.customize-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #718096;
    font-style: italic;
}

/* Responsive Design for Product Slider */
@media (max-width: 1024px) {
    .product-slider-container {
        padding: 3rem 1.5rem;
    }
    
    .product-slider-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .product-slider-header h2 {
        font-size: 2rem;
    }
    
    .product-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-slider-container {
        padding: 2rem 1rem;
    }
    
    .product-slider-header h2 {
        font-size: 1.8rem;
    }
    
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-slider {
        grid-template-columns: 1fr;
    }
    
    .product-slider-header h2 {
        font-size: 1.5rem;
    }
    
    .shop-all-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Page-wide Color Scheme */
body {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    color: #374151;
    min-height: 100vh;
}

/* Primary Button Styling */
.btn-primary,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: linear-gradient(135deg, #2188FB 0%, #1a6dd5 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: linear-gradient(135deg, #1a6dd5 0%, #1560c2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 136, 251, 0.3);
    color: white;
}

/* Secondary Button Styling */
.btn-secondary {
    background: rgba(33, 136, 251, 0.1);
    color: #2188FB;
    border: 1px solid rgba(33, 136, 251, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(33, 136, 251, 0.15);
    border-color: rgba(33, 136, 251, 0.3);
    transform: translateY(-1px);
    color: #1a6dd5;
}

/* Link Styling */
a {
    color: #2188FB;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a6dd5;
}

/* UniQ Craft Blocks - Cohesive Design System */
.wpfsc-about-section,
.wpfsc-process-section,
.wpfsc-testimonial-slider,
.wpfsc-hero-banner {
    position: relative;
    margin: 0;
    padding: 4rem 0;
    transition: all 0.3s ease;
}

/* Consistent Container Styling */
.about-container,
.process-container,
.testimonial-container,
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Unified Color Scheme System */
/* Light Theme (Default) */
.wpfsc-about-section.light,
.wpfsc-testimonial-slider.light {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: #374151;
}

/* Dark Blue Theme */
.wpfsc-about-section.dark-blue,
.wpfsc-testimonial-slider.dark-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

/* Gradient Theme */
.wpfsc-about-section.gradient,
.wpfsc-testimonial-slider.gradient {
    background: linear-gradient(135deg, #2188FB 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
}

/* Coral Theme */
.wpfsc-about-section.coral,
.wpfsc-process-section.coral,
.wpfsc-testimonial-slider.coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
}

/* Blue Theme (Hero Default) */
.wpfsc-hero-banner.blue {
    background: linear-gradient(to right, #2188FB 0%, #1e7ae8 50%, #1a6dd5 100%);
    color: white;
}

/* Purple Theme */
.wpfsc-hero-banner.purple,
.wpfsc-process-section.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

/* Green Theme */
.wpfsc-about-section.green,
.wpfsc-testimonial-slider.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Consistent Typography for Dark Themes */
.wpfsc-about-section.dark-blue h1,
.wpfsc-about-section.dark-blue h2,
.wpfsc-about-section.dark-blue h3,
.wpfsc-about-section.gradient h1,
.wpfsc-about-section.gradient h2,
.wpfsc-about-section.gradient h3,
.wpfsc-about-section.coral h1,
.wpfsc-about-section.coral h2,
.wpfsc-about-section.coral h3,
.wpfsc-about-section.green h1,
.wpfsc-about-section.green h2,
.wpfsc-about-section.green h3,
.wpfsc-testimonial-slider.dark-blue h1,
.wpfsc-testimonial-slider.dark-blue h2,
.wpfsc-testimonial-slider.gradient h1,
.wpfsc-testimonial-slider.gradient h2,
.wpfsc-testimonial-slider.coral h1,
.wpfsc-testimonial-slider.coral h2,
.wpfsc-testimonial-slider.green h1,
.wpfsc-testimonial-slider.green h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wpfsc-about-section.dark-blue p,
.wpfsc-about-section.gradient p,
.wpfsc-about-section.coral p,
.wpfsc-about-section.green p,
.wpfsc-testimonial-slider.dark-blue p,
.wpfsc-testimonial-slider.gradient p,
.wpfsc-testimonial-slider.coral p,
.wpfsc-testimonial-slider.green p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Consistent Button Styling Across All Blocks */
.about-button,
.process-button,
.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Light theme buttons */
.wpfsc-about-section.light .about-button,
.wpfsc-testimonial-slider.light .about-button {
    background: #2188FB;
    color: white;
}

/* Dark theme buttons */
.wpfsc-about-section.dark-blue .about-button,
.wpfsc-about-section.gradient .about-button,
.wpfsc-about-section.coral .about-button,
.wpfsc-about-section.green .about-button,
.wpfsc-testimonial-slider.dark-blue .about-button,
.wpfsc-testimonial-slider.gradient .about-button,
.wpfsc-testimonial-slider.coral .about-button,
.wpfsc-testimonial-slider.green .about-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Button hover effects */
.about-button:hover,
.process-button:hover,
.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Consistent Grid Pattern Background */
.wpfsc-about-section::before,
.wpfsc-process-section::before,
.wpfsc-testimonial-slider::before,
.wpfsc-hero-banner::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="uniqGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23uniqGrid)"/></svg>'); */
    z-index: 0;
}

/* Enhanced Drag and Drop Support for All UniQ Craft Blocks */
.wp-block[data-type^="wpfsc/"],
.wp-block[data-type^="uniqcraftwear/"] {
    position: relative;
    transition: all 0.3s ease;
}

.wp-block[data-type^="wpfsc/"]:hover,
.wp-block[data-type^="uniqcraftwear/"]:hover {
    outline: 2px dashed #2188FB;
    outline-offset: 4px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 136, 251, 0.15);
}

.wp-block[data-type^="wpfsc/"] .block-editor-block-mover,
.wp-block[data-type^="uniqcraftwear/"] .block-editor-block-mover {
    background: linear-gradient(135deg, #2188FB, #1e7ae8);
    border-radius: 6px;
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(33, 136, 251, 0.3);
}

.wp-block[data-type^="wpfsc/"] .block-editor-block-mover:hover,
.wp-block[data-type^="uniqcraftwear/"] .block-editor-block-mover:hover {
    background: linear-gradient(135deg, #1e7ae8, #1a6dd5);
    transform: scale(1.05);
}

/* Block Toolbar Styling */
.wp-block[data-type^="wpfsc/"] .block-editor-block-toolbar,
.wp-block[data-type^="uniqcraftwear/"] .block-editor-block-toolbar {
    background: rgba(33, 136, 251, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(33, 136, 251, 0.2);
}

/* Block Selection Indicator */
.wp-block[data-type^="wpfsc/"].is-selected,
.wp-block[data-type^="uniqcraftwear/"].is-selected {
    outline: 3px solid #2188FB;
    outline-offset: 2px;
}

/* Block Inserter Button Styling */
.block-editor-inserter__menu .components-panel__body-title button[aria-expanded="true"] {
    background: linear-gradient(135deg, #2188FB, #1e7ae8);
    color: white;
}

/* Responsive Consistency */
@media (max-width: 768px) {
    .wpfsc-about-section,
    .wpfsc-process-section,
    .wpfsc-testimonial-slider {
        padding: 3rem 0;
    }
    
    .about-container,
    .process-container,
    .testimonial-container {
        padding: 0 1rem;
    }
}

/* Section Spacing for Homepage Flow */
.wpfsc-hero-banner + .wpfsc-about-section,
.wpfsc-about-section + .wpfsc-process-section,
.wpfsc-process-section + .wpfsc-testimonial-slider {
    margin-top: -2rem;
}

/* Alternating Section Styling for Visual Interest */
.wpfsc-about-section:nth-of-type(even) {
    transform: skewY(-1deg);
    margin: 2rem 0;
}

.wpfsc-about-section:nth-of-type(even) > * {
    transform: skewY(1deg);
}

.wpfsc-process-section:nth-of-type(odd) {
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
    padding: 6rem 0;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Header Styling - Clean & Modern */
.site-header {
    background: linear-gradient(to right, #2188FB 0%, #1e7ae8 50%, #1a6dd5 100%);
    box-shadow: 0 2px 20px rgba(33, 136, 251, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-main {
    padding: 0.8rem 0;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.main-menu > li {
    position: relative;
    flex-shrink: 0;
}

.main-menu > li > a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 0.7rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
}

.main-menu > li > a:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-1px);
}

.customize-menu-item .customize-now-btn {
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
padding: 0.7rem 1.2rem;
border-radius: 20px;
font-weight: 600;
font-size: 0.8rem;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.3rem;
white-space: nowrap;
}

.customize-menu-item .customize-now-btn:hover {
background: white;
color: #2188FB;
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item {
position: relative;
display: flex;
align-items: center;
    display: flex;
    align-items: center;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.left-menu a,
.right-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-link:hover,
.left-menu a:hover,
.right-menu a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Add underline effect on hover */
.left-menu a::after,
.right-menu a::after,
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.left-menu a:hover::after,
.right-menu a:hover::after,
.menu-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    width: 10px;
    height: 6px;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Submenu Hover Effect - Clean Implementation */
.dropdown-menu {
    /* Positioning */
    position: absolute;
    top: 100%;
    left: 0;
    
    /* Dimensions */
    min-width: 200px;
    width: max-content;
    max-width: 280px;
    min-height: 50px;
    
    /* Appearance */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    
    /* Content Spacing */
    padding: 0.8rem 0;
    
    /* Animation States */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    
    /* Transitions */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layering */
    z-index: 1000;
    
    /* Interaction */
    pointer-events: none;
}

/* Dropdown Menu Links Styling */
.dropdown-menu a,
.dropdown-menu li {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover{
    background-color: #f3f4f6;
    color: #2188FB;
    border-left-color: #2188FB;
    padding-left: 1.5rem;
}

/* Hover Bridge - Invisible area to prevent dropdown from closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Hover Trigger - CSS Only */
.has-dropdown:hover > .dropdown-menu , .dropdown-menu:hover , .dropdown-links:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Keep Menu Open When Hovering Over It */
.dropdown-menu:hover , .has-dropdown:hover > .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* JavaScript Enhanced Hover State */
.has-dropdown.dropdown-active > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Main Navigation Dropdown Positioning */
.main-navigation ul ul {
    /* Base Positioning */
    position: absolute;
    top: 100%;
    left: -20px;
    display: block;    
    /* Dimensions */
    min-width: 200px;
    width: max-content;
    max-width: 280px;
    
    /* Appearance */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    
    /* Animation States - Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    
    /* Transitions */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layering */
    z-index: 1000;
    
    /* Interaction */
    pointer-events: none;
    
    /* List Reset */
    list-style: none;
    padding: 0.8rem 0;
    margin: 0;
}

/* Hover Bridge for ul ul - Eliminates gap */
.main-navigation ul ul::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -20px;
    right: -20px;
    height: 10px;
    background: transparent;
    z-index: 999;
}

/* Comprehensive Hover System for Submenus */
.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Keep submenu visible when hovering over it */
.main-navigation ul ul:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Extended hover area for parent li to prevent flickering */
.main-navigation li.menu-item-has-children {
    position: relative;
}

.main-navigation li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 5px;
    background: transparent;
    z-index: 998;
}

/* Right-Aligned Dropdowns - Smart Positioning */
.main-menu > li:nth-last-child(-n+3) ul,
.main-menu > li:nth-last-child(-n+3) .dropdown-menu {
    left: auto;
    right: 0;
}

/* Center-Aligned for Middle Items */
.main-menu > li:nth-child(n+3):nth-last-child(n+4) ul,
.main-menu > li:nth-child(n+3):nth-last-child(n+4) .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.95);
}

.main-menu > li:nth-child(n+3):nth-last-child(n+4):hover ul,
.main-menu > li:nth-child(n+3):nth-last-child(n+4).dropdown-active ul {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Styling for ul ul links */
.main-navigation ul ul li {
    margin: 0;
    padding: 0;
}

.main-navigation ul ul a {
    /* Layout */
    display: block;
    padding: 0.75rem 1.25rem;
    
    /* Typography */
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    
    /* Interaction */
    transition: all 0.2s ease;
    position: relative;
    
    /* Visual */
    border-left: 3px solid transparent;
}

/* Hover State for ul ul links */
.main-navigation ul ul a:hover {
    background-color: #f3f4f6;
    color: #2188FB;
    border-left-color: #2188FB;
    padding-left: 1.5rem;
}

/* Focus State for ul ul links */
.main-navigation ul ul a:focus {
    outline: 2px solid #2188FB;
    outline-offset: -2px;
    background-color: #f3f4f6;
}

/* Dropdown Links Container */
.dropdown-links {
    list-style: none;
    padding: 0.8rem 0;
    margin: 0;
}

.dropdown-links li {
    margin: 0;
    padding: 0;
}

/* Dropdown Link Items */
.dropdown-links a {
    /* Layout */
    display: block;
    padding: 0.75rem 1.25rem;
    
    /* Typography */
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    
    /* Interaction */
    transition: all 0.2s ease;
    position: relative;
    
    /* Visual */
    border-left: 3px solid transparent;
}

/* Hover State */
.dropdown-links a:hover {
    background-color: #f3f4f6;
    color: #2188FB;
    border-left-color: #2188FB;
    padding-left: 1.5rem;
}

/* Active/Focus State */
.dropdown-links a:focus {
    outline: 2px solid #2188FB;
    outline-offset: -2px;
    background-color: #f3f4f6;
}

/* Logo Section - Clean & Professional */
.site-branding {
    flex: 0 0 auto;
    background: white;
    padding: 5px 15px 0 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    margin-bottom: -30px;
}

.site-branding:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.site-logo {
    height: 80px !important;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

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

/* Customize Now Button */
.customize-now-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.customize-now-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.customize-now-btn svg {
    transition: transform 0.3s ease;
}

.customize-now-btn:hover svg {
transform: rotate(15deg) scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header-icons a,
.search-toggle {
    color: white;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icons a:hover,
.search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Search Container */
.search-container {
position: relative;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    margin-top: 1rem;
}

.search-container.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    padding: 0;
}

.search-input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #2c3e50;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.search-field::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.search-submit {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2188FB 0%, #1a6dd5 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: linear-gradient(135deg, #1a6dd5 0%, #1560c2 100%);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2188FB;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Footer Styling - Matching Header Theme */
.site-footer { 
    background: #1f2937 !important; 
    margin-top: 0 !important; 
    padding-top: 3rem !important; 
  }

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.contact-item svg {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateX(3px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

/* Responsive Design for Header & Footer */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .left-menu,
    .right-menu {
        gap: 2rem;
    }
    
    .header-content {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .header-content {
        gap: 1rem;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .main-menu {
        gap: 0.1rem;
    }
    
    .main-menu > li > a {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .customize-menu-item .customize-now-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .header-icons {
        gap: 0.2rem;
    }
    
    .header-icons a,
    .search-toggle {
        padding: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .site-logo {
        height: 45px;
    }
    
    .site-branding {
        padding: 0.4rem 1rem;
    }
    
    .main-menu > li > a {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .customize-menu-item .customize-now-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #2188FB 0%, #1e7ae8 50%, #1a6dd5 100%);
        flex-direction: column;
        gap: 2rem;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 9998;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .header-right.mobile-menu-open {
        right: 0;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .main-menu > li {
        width: 100%;
    }
    
    .main-menu > li > a {
        padding: 1rem;
        font-size: 1rem;
        justify-content: space-between;
        width: 100%;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .header-icons {
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }
    
    /* Mobile Dropdown Styling */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0.5rem;
        left: auto !important;
        right: auto !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .dropdown-links a {
        color: white !important;
        padding: 0.8rem 1rem;
        border-left: 3px solid transparent !important;
        background: transparent !important;
    }
    
    .dropdown-links a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border-left-color: rgba(255, 255, 255, 0.3) !important;
        transform: none !important;
    }
    
    /* Mobile dropdown toggle states */
    .has-dropdown .dropdown-menu {
        max-height: 0;
        padding: 0;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .site-branding {
        padding: 0.3rem 0.8rem;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .main-menu > li {
        width: 100%;
    }
    
    .main-menu > li > a {
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
        border-radius: 8px;
    }
    
    .header-icons {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .header-icons a,
    .search-toggle {
        padding: 1rem;
    }
    
    .dropdown-menu {
        min-width: 100%;
        margin: 0.5rem 0;
    }
    
/* ========================================
   SHOP PAGE - FULL WIDTH IMPROVEMENTS
   ======================================== */

/* Full width shop page container */
.archive-product .site-main.full-width {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    margin: 0 auto;
}

/* Enhanced product grid for full width */
.archive-product .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Improved product cards */
.archive-product .product {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.archive-product .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product image improvements */
.archive-product .product img {
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.archive-product .product:hover img {
    transform: scale(1.05);
}

/* Product title styling */
.archive-product .product h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px;
    line-height: 1.3;
}

/* Price styling */
.archive-product .product .price {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
}

/* Button improvements */
.archive-product .product .button,
.archive-product .product .add_to_cart_button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.archive-product .product .button:hover,
.archive-product .product .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Shop page header improvements */
.archive-product .woocommerce-products-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.archive-product .woocommerce-products-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.archive-product .woocommerce-products-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Result count and ordering improvements */
.archive-product .woocommerce-result-count {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.archive-product .woocommerce-ordering {
    margin-bottom: 30px;
}

.archive-product .woocommerce-ordering select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Breadcrumb improvements */
.archive-product .woocommerce-breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.archive-product .woocommerce-breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-product .woocommerce-breadcrumb a:hover {
    color: #764ba2;
}

/* Pagination improvements */
.archive-product .woocommerce-pagination {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.archive-product .woocommerce-pagination .page-numbers {
    padding: 12px 18px;
    border: 2px solid #667eea;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-product .woocommerce-pagination .page-numbers:hover,
.archive-product .woocommerce-pagination .page-numbers.current {
    background: #667eea;
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .archive-product .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .archive-product .site-main.full-width {
        padding: 0 15px;
    }

    .archive-product .woocommerce-products-header h1 {
        font-size: 28px;
    }

    .archive-product .woocommerce-products-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .archive-product .products {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ========================================
   PRODUCT CATEGORY TABS
   ======================================== */

.product-category-tabs {
    margin-bottom: 40px;
}

.category-tabs-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    border: 1px solid #e1e1e1;
}

.category-tabs-wrapper {
    position: relative;
}

.category-tabs-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-tabs-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.category-tabs-scroll::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 2px;
}

.category-tab {
    flex: 0 0 auto;
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
}

.category-tab:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateY(-1px);
}

.category-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #667eea;
}

/* Mobile responsive tabs */
@media (max-width: 768px) {
    .category-tabs-scroll {
        gap: 10px;
        padding: 0 10px;
    }

    .category-tab {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
}

/* ========================================
   REMOVE ORANGE FROM CUSTOMIZE BUTTON
   ======================================== */

/* Override any orange colors from parent theme or WooCommerce */
.customize-btn,
.product .customize-btn,
.product-slide-item .customize-btn {
    background: #2c3e50 !important;
    color: #ffffff !important;
}

.customize-btn:hover,
.product .customize-btn:hover,
.product-slide-item .customize-btn:hover {
    background: #34495e !important;
    color: #ffffff !important;
}

/* Remove any orange from WooCommerce buttons */
button.button,
input.button,
a.button,
.button {
    background-color: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: #ffffff !important;
}

button.button:hover,
input.button:hover,
a.button:hover,
.button:hover {
    background-color: #34495e !important;
    border-color: #34495e !important;
    color: #ffffff !important;
}

/* Specific override for product customize buttons */
.products .button,
.products .add_to_cart_button,
.products .product .button,
.products .product .add_to_cart_button {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: #ffffff !important;
}

.products .button:hover,
.products .add_to_cart_button:hover,
.products .product .button:hover,
.products .product .add_to_cart_button:hover {
    background: #34495e !important;
    border-color: #34495e !important;
    color: #ffffff !important;
}

/* ========================================
   END CATEGORY TABS & BUTTON FIXES
   ======================================== */


}

/* ========================================
   ABOUT PAGE - PROFESSIONAL STYLING
   ======================================== */

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #e1e8f0;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #667eea;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content Container */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.about-content section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

/* Company Story Section */
.company-story {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    text-align: justify;
}

/* Mission & Vision Boxes */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission-box,
.vision-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.mission-box {
    border-left: 5px solid #667eea;
}

.vision-box {
    border-left: 5px solid #764ba2;
}

/* Company Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    color: #667eea;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Company Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -58px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-year {
    position: absolute;
    left: -100px;
    top: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Why Choose Us - Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature h4 {
    color: #667eea;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Company Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Call to Action Section */
.call-to-action {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e1e8f0;
}

.call-to-action h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 20px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 15px;
    }

    .timeline-item::before {
        left: -38px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 15px;
    }

    .company-story {
        padding: 30px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -28px;
    }
}

/* ========================================
   END ABOUT PAGE STYLING
   ======================================== */
}

.contact-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #b3e5fc;
}

.contact-hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero .hero-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 2px;
}

.contact-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

/* Contact Methods Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-link {
    display: block;
    margin: 8px 0;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Business Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-hours {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.location-hours h3 {
    color: #0ea5e9;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #1e293b;
}

.time {
    color: #64748b;
}

/* Response Times */
.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.response-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.response-item h4 {
    color: #0ea5e9;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 40px auto 0;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

/* Visit Us Section */
.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.location-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.location-card h3 {
    color: #0ea5e9;
    margin-bottom: 15px;
}

/* ========================================
   DESIGN EDITOR PAGE STYLING
   ======================================== */

/* Design Hero Section */
.design-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #e9d5ff;
}

.design-hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.design-hero .hero-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Design Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9d5ff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #7c3aed;
    margin-bottom: 15px;
}

/* Design Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9d5ff;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #7c3aed;
    margin-bottom: 15px;
}

/* Design Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability-category {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9d5ff;
}

.capability-category h3 {
    color: #7c3aed;
    margin-bottom: 20px;
    text-align: center;
}

.capability-category ul {
    list-style: none;
    padding: 0;
}

.capability-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f3e8ff;
    color: #64748b;
}

.capability-category li:last-child {
    border-bottom: none;
}

/* Design Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9d5ff;
    text-align: center;
}

.support-item h3 {
    color: #7c3aed;
    margin-bottom: 15px;
}

.support-link {
    display: inline-block;
    margin-top: 15px;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #6d28d9;
    text-decoration: underline;
}

/* Design Benefits */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9d5ff;
}

.benefit h4 {
    color: #7c3aed;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Design CTA */
.design-cta {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9d5ff;
    margin-top: 40px;
}

.design-cta h2 {
    font-size: 32px;
    color: #7c3aed;
    margin-bottom: 20px;
}

.design-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   COMPANY MERCHANDISE PAGE STYLING
   ======================================== */

/* Company Merch Hero */
.company-merch-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #bbf7d0;
}

.company-merch-hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-merch-hero .hero-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Corporate Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #bbf7d0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: #16a34a;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Corporate Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #bbf7d0;
    text-align: center;
}

.benefit-item h4 {
    color: #16a34a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Corporate Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #bbf7d0;
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #16a34a;
    margin-bottom: 15px;
}

/* Corporate Products Showcase */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-category {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #bbf7d0;
}

.product-category h3 {
    color: #16a34a;
    margin-bottom: 20px;
    text-align: center;
}

.product-category ul {
    list-style: none;
    padding: 0;
}

.product-category li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #f0fdf4;
}

.product-category li:last-child {
    border-bottom: none;
}

/* Corporate Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-tier {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #bbf7d0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-tier.featured {
    border-color: #16a34a;
    transform: scale(1.05);
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-tier h3 {
    color: #16a34a;
    margin-bottom: 15px;
    font-size: 24px;
}

.order-minimum {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-tier li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
}

.pricing-tier li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Corporate Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #bbf7d0;
    position: relative;
}

.testimonial blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 48px;
    color: #16a34a;
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial cite {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    font-style: normal;
}

/* Corporate CTA */
.corporate-cta {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #bbf7d0;
    margin-top: 40px;
}

.corporate-cta h2 {
    font-size: 32px;
    color: #16a34a;
    margin-bottom: 20px;
}

.corporate-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE DESIGN FOR ALL NEW PAGES
   ======================================== */

@media (max-width: 768px) {
    .contact-hero h2,
    .design-hero h2,
    .company-merch-hero h2 {
        font-size: 32px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps,
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-tier.featured {
        transform: none;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-content,
    .design-content,
    .company-merch-content {
        padding: 0 15px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-hero,
    .design-hero,
    .company-merch-hero {
        padding: 40px 0;
    }

    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }
}

/* ========================================
   END PAGE STYLING
   ======================================== */
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.content-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.content-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Enhanced Card Animations */
.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Location Cards */
.location-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card:hover::before {
    transform: scale(1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.location-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.location-card p {
    margin: 10px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.location-card strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Contact Methods */
.contact-method {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover::after {
    opacity: 1;
}

.contact-method:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.method-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-method:hover h3 {
    color: #667eea;
}

.contact-method p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin: 8px 5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Enhanced Business Hours */
.location-hours {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.location-hours::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: transform 0.3s ease;
}

.location-hours:hover::before {
    transform: translate(20px, -20px) scale(1.2);
}

.location-hours:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.location-hours h3 {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hours-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 15px;
    border-radius: 8px;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.time {
    color: #667eea;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
}

/* Enhanced Response Times */
.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.response-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.response-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0ea5e9, #0284c7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-item:hover::before {
    opacity: 1;
}

.response-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.response-item h4 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.response-item:hover h4 {
    color: #0284c7;
}

.response-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Enhanced Visit Us Section */
.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.location-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card-enhanced:hover::before {
    transform: scale(1);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.location-card-enhanced h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location-card-enhanced p {
    margin: 15px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========================================
   END ENHANCED CONTENT STYLING
   ======================================== */
}

    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card:hover::before {
    transform: scale(1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.location-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.location-card p {
    margin: 10px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.location-card strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Contact Methods */
.contact-method {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover::after {
    opacity: 1;
}

.contact-method:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.method-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-method:hover h3 {
    color: #667eea;
}

.contact-method p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin: 8px 5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Enhanced Business Hours */
.location-hours {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.location-hours::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: transform 0.3s ease;
}

.location-hours:hover::before {
    transform: translate(20px, -20px) scale(1.2);
}

.location-hours:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.location-hours h3 {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hours-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 15px;
    border-radius: 8px;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.time {
    color: #667eea;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
}

/* Enhanced Response Times */
.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.response-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.response-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0ea5e9, #0284c7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-item:hover::before {
    opacity: 1;
}

.response-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.response-item h4 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.response-item:hover h4 {
    color: #0284c7;
}

.response-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Enhanced Visit Us Section */
.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.location-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card-enhanced:hover::before {
    transform: scale(1);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.location-card-enhanced h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location-card-enhanced p {
    margin: 15px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========================================
   END ENHANCED CONTENT STYLING
   ======================================== */
}

    border-radius: 8px;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.time {
    color: #667eea;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
}

/* Enhanced Response Times */
.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.response-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.response-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0ea5e9, #0284c7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-item:hover::before {
    opacity: 1;
}

.response-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.response-item h4 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.response-item:hover h4 {
    color: #0284c7;
}

.response-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Enhanced Visit Us Section */
.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.location-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card-enhanced:hover::before {
    transform: scale(1);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.location-card-enhanced h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location-card-enhanced p {
    margin: 15px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========================================
   END ENHANCED CONTENT STYLING
   ======================================== */
}

    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0ea5e9, #0284c7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-item:hover::before {
    opacity: 1;
}

.response-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.response-item h4 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.response-item:hover h4 {
    color: #0284c7;
}

.response-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Enhanced Visit Us Section */
.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.location-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.location-card-enhanced:hover::before {
    transform: scale(1);
}

.location-card-enhanced:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.location-card-enhanced h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location-card-enhanced p {
    margin: 15px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========================================
   END ENHANCED CONTENT STYLING
   ======================================== */
}

    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========================================
   END ENHANCED CONTENT STYLING
   ======================================== */
}

        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

}

.location-card-enhanced p {
    margin: 15px 0;
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.location-card-enhanced strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Page Elements */
.company-story {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 2px solid #667eea;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.company-story:hover::before {
    transform: scale(1) rotate(180deg);
}

.company-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.vision-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    border-image: linear-gradient(135deg, #764ba2, #667eea) 1;
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover::after,
.vision-box:hover::after {
    opacity: 1;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Enhanced Timeline */
.timeline-item {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px #667eea, 0 0 0 8px rgba(102, 126, 234, 0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 4px #667eea, 0 0 0 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.timeline-content h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #764ba2;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Features Grid */
.features-grid,
.services-grid,
.benefits-grid,
.products-showcase,
.testimonials-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature,
.service-card,
.benefit-item,
.product-category,
.testimonial {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature::before,
.service-card::before,
.benefit-item::before,
.product-category::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.6s ease;
}

.feature:hover::before,
.service-card:hover::before,
.benefit-item:hover::before,
.product-category:hover::before,
.testimonial:hover::before {
    transform: scale(1) rotate(180deg);
}

.feature:hover,
.service-card:hover,
.benefit-item:hover,
.product-category:hover,
.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.feature h4,
.service-card h3,
.benefit-item h4,
.product-category h3,
.testimonial blockquote {
    color: #667eea;
    transition: color 0.3s ease;
}

.feature:hover h4,
.service-card:hover h3,
.benefit-item:hover h4,
.product-category:hover h3 {
    color: #764ba2;
}

/* Enhanced CTA Sections */
.call-to-action,
.corporate-cta,
.design-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border: 3px solid #667eea;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.call-to-action::before,
.corporate-cta::before,
.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: scale(0) rotate(0deg);
    transition: transform 0.8s ease;
}

.call-to-action:hover::before,
.corporate-cta:hover::before,
.design-cta:hover::before {
    transform: scale(1) rotate(180deg);
}

.call-to-action:hover,
.corporate-cta:hover,
.design-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: #764ba2;
}

.call-to-action h2,
.corporate-cta h2,
.design-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.call-to-action:hover h2,
.corporate-cta:hover h2,
.design-cta:hover h2 {
    color: #764ba2;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}
body .woocommerce .products .product .lumise-list-button, body.woocommerce .products .product .lumise-list-button
{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: 3px solid #667eea !important;
    border-radius: 30px !important;
    padding: 20px 30px !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}
body.archive.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering,
body.archive.tax-product_cat .products .woocommerce-ordering,
body.post-type-archive-product .products .woocommerce-ordering {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; */
    border: 3px solid #667eea !important;
    border-radius: 30px !important;
    /* padding: 20px 30px !important; */
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

body.archive.tax-product_cat .woocommerce-ordering::before,
body.post-type-archive-product .woocommerce-ordering::before,
body.archive.tax-product_cat .products .woocommerce-ordering::before,
body.post-type-archive-product .products .woocommerce-ordering::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%) !important;
    transform: scale(0) rotate(0deg) !important;
    transition: transform 0.8s ease !important;
}

body.archive.tax-product_cat .woocommerce-ordering:hover::before,
body.post-type-archive-product .woocommerce-ordering:hover::before,
body.archive.tax-product_cat .products .woocommerce-ordering:hover::before,
body.post-type-archive-product .products .woocommerce-ordering:hover::before {
    transform: scale(1) rotate(180deg) !important;
}

/* WooCommerce Ordering Label - Enhanced */
body.archive.tax-product_cat .woocommerce-ordering label,
body.post-type-archive-product .woocommerce-ordering label,
body.archive.tax-product_cat .products .woocommerce-ordering label,
body.post-type-archive-product .products .woocommerce-ordering label {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* WooCommerce Ordering Select Element - Premium Styling */
body.archive.tax-product_cat .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select,
body.archive.tax-product_cat .products .woocommerce-ordering select,
body.post-type-archive-product .products .woocommerce-ordering select {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%) !important;
    border: 2px solid #e8f2ff !important;
    border-radius: 25px !important;
    padding: 15px 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #667eea !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    min-width: 200px !important;
    box-shadow:
        0 6px 20px rgba(102, 126, 234, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.8) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 20px !important;
    padding-right: 45px !important;
}

body.archive.tax-product_cat .woocommerce-ordering select:hover,
body.post-type-archive-product .woocommerce-ordering select:hover,
body.archive.tax-product_cat .products .woocommerce-ordering select:hover,
body.post-type-archive-product .products .woocommerce-ordering select:hover {
    border-color: #764ba2 !important;
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
}

body.archive.tax-product_cat .woocommerce-ordering select:focus,
body.post-type-archive-product .woocommerce-ordering select:focus,
body.archive.tax-product_cat .products .woocommerce-ordering select:focus,
body.post-type-archive-product .products .woocommerce-ordering select:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow:
        0 0 0 4px rgba(102, 126, 234, 0.2),
        0 8px 25px rgba(102, 126, 234, 0.25),
        inset 0 3px 0 rgba(255, 255, 255, 0.9) !important;
    background-color: #ffffff !important;
}

/* WooCommerce Ordering Select Options - Premium Styling */
body.archive.tax-product_cat .woocommerce-ordering select option,
body.post-type-archive-product .woocommerce-ordering select option,
body.archive.tax-product_cat .products .woocommerce-ordering select option,
body.post-type-archive-product .products .woocommerce-ordering select option {
    background: #ffffff !important;
    color: #374151 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e8f2ff !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:hover,
body.post-type-archive-product .woocommerce-ordering select option:hover,
body.archive.tax-product_cat .products .woocommerce-ordering select option:hover,
body.post-type-archive-product .products .woocommerce-ordering select option:hover {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%) !important;
    color: #667eea !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:selected,
body.post-type-archive-product .woocommerce-ordering select option:selected,
body.archive.tax-product_cat .products .woocommerce-ordering select option:selected,
body.post-type-archive-product .products .woocommerce-ordering select option:selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Enhanced WooCommerce Ordering Container */
body.archive.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering {
    position: relative !important;
    z-index: 10 !important;
}

/* Mobile Responsive WooCommerce Ordering - Enhanced */
@media (max-width: 768px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 18px 25px !important;
        border-radius: 25px !important;
        margin-bottom: 25px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 15px !important;
        min-width: 180px !important;
        padding: 12px 20px !important;
        border-radius: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 15px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 14px !important;
        min-width: 160px !important;
        padding: 10px 18px !important;
        border-radius: 18px !important;
        padding-right: 40px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 12px !important;
    }
}

    color: #667eea;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .content-grid,
    .content-grid-2,
    .content-grid-3,
    .content-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid,
    .features-grid,
    .services-grid,
    .benefits-grid,
    .products-showcase,
    .testimonials-grid,
    .locations-preview,
    .hours-grid,
    .response-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 25px;
    }

    .method-icon {
        font-size: 48px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 25px;
    }

    .company-story {
        padding: 35px 25px;
    }

    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .contact-method,
    .location-hours,
    .response-item,
    .feature,
    .service-card,
    .benefit-item,
    .product-category,
    .testimonial {
        padding: 20px;
        border-radius: 15px;
    }

    .location-card,
    .location-card-enhanced {
        padding: 20px;
    }

    .company-story {
        padding: 25px 20px;
    }

    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }

    .call-to-action,
    .corporate-cta,
    .design-cta {
        padding: 40px 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

/* ========================================
   WOOCOMMERCE ORDERING SELECT - COMPREHENSIVE STYLING
   ======================================== */

/* WooCommerce Ordering Select Container - Enhanced */
body.archive.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering,
body.archive.tax-product_cat .products .woocommerce-ordering,
body.post-type-archive-product .products .woocommerce-ordering {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; */
    border: 3px solid #667eea !important;
    border-radius: 30px !important;
    /* padding: 20px 30px !important; */
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

body.archive.tax-product_cat .woocommerce-ordering::before,
body.post-type-archive-product .woocommerce-ordering::before,
body.archive.tax-product_cat .products .woocommerce-ordering::before,
body.post-type-archive-product .products .woocommerce-ordering::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%) !important;
    transform: scale(0) rotate(0deg) !important;
    transition: transform 0.8s ease !important;
}

body.archive.tax-product_cat .woocommerce-ordering:hover::before,
body.post-type-archive-product .woocommerce-ordering:hover::before,
body.archive.tax-product_cat .products .woocommerce-ordering:hover::before,
body.post-type-archive-product .products .woocommerce-ordering:hover::before {
    transform: scale(1) rotate(180deg) !important;
}

/* WooCommerce Ordering Label - Enhanced */
body.archive.tax-product_cat .woocommerce-ordering label,
body.post-type-archive-product .woocommerce-ordering label,
body.archive.tax-product_cat .products .woocommerce-ordering label,
body.post-type-archive-product .products .woocommerce-ordering label {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* WooCommerce Ordering Select Element - Premium Styling */
body.archive.tax-product_cat .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select,
body.archive.tax-product_cat .products .woocommerce-ordering select,
body.post-type-archive-product .products .woocommerce-ordering select {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%) !important;
    border: 2px solid #e8f2ff !important;
    border-radius: 25px !important;
    padding: 15px 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #667eea !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    min-width: 200px !important;
    box-shadow:
        0 6px 20px rgba(102, 126, 234, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.8) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 20px !important;
    padding-right: 45px !important;
}

body.archive.tax-product_cat .woocommerce-ordering select:hover,
body.post-type-archive-product .woocommerce-ordering select:hover,
body.archive.tax-product_cat .products .woocommerce-ordering select:hover,
body.post-type-archive-product .products .woocommerce-ordering select:hover {
    border-color: #764ba2 !important;
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
}

body.archive.tax-product_cat .woocommerce-ordering select:focus,
body.post-type-archive-product .woocommerce-ordering select:focus,
body.archive.tax-product_cat .products .woocommerce-ordering select:focus,
body.post-type-archive-product .products .woocommerce-ordering select:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow:
        0 0 0 4px rgba(102, 126, 234, 0.2),
        0 8px 25px rgba(102, 126, 234, 0.25),
        inset 0 3px 0 rgba(255, 255, 255, 0.9) !important;
    background-color: #ffffff !important;
}

/* WooCommerce Ordering Select Options - Premium Styling */
body.archive.tax-product_cat .woocommerce-ordering select option,
body.post-type-archive-product .woocommerce-ordering select option,
body.archive.tax-product_cat .products .woocommerce-ordering select option,
body.post-type-archive-product .products .woocommerce-ordering select option {
    background: #ffffff !important;
    color: #374151 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e8f2ff !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:hover,
body.post-type-archive-product .woocommerce-ordering select option:hover,
body.archive.tax-product_cat .products .woocommerce-ordering select option:hover,
body.post-type-archive-product .products .woocommerce-ordering select option:hover {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%) !important;
    color: #667eea !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:selected,
body.post-type-archive-product .woocommerce-ordering select option:selected,
body.archive.tax-product_cat .products .woocommerce-ordering select option:selected,
body.post-type-archive-product .products .woocommerce-ordering select option:selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Enhanced WooCommerce Ordering Container */
body.archive.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering {
    position: relative !important;
    z-index: 10 !important;
}

/* Mobile Responsive WooCommerce Ordering - Enhanced */
@media (max-width: 768px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 18px 25px !important;
        border-radius: 25px !important;
        margin-bottom: 25px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 15px !important;
        min-width: 180px !important;
        padding: 12px 20px !important;
        border-radius: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 15px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 14px !important;
        min-width: 160px !important;
        padding: 10px 18px !important;
        border-radius: 18px !important;
        padding-right: 40px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 12px !important;
    }
}

    box-shadow:
        0 0 0 4px rgba(102, 126, 234, 0.2),
        0 8px 25px rgba(102, 126, 234, 0.25),
        inset 0 3px 0 rgba(255, 255, 255, 0.9) !important;
    background-color: #ffffff !important;
}

/* WooCommerce Ordering Select Options - Premium Styling */
body.archive.tax-product_cat .woocommerce-ordering select option,
body.post-type-archive-product .woocommerce-ordering select option,
body.archive.tax-product_cat .products .woocommerce-ordering select option,
body.post-type-archive-product .products .woocommerce-ordering select option {
    background: #ffffff !important;
    color: #374151 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e8f2ff !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:hover,
body.post-type-archive-product .woocommerce-ordering select option:hover,
body.archive.tax-product_cat .products .woocommerce-ordering select option:hover,
body.post-type-archive-product .products .woocommerce-ordering select option:hover {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%) !important;
    color: #667eea !important;
}

body.archive.tax-product_cat .woocommerce-ordering select option:selected,
body.post-type-archive-product .woocommerce-ordering select option:selected,
body.archive.tax-product_cat .products .woocommerce-ordering select option:selected,
body.post-type-archive-product .products .woocommerce-ordering select option:selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Enhanced WooCommerce Ordering Container */
body.archive.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering {
    position: relative !important;
    z-index: 10 !important;
}

/* Mobile Responsive WooCommerce Ordering - Enhanced */
@media (max-width: 768px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 18px 25px !important;
        border-radius: 25px !important;
        margin-bottom: 25px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 15px !important;
        min-width: 180px !important;
        padding: 12px 20px !important;
        border-radius: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    body.archive.tax-product_cat .woocommerce-ordering,
    body.post-type-archive-product .woocommerce-ordering,
    body.archive.tax-product_cat .products .woocommerce-ordering,
    body.post-type-archive-product .products .woocommerce-ordering {
        padding: 15px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering select,
    body.post-type-archive-product .woocommerce-ordering select,
    body.archive.tax-product_cat .products .woocommerce-ordering select,
    body.post-type-archive-product .products .woocommerce-ordering select {
        font-size: 14px !important;
        min-width: 160px !important;
        padding: 10px 18px !important;
        border-radius: 18px !important;
        padding-right: 40px !important;
    }

    body.archive.tax-product_cat .woocommerce-ordering label,
    body.post-type-archive-product .woocommerce-ordering label,
    body.archive.tax-product_cat .products .woocommerce-ordering label,
    body.post-type-archive-product .products .woocommerce-ordering label {
        font-size: 12px !important;
    }
}

        padding: 30px 15px;
    }
}
