/* ============================================
   ELECTRO THEME - PWC Wristband - MASTER STYLESHEET
   Version: 6.0 (Slider FINAL FIXED)
   Colors: Primary Orange (#E03E12), Secondary Blue (#0e8cf1)
   ============================================ */

/* ---------- CSS Reset & Base Styles ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

/* ---------- Utility Classes ---------- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Title with Underline */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #E03E12;
}

.section-title.text-center {
    text-align: center;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   Top Header Styles
   ============================================ */
.top-header {
    background-color: #ffffff;
    color: #64748b;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left span,
.top-right span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-left i,
.top-right i {
    color: #E03E12;
    font-size: 12px;
}

/* ============================================
   Main Header Styles
   ============================================ */
.main-header {
    background-color: #ffffff;
    padding: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.main-header .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Logo Area - 1:1 Ratio */
.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-link:hover {
    box-shadow: 0 4px 15px rgba(224, 62, 18, 0.2);
    transform: translateY(-2px);
}

.logo-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
}

/* Search Area */
.search-area {
    flex: 1.2;
    max-width: 700px;
    min-width: 350px;
    position: relative;
    z-index: 1001;
}

.search-input {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.search-input:focus-within {
    border-color: #E03E12;
    box-shadow: 0 4px 20px rgba(224, 62, 18, 0.15);
}

.search-input input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-input input::placeholder {
    color: #94a3b8;
    font-size: 15px;
}

.search-input button {
    padding: 0 32px;
    background-color: transparent;
    border: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.search-input button:hover {
    color: #E03E12;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8fafc;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.search-result-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.search-result-info p {
    font-size: 13px;
    color: #64748b;
}

.search-result-info .category {
    font-size: 12px;
    color: #E03E12;
    font-weight: 500;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #64748b;
}

.search-result-item.view-all-item {
    background-color: #fff7f5;
    border-top: 2px solid #E03E12;
}

.search-result-item.view-all-item:hover {
    background-color: #E03E12;
}

.search-result-item.view-all-item:hover h4,
.search-result-item.view-all-item:hover p {
    color: #ffffff;
}

/* Header Support Section */
.header-support {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
    margin-left: auto;
    border-left: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.header-support:hover {
    border-left-color: #E03E12;
}

.support-icon i {
    font-size: 38px;
    color: #E03E12;
    transition: transform 0.3s ease;
}

.header-support:hover .support-icon i {
    transform: scale(1.05);
}

.support-info {
    display: flex;
    flex-direction: column;
}

.support-info span {
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.3px;
}

.support-info strong {
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
}

.support-info strong a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.support-info strong a:hover {
    color: #E03E12;
}

/* ============================================
   Navigation Bar Styles
   ============================================ */
.nav-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Main Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #E03E12;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 10px 20px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-content a i {
    width: 20px;
    text-align: center;
    color: #E03E12;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #fff7f5;
    color: #E03E12;
    padding-left: 25px;
}

/* Navigation Offer Badges */
.nav-offer {
    display: flex;
    gap: 15px;
}

.nav-offer span {
    color: #475569;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-deal i {
    color: #E03E12;
}

.top-100 i {
    color: #0e8cf1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
}

/* ============================================
   Mobile Menu Styles
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.close-mobile-menu {
    background-color: transparent;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 20px;
}

.mobile-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-accordion {
    width: 100%;
    padding: 15px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-accordion i {
    transition: transform 0.3s;
}

.mobile-panel {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    flex-direction: column;
    gap: 10px;
}

.mobile-panel.active {
    display: flex;
}

.mobile-panel a {
    padding: 10px 15px;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-panel a i {
    width: 20px;
    color: #E03E12;
    font-size: 14px;
}

.mobile-panel a:last-child {
    border-bottom: none;
}

.mobile-link {
    padding: 15px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
}

.mobile-link.active {
    background-color: #E03E12;
    color: #ffffff;
    border-color: #E03E12;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ============================================
   HERO SLIDER - FINAL FIXED VERSION
   ============================================ */
.hero-slider {
    padding: 30px 0 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    background: #f0f0f0;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: white;
    transform: scale(1.2);
}

.dot.active {
    background-color: #E03E12;
    width: 24px;
    border-radius: 12px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    .slide img {
        max-height: 400px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .slide img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        padding: 15px 0 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slide img {
        max-height: 300px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .slide img {
        max-height: 250px;
    }
    
    .slider-dots {
        bottom: 10px;
        padding: 4px 10px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 16px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 10px;
    }
    
    .slide img {
        max-height: 200px;
    }
}

/* Loading Animation */
.slide {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   Promo Banners Styles
   ============================================ */
.promo-banners {
    padding: 20px 0 40px;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.banner-item {
    display: flex;
    align-items: center;
    padding: 35px 40px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.banner-orange {
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
}

.banner-blue {
    background: linear-gradient(145deg, #f0f9ff, #e6f3fe);
}

.banner-content {
    flex: 1;
}

.banner-content h4 {
    color: #E03E12;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-content h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.discount {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #0e8cf1;
    margin-bottom: 20px;
}

.banner-content a {
    color: #E03E12;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    padding: 8px 0;
}

.banner-content a:hover {
    gap: 10px;
}

.banner-image {
    flex: 0 0 auto;
}

.banner-image img {
    width: 200px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    display: block;
}

.banner-item:hover .banner-image img {
    transform: scale(1.05);
}

/* ============================================
   Product Tabs & Grid Styles
   ============================================ */
.product-tabs-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.tabs-header h2 {
    font-size: 28px;
    color: #0f172a;
    font-weight: 700;
}

.tabs-nav {
    display: flex;
    gap: 12px;
}

.tab-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background-color: #E03E12;
    border-color: #E03E12;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-color: #E03E12;
    transform: translateY(-4px);
}

.product-card .image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8fafc;
    border-radius: 8px;
}

.product-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .image-container img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 16px;
    color: #0f172a;
    margin: 15px 0 10px;
    font-weight: 600;
    line-height: 1.4;
}

/* Rating Stars */
.rating {
    color: #ffb800;
    margin-bottom: 12px;
    font-size: 13px;
}

.rating span {
    color: #64748b;
    margin-left: 5px;
}

/* ============================================
   WhatsApp Button - FIXED
   ============================================ */
.whatsapp-btn {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    transition: all 0.3s ease;
    margin: 8px 0;
    text-decoration: none;
    line-height: 1.2;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 16px;
    color: #ffffff;
}

/* Large WhatsApp Button (For Product Detail Page) */
.whatsapp-large-btn {
    background-color: #25D366;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 350px;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    line-height: 1.2;
}

.whatsapp-large-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-large-btn i {
    font-size: 1.4rem;
    color: #ffffff;
}

/* ============================================
   View All Link - FIXED
   ============================================ */
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #E03E12;
    text-decoration: none;
    font-size: 12px;
    margin-top: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.category-link:hover {
    color: #E03E12;
    text-decoration: underline;
    transform: translateX(3px);
}

.category-link i {
    font-size: 10px;
    color: #E03E12;
}

/* ============================================
   Why Choose Section - FEATURES LIST - FIXED
   ============================================ */
.features-list {
    margin: 25px 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    border-color: #E03E12;
    box-shadow: 0 5px 15px rgba(224, 62, 18, 0.08);
    transform: translateY(-3px);
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-title i {
    color: #E03E12;
    font-size: 22px;
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-title strong {
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
}

.feature-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 44px;
}

/* Promo Badge */
.promo-badge {
    margin-top: 30px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    border-radius: 12px;
    border-left: 4px solid #E03E12;
}

.discount-tag {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #E03E12;
    margin-bottom: 5px;
}

.terms {
    font-size: 14px;
    color: #64748b;
}

/* ============================================
   Category Description (for Product Pages)
   ============================================ */
.category-description {
    padding: 60px 0;
    background-color: #ffffff;
}

.description-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: #f8fafc;
    border-radius: 24px;
    padding: 50px;
}

.description-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.description-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E03E12;
}

.description-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.description-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

/* ============================================
   Video Banner Section
   ============================================ */
.video-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.video-banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-banner-content h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.video-banner-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #E03E12;
    border-radius: 2px;
}

.video-banner-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.video-stats .stat {
    text-align: center;
}

.video-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #E03E12;
    margin-bottom: 5px;
}

.video-stats .stat-label {
    font-size: 14px;
    color: #475569;
}

.video-banner-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.video-banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(224, 62, 18, 0.2);
}

.video-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Brands Slider Section
   ============================================ */
.brands-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.brands-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 40s linear infinite;
    will-change: transform;
}

.brands-slider:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 15px;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.brand-item img {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 90px;
    min-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(224, 62, 18, 0.15);
    transform: translateY(-8px);
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 26 - 30px * 26));
    }
}

/* ============================================
   Solution Pages Styles
   ============================================ */
.solution-hero {
    padding: 60px 0;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    border-radius: 24px;
    margin: 40px 0;
}

.solution-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-hero-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-hero-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.solution-hero .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.solution-hero .btn-primary,
.solution-hero .btn-demo {
    background-color: #E03E12;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(224, 62, 18, 0.3);
}

.solution-hero .btn-primary:hover,
.solution-hero .btn-demo:hover {
    background-color: #b8320e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 62, 18, 0.4);
}

.solution-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ============================================
   Solution Gallery
   ============================================ */
.solution-gallery {
    padding: 60px 0;
    background-color: #f8fafc;
}

.solution-gallery h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.solution-gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #E03E12;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 62, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 40px;
    text-align: center;
    max-width: 90%;
}

/* ============================================
   Time Management System Component Cards
   ============================================ */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.component-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.component-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 62, 18, 0.08);
    border-color: #E03E12;
}

.component-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.component-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.component-icon i {
    font-size: 22px;
    color: #E03E12;
}

.component-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.component-card p {
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 14px;
}

.component-badge {
    display: inline-block;
    background-color: #f1f5f9;
    color: #475569;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

.component-badge.optional {
    background-color: #fff1ed;
    color: #E03E12;
}

.component-badge.must-have {
    background-color: #E03E12;
    color: #ffffff;
}

/* ============================================
   Product Detail Page Styles
   ============================================ */
.product-detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-container {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 500px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-images .thumb-container {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    padding: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-images .thumb-container:hover,
.thumbnail-images .thumb-container.active {
    border-color: #E03E12;
    transform: translateY(-3px);
}

.thumbnail-images .thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-detail {
    padding: 20px 0;
}

.product-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category {
    background-color: #f1f5f9;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.sku {
    color: #64748b;
    font-size: 14px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-rating .stars {
    color: #ffb800;
    font-size: 16px;
}

.rating-count {
    color: #64748b;
    font-size: 14px;
}

.product-availability {
    background-color: #f0fdf4;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-availability i {
    color: #10b981;
    font-size: 20px;
}

/* Product Tabs */
.product-tabs-detail {
    margin-top: 40px;
}

.tabs-header-detail {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-link-detail {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-link-detail:hover {
    color: #E03E12;
}

.tab-link-detail.active {
    color: #E03E12;
}

.tab-link-detail.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E03E12;
}

.tab-content-detail {
    display: none;
    padding: 30px 0;
}

.tab-content-detail.active {
    display: block;
}

.description-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.description-content p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

/* Specifications Table */
.specs-table {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 30px;
}

.specs-table h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.specs-table h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E03E12;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #0f172a;
    width: 30%;
}

/* Reviews Section */
.reviews-summary {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.average-rating .big-rating {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    display: block;
    margin-bottom: 10px;
}

.review-list {
    margin-bottom: 40px;
}

.review-item {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.review-item strong {
    font-size: 16px;
    color: #0f172a;
    display: block;
    margin-bottom: 10px;
}

.review-item .stars {
    color: #ffb800;
    margin-bottom: 15px;
}

.review-item p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

.review-item small {
    color: #94a3b8;
    font-size: 13px;
}

/* Share Buttons */
.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.product-share h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.pinterest {
    background-color: #bd081c;
}

.share-btn.email {
    background-color: #6c757d;
}

.share-note {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
}

/* ============================================
   Breadcrumb Styles
   ============================================ */
.breadcrumb {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #E03E12;
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
    color: #94a3b8;
}

.breadcrumb span {
    color: #0f172a;
    font-weight: 500;
}

/* ============================================
   Page Header Styles
   ============================================ */
.page-header {
    padding: 50px 0;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-header {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #E03E12;
}

.about-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 18px;
    color: #475569;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.stat-item {
    background-color: #ffffff;
    padding: 15px 8px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border: 1px solid #eeeeee;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 62, 18, 0.08);
    border-color: #E03E12;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #E03E12;
    font-size: 18px;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2px;
    line-height: 1.2;
}

.stat-number strong {
    font-weight: 800;
    color: #E03E12;
}

.stat-label {
    color: #666666;
    font-size: 11px;
    line-height: 1.3;
    max-width: 90px;
    margin: 0 auto;
}

/* Company Description */
.company-desc {
    padding: 60px 0;
    background-color: #ffffff;
}

.desc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.desc-col {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.desc-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 62, 18, 0.1);
}

.desc-col h2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.desc-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #E03E12;
}

.desc-col p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.desc-col h2:first-of-type {
    margin-top: 0;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.industry-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 62, 18, 0.1);
    border-color: #E03E12;
}

.industry-item i {
    color: #E03E12;
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.industry-item span {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}

/* Polaroid Stories */
.polaroid-stories {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.polaroid-stories::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 62, 18, 0.03) 0%, transparent 70%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.polaroid-wall {
    position: relative;
    height: 750px;
    max-width: 1200px;
    margin: 0 auto;
}

.polaroid {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

.polaroid:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 100;
    filter: drop-shadow(0 25px 35px rgba(224, 62, 18, 0.4));
}

.polaroid-inner {
    background-color: #ffffff;
    padding: 18px 18px 35px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: 240px;
    position: relative;
    transition: all 0.3s;
}

.polaroid-inner::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 16px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.polaroid:hover .polaroid-inner::after {
    opacity: 1;
}

.polaroid-inner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.polaroid:hover .polaroid-inner img {
    transform: scale(1.02);
}

.caption {
    text-align: center;
    font-family: 'Courier New', monospace;
}

.caption strong {
    display: block;
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.caption span {
    display: inline-block;
    font-size: 12px;
    color: #E03E12;
    font-weight: 600;
    background-color: rgba(224, 62, 18, 0.1);
    padding: 3px 10px;
    border-radius: 30px;
}

.polaroid-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 4px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.polaroid-tag.pakistan {
    background-color: #01411C;
    color: #ffffff;
}

.polaroid-tag.international {
    background-color: #0e8cf1;
    color: #ffffff;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E03E12;
    transition: all 0.3s;
}

.team-member:hover .member-image {
    border-color: #0e8cf1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 5px;
}

.team-member p {
    color: #E03E12;
    font-size: 13px;
    font-weight: 600;
}

/* Profile Download Section */
.profile-download-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.profile-download-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
}

.profile-download-content h2 {
    font-size: 32px;
    color: #333333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-download-content h2 i {
    color: #E03E12;
}

.profile-download-content > p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 16px;
}

.profile-download-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid #E03E12;
    margin-bottom: 20px;
}

.profile-icon {
    width: 70px;
    height: 70px;
    background-color: #E03E12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    background-color: #ffffff;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.profile-meta span i {
    color: #E03E12;
}

.btn-download-profile {
    background-color: #E03E12;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
    border: 2px solid #E03E12;
}

.btn-download-profile:hover {
    background-color: #ffffff;
    color: #E03E12;
    border-color: #E03E12;
}

.download-note {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.download-note i {
    color: #E03E12;
}

/* CTA Section */
.cta-section {
    background-color: #1e293b;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #E03E12;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #c7350f;
    transform: translateY(-2px);
}

/* ============================================
   Contact Page Styles - FULLY FIXED
   ============================================ */
.map-section {
    padding: 40px 0 20px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #fff8f5, #fff1ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: #E03E12;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #E03E12;
}

.contact-address {
    font-style: normal;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-item i {
    color: #E03E12;
    width: 18px;
    font-size: 16px;
}

.contact-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #E03E12;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

.hours-row.sunday {
    color: #ef4444;
}

.hours-time.closed {
    color: #ef4444;
    font-weight: 600;
}

.support-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0e8cf1;
    font-size: 14px;
}

.support-note i {
    font-size: 18px;
}

.careers-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #E03E12;
}

.careers-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.careers-section h4 i {
    color: #E03E12;
}

.careers-section p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 5px;
}

.careers-section a {
    color: #E03E12;
    text-decoration: none;
    font-weight: 600;
}

.careers-section a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E03E12;
}

.form-header p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
}

.form-group .required {
    color: #E03E12;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: border-color 0.2s;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E03E12;
    background-color: #ffffff;
}

.btn-submit {
    background-color: #E03E12;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(224, 62, 18, 0.2);
}

.btn-submit:hover {
    background-color: #c7350f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 62, 18, 0.3);
}

.btn-submit i {
    font-size: 18px;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 60px 0;
    background-color: #f8fafc;
}

.contact-faq h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #E03E12;
}

/* ============================================
   FAQ Accordion Styles
   ============================================ */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E03E12;
    box-shadow: 0 4px 12px rgba(224, 62, 18, 0.08);
}

.faq-item.active {
    border-color: #E03E12;
    box-shadow: 0 6px 16px rgba(224, 62, 18, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-question h4 i {
    color: #E03E12;
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.toggle-icon {
    font-size: 16px;
    color: #E03E12;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 22px;
    background-color: #f8fafc;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: #e2e8f0;
    padding: 18px 22px;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer a {
    color: #E03E12;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.faq-answer a:hover {
    color: #b8320e;
    text-decoration: underline;
}

/* ============================================
   Footer Styles
   ============================================ */
.electro-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding-top: 60px;
    position: relative;
}

.electro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(224, 62, 18, 0.02) 0%, transparent 20%);
    pointer-events: none;
}

/* Footer Newsletter */
.footer-newsletter {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-text {
    flex: 1 1 300px;
}

.newsletter-text h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.newsletter-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 15px;
}

.newsletter-form {
    flex: 1 1 400px;
    max-width: 500px;
}

.newsletter-form form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    height: 56px;
    padding: 0 22px;
    border: 1.5px solid #334155;
    border-radius: 50px;
    background-color: #0f172a;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    line-height: 56px;
}

.newsletter-form input[type="email"]:focus {
    border-color: #E03E12;
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 62, 18, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.newsletter-form button[type="submit"] {
    height: 56px;
    padding: 0 32px;
    background-color: #E03E12;
    border: none;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 130px;
    border: 1.5px solid #E03E12;
    box-sizing: border-box;
    line-height: 56px;
}

.newsletter-form button[type="submit"]:hover {
    background-color: #c7350f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 62, 18, 0.3);
}

/* Newsletter Message */
.newsletter-message {
    margin-top: 15px;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: none;
}

.newsletter-message.success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.newsletter-message.error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.newsletter-message.info {
    background-color: rgba(224, 62, 18, 0.15);
    color: #E03E12;
    border: 1px solid rgba(224, 62, 18, 0.3);
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 0 40px;
}

.widget h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #E03E12;
    transition: width 0.3s ease;
}

.widget:hover h4::after {
    width: 60px;
}

.widget p {
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.7;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.widget ul li a:hover {
    color: #E03E12;
    transform: translateX(5px);
}

/* Social Icons */
.social-icons,
.social-media-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0 15px;
    padding: 0;
    list-style: none;
}

.social-icons a,
.social-media-links a,
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #E03E12;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons a i,
.social-media-links a i,
.social-link i {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    color: #ffffff;
}

.social-icons a:hover,
.social-media-links a:hover,
.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icons a:hover i,
.social-media-links a:hover i,
.social-link:hover i {
    transform: scale(1.1);
}

/* Brand Colors on Hover */
.social-icons a[href*="facebook"]:hover,
.social-media-links a[href*="facebook"]:hover,
.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-icons a[href*="instagram"]:hover,
.social-media-links a[href*="instagram"]:hover,
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-icons a[href*="linkedin"]:hover,
.social-media-links a[href*="linkedin"]:hover,
.social-link.linkedin:hover {
    background-color: #0077b5;
}

.social-icons a[href*="youtube"]:hover,
.social-media-links a[href*="youtube"]:hover,
.social-link.youtube:hover {
    background-color: #ff0000;
}

.social-icons a[href*="tiktok"]:hover,
.social-media-links a[href*="tiktok"]:hover,
.social-link.tiktok:hover {
    background-color: #000000;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
}

.footer-bottom p:last-child {
    color: #E03E12;
    font-weight: 500;
}

/* Contact Info Widget */
.widget:last-child p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.widget:last-child p i {
    color: #E03E12;
    width: 20px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.widget:last-child p a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget:last-child p a:hover {
    color: #E03E12;
    text-decoration: underline;
}

.widget:last-child p:hover i {
    transform: scale(1.1);
}

.widget:last-child p:hover {
    transform: translateX(5px);
}

/* ============================================
   Image Protection Styles
   ============================================ */
img[src$=".jpg"],
img[src$=".jpeg"],
img[src$=".png"],
img[src*=".jpg?"],
img[src*=".jpeg?"],
img[src*=".png?"] {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
    pointer-events: auto;
}

a[href$=".pdf"],
a[href*=".pdf?"],
a[download] {
    -webkit-touch-callout: default;
    touch-action: auto;
    pointer-events: auto;
}

/* ============================================
   Animation Keyframes
   ============================================ */
@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 62, 18, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(224, 62, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 62, 18, 0);
    }
}

/* ============================================
   Alert Messages
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
}

/* ============================================
   Responsive Styles - Media Queries
   ============================================ */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-offer {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape (992px and below) - FIXED MOBILE HEADER */
@media (max-width: 992px) {
    /* Hide top header completely on mobile */
    .top-header {
        display: none;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .main-header .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    /* Logo */
    .logo-area {
        order: 1;
        flex-shrink: 0;
    }
    
    .logo-link {
        width: 55px;
        height: 55px;
    }
    
    /* Support Section - Phone number larger */
    .header-support {
        order: 2;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        flex-shrink: 0;
        gap: 8px;
    }
    
    .support-info span {
        display: none;
    }
    
    .support-info strong {
        font-size: 20px;
    }
    
    .support-info strong a {
        font-size: 20px;
        color: #0f172a;
    }
    
    .support-icon i {
        font-size: 28px;
    }
    
    /* Menu Button */
    .mobile-menu-btn {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #0f172a;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0;
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        margin: 0;
    }
    
    /* Search Area - Same line as menu button */
    .search-area {
        order: 4;
        flex: 1;
        max-width: calc(100% - 110px);
        margin: 0;
        min-width: auto;
    }
    
    .search-input input {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .search-input button {
        padding: 0 18px;
        font-size: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-grid,
    .footer-widgets,
    .video-banner-wrapper,
    .solution-hero .container,
    .desc-grid,
    .team-grid,
    .gallery-grid,
    .faq-grid,
    .contact-grid,
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        gap: 30px;
    }
    
    .solution-hero .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .solution-hero .btn-primary,
    .solution-hero .btn-demo,
    .solution-hero .whatsapp-large-btn {
        width: 100%;
        justify-content: center;
    }
    
    .polaroid-wall {
        height: 1400px;
    }
    
    .polaroid {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin: 25px auto;
        transform: none !important;
        width: 240px;
    }
    
    .profile-download-wrapper {
        padding: 25px;
    }
    
    .profile-download-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .profile-meta {
        justify-content: center;
    }
    
    .btn-download-profile {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-item {
        flex: 0 0 180px;
        height: 110px;
        margin: 0 12px;
    }
    
    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 26 - 24px * 26));
        }
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
        max-width: 400px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait (768px and below) - Adjustments */
@media (max-width: 768px) {
    .support-info strong {
        font-size: 18px;
    }
    
    .support-info strong a {
        font-size: 18px;
    }
    
    .support-icon i {
        font-size: 26px;
    }
    
    .mobile-menu-btn {
        font-size: 26px;
        width: 42px;
        height: 42px;
    }
    
    .search-area {
        max-width: calc(100% - 100px);
    }
    
    .search-input input {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .search-input button {
        padding: 0 16px;
        font-size: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tabs-nav {
        width: 100%;
    }
    
    .tab-btn {
        flex: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-newsletter {
        padding: 30px 25px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        min-height: auto;
    }
    
    .newsletter-text {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .newsletter-form form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button[type="submit"] {
        width: 100%;
        height: 48px;
        font-size: 14px;
        line-height: 48px;
    }
    
    .newsletter-form input[type="email"] {
        padding: 0 18px;
    }
    
    .newsletter-form button[type="submit"] {
        min-width: 100%;
        padding: 0 18px;
    }
    
    .brand-item {
        flex: 0 0 140px;
        height: 90px;
        margin: 0 8px;
    }
    
    .brands-track {
        animation: scrollBrands 30s linear infinite;
    }
    
    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 26 - 20px * 26));
        }
    }
    
    .video-banner-content h2 {
        font-size: 28px;
    }
    
    .video-stats {
        gap: 10px;
    }
    
    .video-stats .stat-number {
        font-size: 22px;
    }
    
    .video-stats .stat-label {
        font-size: 12px;
    }
    
    .social-icons a,
    .social-media-links a,
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-item {
        padding: 6px 8px;
    }
    
    .industry-item span {
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px 5px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-overlay span {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .tabs-header-detail {
        flex-direction: column;
    }
    
    .tab-link-detail {
        text-align: left;
        padding: 12px 20px;
        width: 100%;
    }
    
    .tab-link-detail.active::after {
        display: none;
    }
    
    .specs-table td {
        display: block;
        width: 100%;
        padding: 10px;
    }
    
    .specs-table td:first-child {
        font-weight: 600;
        padding-bottom: 0;
    }
    
    .product-title {
        font-size: 30px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .rating-select {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-title strong {
        font-size: 16px;
    }
}

/* Mobile Landscape (576px and below) */
@media (max-width: 576px) {
    .support-info strong {
        font-size: 16px;
    }
    
    .support-info strong a {
        font-size: 16px;
    }
    
    .support-icon i {
        font-size: 24px;
    }
    
    .mobile-menu-btn {
        font-size: 24px;
        width: 38px;
        height: 38px;
    }
    
    .search-area {
        max-width: calc(100% - 90px);
    }
    
    .search-input input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-input button {
        padding: 0 14px;
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .banner-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .banner-content {
        margin-bottom: 20px;
    }
    
    .banner-image img {
        width: 140px;
    }
    
    .banner-content h3 {
        font-size: 22px;
    }
    
    .banner-content h4 {
        font-size: 12px;
    }
    
    .banner-content .discount {
        font-size: 14px;
    }
    
    .brand-item {
        flex: 0 0 120px;
        height: 80px;
        margin: 0 6px;
    }
    
    .brands-track {
        animation: scrollBrands 25s linear infinite;
    }
    
    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 26 - 16px * 26));
        }
    }
    
    .footer-newsletter {
        padding: 25px 20px;
    }
    
    .newsletter-text h3 {
        font-size: 22px;
    }
    
    .newsletter-text p {
        font-size: 13px;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button[type="submit"] {
        height: 44px;
        font-size: 13px;
        line-height: 44px;
    }
    
    .newsletter-message {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .social-icons a,
    .social-media-links a,
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .industry-item {
        padding: 8px 12px;
    }
    
    .industry-item span {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .product-availability {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .thumbnail-images .thumb-container {
        width: 60px;
        height: 60px;
    }
    
    .feature-title i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .feature-description {
        margin-left: 40px;
        font-size: 13px;
    }
}

/* Small Mobile (380px and below) */
@media (max-width: 380px) {
    .support-info strong {
        font-size: 14px;
    }
    
    .support-info strong a {
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        font-size: 22px;
        width: 34px;
        height: 34px;
    }
    
    .search-area {
        max-width: calc(100% - 80px);
    }
    
    .search-input input {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .search-input button {
        padding: 0 12px;
        font-size: 13px;
    }
    
    .banner-image img {
        width: 120px;
    }
    
    .footer-newsletter {
        padding: 20px 15px;
    }
    
    .newsletter-text h3 {
        font-size: 20px;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button[type="submit"] {
        height: 40px;
        font-size: 12px;
        line-height: 40px;
    }
    
    .brand-item {
        flex: 0 0 100px;
        height: 70px;
        margin: 0 5px;
    }
    
    .brands-track {
        animation: scrollBrands 20s linear infinite;
    }
    
    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 26 - 12px * 26));
        }
    }
    
    .industry-item {
        padding: 6px 10px;
    }
    
    .industry-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .industry-item span {
        font-size: 13px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-title {
        gap: 8px;
    }
    
    .feature-title strong {
        font-size: 15px;
    }
}

/* ============================================
   HORIZONTAL SITEMAP ROW - FOR SEO
   ============================================ */
.footer-sitemap-row {
    border-top: 1px solid #334155;
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
}

.footer-sitemap-row h4 {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-sitemap-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 12px;
}

.footer-sitemap-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-sitemap-links a:hover {
    color: #E03E12;
}

/* Mobile Responsive for Horizontal Sitemap */
@media (max-width: 768px) {
    .footer-sitemap-links {
        gap: 12px;
    }
    .footer-sitemap-links a {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .footer-sitemap-links {
        gap: 10px;
    }
    .footer-sitemap-links a {
        font-size: 11px;
    }
}

/* ============================================
   MOBILE HEADER FIX - FINAL
   ============================================ */

/* Hide desktop support on mobile, show mobile support */
@media (max-width: 992px) {
    /* Hide desktop support section */
    .main-header .header-support {
        display: none !important;
    }
    
    /* Show mobile support section */
    .main-header .header-support-mobile {
        display: flex !important;
        align-items: center;
    }
    
    /* Show mobile menu button */
    .main-header .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #0f172a;
        cursor: pointer;
    }
    
    /* Ensure search area takes remaining space */
    .main-header .search-area {
        flex: 1;
        max-width: 100%;
        min-width: 0;
    }
    
    /* Top header hide */
    .top-header {
        display: none;
    }
    
    /* Adjust logo size */
    .main-header .logo-link {
        width: 55px;
        height: 55px;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .main-header .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .main-header .header-support-mobile .support-info strong {
        font-size: 18px;
    }
    
    .main-header .header-support-mobile .support-icon i {
        font-size: 24px;
    }
}

/* Mobile small */
@media (max-width: 576px) {
    .main-header .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .main-header .header-support-mobile .support-info strong {
        font-size: 16px;
    }
    
    .main-header .header-support-mobile .support-icon i {
        font-size: 22px;
    }
}

/* ============================================
   MOBILE HEADER - COMPLETE FIX
   ============================================ */

/* Hide top header on mobile */
@media (max-width: 992px) {
    .top-header {
        display: none !important;
    }
    
    /* ===== CRITICAL: HIDE DESKTOP HEADER ON MOBILE ===== */
    .main-header {
        display: none !important;
    }
    
    /* Hide original nav-bar mobile menu button (we're using new one) */
    .nav-bar .mobile-menu-btn {
        display: none !important;
    }
    
    /* Make sure mobile header is visible */
    .mobile-header-container {
        display: block !important;
    }
}

/* Hide mobile header on desktop */
@media (min-width: 993px) {
    .mobile-header-container {
        display: none !important;
    }
    .nav-bar .mobile-menu-btn {
        display: flex !important;
    }
    .main-header {
        display: block !important;
    }
}

/* Mobile header container styles */
.mobile-header-container {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 999;
    display: none; /* Hidden by default, shown via media query */
}

/* Ensure search results are above everything */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
}

/* Make search input responsive */
.search-area-mobile .search-input input {
    font-size: 14px;
}

.search-area-mobile .search-input button i {
    font-size: 16px;
    color: #64748b;
}

/* Mobile menu button hover */
.mobile-menu-btn-mobile:hover {
    opacity: 0.8;
}

/* Footer sitemap row */
.footer-sitemap-row {
    border-top: 1px solid #334155;
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
}

.footer-sitemap-row h4 {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-sitemap-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 12px;
}

.footer-sitemap-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-sitemap-links a:hover {
    color: #E03E12;
}

@media (max-width: 768px) {
    .footer-sitemap-links {
        gap: 12px;
    }
    .footer-sitemap-links a {
        font-size: 12px;
    }
}
/* ============================================
   End of Stylesheet
   ============================================ */