/* ========================================
   WIMAC CRANE - Industrial Crane Company
   ======================================== */

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

:root {
     --primary: #ffe900;
    --primary-dark: #ffe900;
    --header-bg: #ffe900;
    --dark: #1a1a1a;
    --darker: #111111;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-dark: #374151;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--darker);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary);
}

.contact-info a i {
    font-size: 14px;
    color: var(--primary);
}
.language-flags img {
    vertical-align: middle;
}
.language-flags {
    display: flex;
    gap: 10px;
}

.language-flags img {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.language-flags img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ========================================
   HEADER - ELEGANT MODERN DESIGN
   Wimac Crane
   ======================================== */

/* ==================== HEADER BASE ==================== */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* Scrolled State */
header.scrolled {
    background: rgba(255, 233, 0, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* ==================== LOGO ==================== */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

/* ==================== NAVIGATION ==================== */
nav {
    display: flex;
    align-items: center;
    gap: 1px;
}

nav > a,
.nav-dropdown > a {
    color: var(--dark);
    padding: 10px 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    transition: all 0.3s ease;
}

nav > a:not(.nav-cta)::after,
.nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav > a:not(.nav-cta):hover::after,
.nav-dropdown:hover > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==================== DROPDOWN ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 100;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 16px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover {
    color: #fff;
    padding-left: 32px;
    background: rgba(255,255,255,0.05);
}

.dropdown-menu a:hover::before {
    width: 4px;
}

/* ==================== CTA BUTTON ==================== */
.nav-cta {
    background: var(--dark) !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    margin-left: 15px;
    transition: all 0.35s ease;
}

.nav-cta:hover {
    background: var(--header-bg) !important;
    color: var(--dark) !important;

}

.nav-cta::after {
    display: none !important;
}

/* Button style when scrolled */
header.scrolled .nav-cta {
    background: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .nav-cta:hover {
    background: #fff !important;
    color: var(--dark) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
/* ==================== MOBILE TOGGLE ==================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}

.menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1100px) {
    nav > a,
    .nav-dropdown > a {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .nav-cta {
        padding: 10px 22px !important;
        font-size: 11px !important;
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 992px) {
    header .container {
        height: 70px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Full Screen Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 100px 30px 50px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    nav > a,
    .nav-dropdown > a {
        font-size: 20px;
        padding: 18px 0;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    nav > a:not(.nav-cta)::after,
    .nav-dropdown > a::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown > a {
        justify-content: center;
    }
    
    .nav-dropdown > a i {
        font-size: 12px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--dark);
        padding: 0;
        margin: 0 0 10px;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.35s ease;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 300px;
    }
    
    .nav-dropdown.open > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        font-size: 14px;
        padding: 14px 20px;
        text-align: center;
        color: rgba(255,255,255,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .dropdown-menu a::before {
        display: none;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px;
        background: rgba(255,255,255,0.05);
        color: #fff;
    }
    
    /* Mobile CTA */
    .nav-cta {
        margin: 25px 0 0 0 !important;
        padding: 16px 45px !important;
        font-size: 13px !important;
        border-radius: 50px !important;
    }
    
    .nav-cta:hover {
        background: #fff !important;
        color: var(--dark) !important;
    }
    
    /* Prevent body scroll when nav is open */
    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    header .container {
        height: 65px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    nav {
        padding: 90px 25px 40px;
    }
    
    nav > a,
    .nav-dropdown > a {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .dropdown-menu a {
        font-size: 13px;
        padding: 12px 18px;
    }
    
    .nav-cta {
        padding: 14px 40px !important;
        font-size: 12px !important;
    }
}
/* ==================== MOBILE NAV LOGO ==================== */
.nav-logo {
    display: none;
}

@media (max-width: 992px) {
    /* Hide header logo when menu is open */
    body.nav-open .logo {
        opacity: 0;
        visibility: hidden;
    }
    
    /* Show and style nav logo */
    .nav-logo {
        display: block;
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-logo img {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        top: 20px;
    }
    
    .nav-logo img {
        height: 45px;
    }
}

/* ==================== SCROLL DETECTION (Optional JS) ==================== */
/*
Add this JS for scroll effect:

window.addEventListener('scroll', function() {
    const header = document.querySelector('header');
    if (window.scrollY > 50) {
        header.classList.add('scrolled');
    } else {
        header.classList.remove('scrolled');
    }
});
*/

/* ========================================
   HERO SLIDER - CREATIVE DESIGN
   ======================================== */
.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 450px;
    max-height: 650px;
    overflow: hidden;
    background: var(--darker);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 100;
}

.slider-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--header-bg), var(--primary));
    transition: width 0.1s linear;
}

/* Slides Container */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

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

/* ==================== HERO SLIDER ==================== */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    max-width: 2000px;
    margin: 0 auto;
    overflow: hidden;
    background: #0a0a0a;
}

/* Slides Container */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

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

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg img {
    transform: scale(1.15);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    linear-gradient(135deg, rgba(0,0,0,0.425) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.45) 100%);
z-index: 1;
}

/* Particles Effect */
.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,233,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,233,0,0.05) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

 /* Slide image zoom animation */
        .slide .slide-bg img {
            transition: transform 8s ease-out;
            transform: scale(1);
        }
        
        .slide.active .slide-bg img {
            transform: scale(1.15);
        }

/* Slide Content - Positioned at Bottom with Left Spacing */
.slide-content {
    position: absolute;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
    padding-left: 120px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    bottom: 110px;
    padding-bottom: 20px;
    left: 50px;
    right: 0;


}






.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,233,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,233,0,0.3);
    color: var(--header-bg);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 span {
    color: var(--header-bg);
    position: relative;
}

.slide-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,233,0,0.3);
    z-index: -1;
}

.slide-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Slide CTA Buttons */
.slide-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.6s;
}

.slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.slide-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.slide-cta .btn-primary {
    background: var(--header-bg);
    color: var(--dark);
    border: 2px solid var(--header-bg);
}

.slide-cta .btn-primary:hover {
    background: transparent;
    border-color: var(--header-bg);
    color: var(--header-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,233,0,0.3);
}

.slide-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.slide-cta .btn-primary:hover i {
    transform: translateX(5px);
}

.slide-cta .btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255,255,255,0.3);
}

.slide-cta .btn-outline:hover {
    background: var(--light);
    border-color: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-stats {
    opacity: 1;
    transform: translateY(0);
}

.slide-stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 12px;
}

.slide-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--header-bg);
    border-radius: 3px;
}

.slide-stat strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
}

.slide-stat span {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Slider Navigation */
.slider-nav-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

.slider-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Slider Arrows */
.slider-arrow {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--light);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--header-bg);
    border-color: var(--header-bg);
    color: var(--dark);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

.slider-dot.active {
    background: var(--header-bg);
    width: 24px;
    border-radius: 4px;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 60;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--header-bg);
    transition: width 5s linear;
}




        /* amCharts Map Container */
        #amcharts-map {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .map-container-new {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 992px) {
            .logo-img {
                height: 38px;
            }
        }
        
        @media (max-width: 768px) {
            #amcharts-map {
                height: 350px;
            }
            
            .slide-content {
                bottom: 80px;
                padding-bottom: 15px;
            }
            
            .logo-img {
                height: 35px;
            }
        }
        
        @media (max-width: 480px) {
            #amcharts-map {
                height: 280px;
            }
            
            .slide-content {
                bottom: 70px;
            }
            
            .logo-img {
                height: 30px;
            }
        }
/* ==================== SLIDER RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .slide-content {
        padding-left: 60px;
        max-width: 550px;
    }
    
    .slide-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .slide-content {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 500px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 90px;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 30px;
    }
    
    .slide-content p {
        font-size: 13px;
        max-width: 100%;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-cta .btn {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    
    .slide-stats {
        gap: 20px;
    }
    
    .slide-stat strong {
        font-size: 16px;
    }
    
    .slider-nav-wrapper {
        padding: 8px 14px;
        gap: 10px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 80px;
    }
    
    .slide-content h1 {
        font-size: 26px;
    }
    
    .slide-tag {
        font-size: 9px;
        padding: 6px 12px;
    }
    
    .slide-stats {
        gap: 15px;
    }
    
    .slide-stat strong {
        font-size: 14px;
    }
    
    .slide-stat span {
        font-size: 9px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--light);
    color: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    width: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--header-bg);
    border-radius: 16px;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--header-bg);
    border-radius: 12px;
    z-index: -1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--header-bg);
    margin-top: 15px;
    border-radius: 3px;
}

.about-content p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    background: var(--header-bg);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 12px;
    transition: var(--transition);
}

.about-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Certifications */
.certifications {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    width: 75px;
    height: 75px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cert-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--header-bg);
}

.cert-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-dark);
}

/* ========================================
   PRODUCTS SECTION - CREATIVE BENTO GRID
   ======================================== */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--header-bg);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag i {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-header p {
    color: var(--gray-light);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

/* Products Showcase - 5 Container Images */
.products-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.showcase-item {
    position: relative;
    width: 160px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item.showcase-featured {
    width: 200px;
    height: 240px;
    border: 3px solid var(--header-bg);
    box-shadow: 0 20px 50px rgba(255, 233, 0, 0.2);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
    transform: translateY(0);
}

.showcase-overlay span {
    font-size: 12px;
    font-weight: 700;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid Layout */
.products-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Bento Card Base */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.1);
}

/* Large Featured Card */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bento-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: brightness(0.4);
}

.bento-card:hover .bento-bg img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.bento-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
}

.bento-label {
    display: inline-block;
    background: var(--header-bg);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bento-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 12px;
    line-height: 1.2;
}

.bento-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--header-bg);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bento-cta i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-cta {
    gap: 15px;
}

.bento-card:hover .bento-cta i {
    transform: translateX(5px);
}

.bento-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-card:hover .bento-glow {
    opacity: 1;
}

/* Medium Cards */
.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
}

.bento-medium .bento-content {
    padding: 25px;
}

.bento-medium .bento-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 18px;
}

.bento-medium .bento-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bento-medium .bento-text p {
    font-size: 13px;
    margin-bottom: 12px;
}

/* Small Cards */
.bento-small {
    grid-column: span 1;
    min-height: 160px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
}

.bento-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-small:hover::before {
    opacity: 1;
}

.bento-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--header-bg);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.bento-small:hover .bento-icon-circle {
    background: var(--header-bg);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bento-small h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.bento-small p {
    font-size: 13px;
    color: var(--gray-light);
}

/* ========================================
   SPARE PARTS SECTION
   ======================================== */
.spare-parts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.spare-parts-section .section-header h2 {
    color: var(--dark);
}

.spare-parts-section .section-header p {
    color: var(--gray);
}

.spare-parts-section .section-tag {
    background: rgba(255, 233, 0, 0.15);
    border-color: rgba(255, 233, 0, 0.4);
    color: var(--primary-dark);
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.part-card {
    background: var(--light);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.part-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--header-bg), var(--primary));
    transition: height 0.4s ease;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(255, 233, 0, 0.3);
}

.part-card:hover::before {
    height: 100%;
}

.part-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 233, 0, 0.15), rgba(255, 233, 0, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.part-card:hover .part-icon {
    background: linear-gradient(135deg, var(--header-bg), var(--primary));
    color: var(--dark);
    transform: scale(1.1);
}

.part-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.part-card > p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.part-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.part-features li {
    font-size: 12px;
    color: var(--gray-dark);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.part-features li:last-child {
    border-bottom: none;
}

.part-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 11px;
}

.parts-cta {
    text-align: center;
    padding: 30px 40px;
    background: var(--dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.parts-cta p {
    color: var(--gray-light);
    font-size: 14px;
    margin: 0;
}

.parts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--header-bg);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.4s ease;
}

.parts-btn:hover {
    background: var(--light);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.3);
}

.parts-btn i {
    transition: transform 0.3s ease;
}

.parts-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.gallery-section .section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
}

.gallery-wrapper {
    padding: 0 40px;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 15px;
    animation: scroll 35s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: all 0.4s ease;
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   GLOBAL PRESENCE SECTION - WHITE THEME
   ======================================== */
.global-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.global-section .section-header {
    margin-bottom: 50px;
}

.global-section .section-header h2 {
    color: var(--dark);
}

.global-section .section-header p {
    color: var(--gray);
}

.global-section .section-tag {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--primary);
}

.global-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 35px;
    align-items: start;
}

/* Interactive Map - White Theme */
.map-interactive {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.map-glow {
    display: none;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Continent Paths - Light Theme */
.continent {
    fill: #e5e7eb;
    stroke: #d1d5db;
    stroke-width: 1;
    transition: all 0.3s ease;
}

.continent:hover {
    fill: #d1d5db;
}

.region-highlight {
    fill: rgba(245, 158, 11, 0.2);
    stroke: var(--primary);
    stroke-width: 2;
    filter: url(#glow);
}

/* Connection Lines - Light Theme */
.connection-line {
    stroke: rgba(245, 158, 11, 0.4);
    stroke-width: 1.5;
    stroke-dasharray: 8,4;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

/* Map Markers - Light Theme */
.marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker:hover {
    transform: scale(1.2);
}

.marker-pulse {
    fill: rgba(245, 158, 11, 0.3);
    animation: marker-pulse 2s ease-out infinite;
}

@keyframes marker-pulse {
    0% { r: 20; opacity: 1; }
    100% { r: 40; opacity: 0; }
}

.marker-ring {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
}

.marker-dot {
    fill: var(--primary);
}

.marker-hq .marker-dot {
    fill: var(--dark);
}

.marker-hq .marker-ring {
    fill: var(--header-bg);
    stroke: var(--primary);
}

.marker-label {
    fill: var(--dark);
    font-size: 11px;
    font-weight: 700;
    text-anchor: middle;
}

.marker.active .marker-ring,
.marker:hover .marker-ring {
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

/* Map Tooltip - Light Theme */
.map-tooltip {
    position: absolute;
    background: var(--dark);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    font-size: 13px;
    font-weight: 600;
}

.tooltip-content i {
    color: var(--header-bg);
}

/* Country Cards - Light Theme */
.country-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.country-card:hover,
.country-card.active {
    background: #fefce8;
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.country-card:hover::before,
.country-card.active::before {
    transform: scaleY(1);
}

.country-flag {
    width: 38px;
    height: 26px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-info {
    flex: 1;
}

.country-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.country-role {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.country-info p {
    font-size: 11px;
    color: var(--gray);
}

.country-icon {
    width: 34px;
    height: 34px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.country-card:hover .country-icon,
.country-card.active .country-icon {
    background: var(--primary);
    color: var(--light);
}

/* Map Legend - Light Theme */
.map-legend-new {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #e5e7eb;
}

.legend-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}

.legend-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
}

.legend-marker.hq {
    background: var(--header-bg);
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.legend-marker.agent {
    background: transparent;
    border: 2px solid var(--primary);
}

.legend-marker.agent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.legend-marker.target {
    background: transparent;
    border: 2px dashed var(--gray);
}

/* ========================================
   FOOTER - ELEGANT DESIGN
   ======================================== */
footer {
    background: var(--darker);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img {
    max-width: 180px;
    height: auto;
}
.footer-about .logo-text {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about .logo-text span {
    color: var(--header-bg);
}

.footer-about p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-light);
    transition: all 0.4s ease;
}

.footer-social a:hover {
    background: var(--header-bg);
    border-color: var(--header-bg);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--header-bg);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--header-bg);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--header-bg);
    font-size: 15px;
    margin-top: 3px;
}

.footer-contact-item p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--header-bg);
    transition: width 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--header-bg);
}

.footer-contact-item a:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--header-bg);
    font-weight: 600;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--header-bg);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray);
    font-size: 13px;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--header-bg);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--header-bg);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE - SMALLER DESKTOPS (1440px)
   ======================================== */
@media (max-width: 1440px) {
    .slide-content h1 {
        font-size: 46px;
    }
    
    .slide-content p {
        font-size: 15px;
        max-width: 480px;
    }
    
    .slide-tag {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .slide-cta .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .slide-stat strong {
        font-size: 20px;
    }
    
    .slide-stat span {
        font-size: 10px;
    }
    
    .slide-stats {
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-content p {
        font-size: 14px;
    }
    
    .bento-text h3 {
        font-size: 24px;
    }
    
    .bento-large {
        min-height: 420px;
    }
}

/* ========================================
   RESPONSIVE - SMALL DESKTOPS (1366px)
   ======================================== */
@media (max-width: 1366px) {
    .container {
        padding: 0 35px;
    }
    
    .slide-content h1 {
        font-size: 42px;
    }
    
    .slide-content p {
        font-size: 14px;
        max-width: 450px;
        margin-bottom: 25px;
    }
    
    .slide-content {
        max-width: 580px;
    }
    
    .slide-cta {
        margin-bottom: 30px;
    }
    
    .slider-nav-container {
        bottom: 30px;
    }
    
    .slider-nav-wrapper {
        padding: 10px 18px;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 34px;
    }
    
    .about-content h2 {
        font-size: 30px;
    }
    
    .bento-large {
        min-height: 380px;
    }
    
    .bento-text h3 {
        font-size: 22px;
    }
    
    .bento-medium .bento-text h3 {
        font-size: 16px;
    }
    
    .global-wrapper {
        gap: 30px;
    }
    
    .country-card {
        padding: 12px 14px;
    }
}

/* ========================================
   RESPONSIVE - COMPACT DESKTOPS (1280px)
   ======================================== */
@media (max-width: 1280px) {
    .container {
        padding: 0 30px;
    }
    
    .slide-content h1 {
        font-size: 38px;
    }
    
    .slide-content p {
        font-size: 13px;
        max-width: 420px;
    }
    
    .slide-tag {
        font-size: 10px;
        padding: 7px 14px;
        margin-bottom: 15px;
    }
    
    .slide-cta .btn {
        padding: 11px 20px;
        font-size: 12px;
        gap: 8px;
    }
    
    .slide-stat strong {
        font-size: 18px;
    }
    
    .slide-stats {
        gap: 20px;
    }
    
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .products-section {
        padding: 80px 0;
    }
    
    .bento-large {
        min-height: 350px;
    }
    
    .bento-large .bento-content {
        padding: 30px;
    }
    
    .bento-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .bento-medium {
        min-height: 240px;
    }
    
    .global-section {
        padding: 80px 0;
    }
    
    .gallery-section {
        padding: 70px 0;
    }
}

/* ========================================
   RESPONSIVE - TABLET (1200px)
   ======================================== */
@media (max-width: 1200px) {
    .products-showcase {
        gap: 10px;
    }
    
    .showcase-item {
        width: 140px;
        height: 180px;
    }
    
    .showcase-item.showcase-featured {
        width: 170px;
        height: 210px;
    }
    
    .products-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }
    
    .bento-medium {
        grid-column: span 1;
    }
    
    .bento-small {
        grid-column: span 1;
    }
    
    /* Spare Parts */
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .products-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        min-height: 320px;
    }
    
    .bento-text h3 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 26px;
    }
    
    .about-content h2::after {
        margin: 15px auto 0;
    }
    
    .certifications {
        justify-content: center;
    }
    
    /* Slider Responsive */
    .slide-content h1 {
        font-size: 34px;
    }
    
    .slide-content p {
        font-size: 13px;
        max-width: 400px;
    }
    
    .slider-nav-wrapper {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    /* Global Map Responsive */
    .global-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-interactive {
        padding: 15px;
    }
    
    .country-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .country-card {
        flex: 1 1 calc(50% - 4px);
        min-width: 220px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Header */
    header .container {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav > a,
    .nav-dropdown > a {
        padding: 20px 30px;
        font-size: 18px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px;
    }
    
    .contact-btn {
        margin: 20px 0 0 0 !important;
        width: 80%;
        text-align: center;
        padding: 18px 30px !important;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding-top: 80px;
        padding-bottom: 140px;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-tag {
        font-size: 10px;
        padding: 8px 14px;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .slide-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .slide-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .slide-stat strong {
        font-size: 18px;
    }
    
    .slide-stat span {
        font-size: 10px;
    }
    
    .slider-nav-container {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .slider-nav-wrapper {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .slider-dot.active {
        width: 18px;
    }
    
    /* About */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content h2 {
        font-size: 24px;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
    
    /* Products Showcase Mobile */
    .products-showcase {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .showcase-item {
        width: calc(33.33% - 6px);
        height: 100px;
        border-radius: 10px;
    }
    
    .showcase-item.showcase-featured {
        width: calc(33.33% - 6px);
        height: 100px;
        border-width: 2px;
    }
    
    .showcase-overlay span {
        font-size: 9px;
    }
    
    /* Products - Bento Grid Mobile */
    .products-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .products-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bento-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 260px;
    }
    
    .bento-large .bento-content {
        padding: 20px;
    }
    
    .bento-large .bento-text h3 {
        font-size: 20px;
    }
    
    .bento-large .bento-text p {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .bento-large .bento-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .bento-medium {
        min-height: 180px;
    }
    
    .bento-medium .bento-content {
        padding: 18px;
    }
    
    .bento-medium .bento-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .bento-medium .bento-text h3 {
        font-size: 16px;
    }
    
    .bento-small {
        grid-column: span 1;
        min-height: 120px;
        padding: 20px;
    }
    
    .bento-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .bento-small h4 {
        font-size: 14px;
    }
    
    /* Spare Parts Responsive */
    .spare-parts-section {
        padding: 60px 0;
    }
    
    .parts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .part-card {
        padding: 22px;
    }
    
    .part-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .part-card h3 {
        font-size: 15px;
    }
    
    .parts-cta {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    
    /* Gallery Responsive */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section h2 {
        font-size: 24px;
    }
    
    .gallery-wrapper {
        padding: 0 20px;
    }
    
    .gallery-item {
        width: 240px;
        height: 170px;
    }
    
    /* Global Section Mobile */
    .global-section {
        padding: 60px 0;
    }
    
    .global-section .section-header h2 {
        font-size: 26px;
    }
    
    .global-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-interactive {
        padding: 10px;
        border-radius: 12px;
    }
    
    .country-cards {
        flex-direction: column;
    }
    
    .country-card {
        flex: 1 1 100%;
    }
    
    .map-legend-new {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Footer Responsive */
    footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-bottom: 50px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Better tablet layout for small cards */
@media (max-width: 600px) and (min-width: 481px) {
    .products-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large,
    .bento-medium {
        grid-column: span 2;
    }
    
    .bento-small {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .gallery-wrapper {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    /* Hero Slider Extra Small */
    .hero-slider {
        min-height: 550px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-tag {
        font-size: 10px;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
    
    .slide-cta .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .slide-stats {
        gap: 15px;
    }
    
    .slide-stat {
        padding-left: 12px;
    }
    
    .slide-stat strong {
        font-size: 18px;
    }
    
    .slide-stat span {
        font-size: 10px;
    }
    
    .slider-nav-wrapper {
        padding: 10px 12px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .about-content h2,
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .cert-badge {
        width: 60px;
        height: 60px;
    }
    
    .gallery-item {
        width: 220px;
        height: 150px;
    }
    
    /* Bento Grid Extra Small */
    .bento-large {
        min-height: 280px;
    }
    
    .bento-large .bento-content {
        padding: 20px;
    }
    
    .bento-large .bento-text h3 {
        font-size: 20px;
    }
    
    .bento-large .bento-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .bento-label {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .bento-medium {
        min-height: 200px;
    }
    
    .bento-small {
        min-height: 130px;
        padding: 20px;
    }
    
    .bento-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .products-stats {
        padding: 25px 20px;
    }
    
    .stat-item {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Global Section Extra Small */
    .global-section .section-header h2 {
        font-size: 26px;
    }
    
    .country-card {
        padding: 15px;
    }
    
    .country-flag {
        width: 40px;
        height: 28px;
    }
    
    .country-info h4 {
        font-size: 14px;
    }
    
    .country-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Gallery Extra Small */
    .gallery-section h2 {
        font-size: 26px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 14px;
    }
    
    .gallery-item {
        width: 240px;
        height: 170px;
    }
    
    /* Footer Extra Small */
    .footer-about .logo-text {
        font-size: 28px;
    }
    
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}




 /* ==================== INTERACTIVE PRODUCT PAGE ==================== */
        
        /* Hero Section */
        .product-interactive-hero {
            position: relative;
            min-height: 450px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .product-interactive-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(255,233,0,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,233,0,0.05) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .product-interactive-hero .container {
            position: relative;
            z-index: 10;
        }
        
        .product-interactive-hero .breadcrumb {
            margin-bottom: 20px;
        }
        
        .product-interactive-hero .breadcrumb a,
        .product-interactive-hero .breadcrumb span {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
        }
        
        .product-interactive-hero .breadcrumb a:hover {
            color: var(--header-bg);
        }
        
        .product-interactive-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            font-weight: 800;
            color: var(--light);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        
        .product-interactive-hero h1 span {
            color: var(--header-bg);
        }
        
        .product-interactive-hero p {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            max-width: 600px;
        }
        
        
/* ========================================
   WIMAC CRANES SECTIONS - Light Theme
   3-Grid (Overhead) & 4-Grid (Gantry)
   Grayscale to Color Hover Effect
   ======================================== */

/* Section Container */
.wm-cranes-section {
    background: #f8f9fa;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.wm-cranes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 233, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 233, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Dark variant for alternating sections */
.wm-cranes-section.wm-cranes-dark {
    background: #0a0a0a;
}

.wm-cranes-section.wm-cranes-dark::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 233, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 233, 0, 0.02) 0%, transparent 40%);
}

/* Section Header */
.wm-cranes-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wm-cranes-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.08);
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 10, 10, 0.1);
}

.wm-cranes-dark .wm-cranes-tag {
    background: rgba(255, 233, 0, 0.1);
    color: #ffe900;
    border: 1px solid rgba(255, 233, 0, 0.2);
}

.wm-cranes-tag .wm-tag-logo {
    height: 16px;
    width: auto;
}

.wm-cranes-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.wm-cranes-dark .wm-cranes-header h2 {
    color: #ffffff;
}

.wm-cranes-header p {
    font-size: 17px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.wm-cranes-dark .wm-cranes-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cranes Grid Layouts */
.wm-cranes-grid {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* 3-Column Grid (Overhead Cranes) */
.wm-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 4-Column Grid (Gantry Cranes) */
.wm-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Crane Card */
.wm-crane-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 420px;
    background: #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.wm-cranes-dark .wm-crane-card {
    background: #111;
    box-shadow: none;
}

.wm-crane-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transform: translateY(-8px);
}

.wm-cranes-dark .wm-crane-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Card Image Container */
.wm-crane-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wm-crane-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.85);
    transform: scale(1);
    transition: filter 0.5s ease, transform 0.7s ease;
}

/* Hover Effect - Grayscale to Color + Zoom */
.wm-crane-card:hover .wm-crane-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.wm-crane-img2 {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wm-crane-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: filter 0.5s ease, transform 0.7s ease;
}

/* Hover Effect - Grayscale to Color + Zoom */
.wm-crane-card:hover .wm-crane-img2 img {
    transform: scale(1.1);
}

/* Card Number */
.wm-crane-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #0a0a0a;
    background: #ffe900;
    padding: 8px 14px;
    border-radius: 8px;
    z-index: 3;
    letter-spacing: 1px;
}

/* Card Overlay */
.wm-crane-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: background 0.4s ease;
}

.wm-crane-card:hover .wm-crane-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* Card Content */
.wm-crane-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wm-crane-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.wm-crane-card:hover .wm-crane-content h3 {
    transform: translateY(-3px);
}

.wm-crane-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Link */
.wm-crane-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe900;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wm-crane-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.wm-crane-card:hover .wm-crane-link {
    opacity: 1;
    transform: translateY(0);
}

.wm-crane-card:hover .wm-crane-link i {
    transform: translateX(4px);
}

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

@media (max-width: 1200px) {
    .wm-cranes-header h2 {
        font-size: 36px;
    }
    
    .wm-crane-card {
        min-height: 380px;
    }
    
    .wm-crane-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .wm-cranes-section {
        padding: 80px 0 100px;
    }
    
    /* 3-grid becomes 2+1 on tablet */
    .wm-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wm-grid-3 .wm-crane-card:last-child {
        grid-column: span 2;
    }
    
    /* 4-grid becomes 2x2 on tablet */
    .wm-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wm-crane-card {
        min-height: 350px;
    }
    
    .wm-cranes-header h2 {
        font-size: 32px;
    }
    
    .wm-cranes-header p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .wm-cranes-section {
        padding: 60px 0 80px;
    }
    
    .wm-cranes-header {
        margin-bottom: 40px;
    }
    
    .wm-cranes-header h2 {
        font-size: 28px;
    }
    
    .wm-cranes-tag {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .wm-cranes-grid {
        gap: 16px;
    }
    
    .wm-crane-card {
        min-height: 320px;
    }
    
    .wm-crane-content {
        padding: 24px;
    }
    
    .wm-crane-content h3 {
        font-size: 18px;
    }
    
    .wm-crane-content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .wm-crane-number {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Show link by default on mobile */
    .wm-crane-link {
        opacity: 1;
        transform: translateY(0);
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    /* Both grids become single column on mobile */
    .wm-grid-3,
    .wm-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .wm-grid-3 .wm-crane-card:last-child {
        grid-column: span 1;
    }
    
    .wm-crane-card {
        min-height: 280px;
    }
    
    .wm-cranes-header h2 {
        font-size: 24px;
    }
    
    .wm-cranes-header p {
        font-size: 14px;
    }
    
    .wm-crane-content {
        padding: 20px;
    }
    
    .wm-crane-content h3 {
        font-size: 18px;
    }
}



/* ========================================
   WIMAC HOISTS SECTION
   5-Grid Layout: 3 top + 2 wide bottom
   ======================================== */

/* Section Container */
.wm-hoists {
    background: #fff;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.wm-hoists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 233, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 233, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Section Header */
.wm-hoists-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wm-hoists-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 233, 0, 0.1);
    color: #ffe900;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 233, 0, 0.2);
}

.wm-hoists-tag .wm-tag-logo {
    height: 20px;
    width: auto;
}

.wm-hoists-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.wm-hoists-header p {
    font-size: 17px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hoists Grid - 3 + 2 Layout */
.wm-hoists-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Base Card Styles */
.wm-hoist-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 380px;
    background: #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    grid-column: span 2;
}

.wm-hoist-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

/* Wide Card (bottom row) */
.wm-hoist-wide {
    grid-column: span 3;
    min-height: 320px;
}

/* Card Image Container */
.wm-hoist-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wm-hoist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transform: scale(1);
    transition: filter 0.5s ease, transform 0.7s ease;
}

/* Hover Effect - Grayscale to Color + Zoom */
.wm-hoist-card:hover .wm-hoist-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Card Overlay */
.wm-hoist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: background 0.4s ease;
}

.wm-hoist-card:hover .wm-hoist-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

/* Card Content */
.wm-hoist-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Card Badge */
.wm-hoist-badge {
    background: #ffe900;
    color: #0a0a0a;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wm-badge-dark {
    background: #fff;
    color: #0a0a0a;
}

/* Card Title */
.wm-hoist-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.wm-hoist-card:hover .wm-hoist-content h3 {
    transform: translateY(-3px);
}

/* Card Description */
.wm-hoist-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wm-hoist-wide .wm-hoist-content p {
    -webkit-line-clamp: 3;
}

/* Card Button */
.wm-hoist-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe900;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.wm-hoist-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.wm-hoist-card:hover .wm-hoist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wm-hoist-card:hover .wm-hoist-btn i {
    transform: translateX(4px);
}

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

@media (max-width: 1200px) {
    .wm-hoists-header h2 {
        font-size: 36px;
    }
    
    .wm-hoist-card {
        min-height: 350px;
    }
    
    .wm-hoist-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .wm-hoists {
        padding: 80px 0 100px;
    }
    
    .wm-hoists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wm-hoist-card {
        grid-column: span 1;
        min-height: 320px;
    }
    
    .wm-hoist-wide {
        grid-column: span 1;
        min-height: 320px;
    }
    
    /* Last card (Ex-proof) spans full width */
    .wm-hoist-card:last-child {
        grid-column: span 2;
    }
    
    .wm-hoists-header h2 {
        font-size: 32px;
    }
    
    .wm-hoists-header p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .wm-hoists {
        padding: 60px 0 80px;
    }
    
    .wm-hoists-header {
        margin-bottom: 40px;
    }
    
    .wm-hoists-header h2 {
        font-size: 28px;
    }
    
    /* Header tag */
.wm-hoists-tag {
    background: rgba(10, 10, 10, 0.08);
    color: #0a0a0a;
    border: 1px solid rgba(10, 10, 10, 0.1);
}
    
    .wm-hoists-grid {
        gap: 16px;
    }
    
    .wm-hoist-card {
        min-height: 280px;
    }
    
    .wm-hoist-content {
        padding: 24px;
    }
    
    .wm-hoist-content h3 {
        font-size: 20px;
    }
    
    .wm-hoist-content p {
        font-size: 13px;
    }
    
    /* Show button by default on mobile */
    .wm-hoist-btn {
        opacity: 1;
        transform: translateY(0);
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .wm-hoists-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wm-hoist-card,
    .wm-hoist-wide,
    .wm-hoist-card:last-child {
        grid-column: span 1;
        min-height: 260px;
    }
    
    .wm-hoists-header h2 {
        font-size: 24px;
    }
    
    .wm-hoists-header p {
        font-size: 14px;
    }
    
    .wm-hoist-content {
        padding: 20px;
    }
    
    .wm-hoist-content h3 {
        font-size: 18px;
    }
    
    .wm-hoist-content p {
        -webkit-line-clamp: 2;
    }
}





 /* ========================================
   ABOUT PAGE STYLES
   ======================================== */







.story-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.story-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -20px;
}

/* Header */
.story-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,233,0,0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.story-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.story-header h2 span {
    color: var(--primary);
}

.story-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Wrapper */
.story-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==================== LEFT - IMAGES ==================== */
.story-images {
    position: relative;
    height: 550px;
}

.story-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-img.active {
    opacity: 1;
    transform: scale(1);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}

/* Image Counter */
.story-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.story-counter .current {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.story-counter .divider {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    position: relative;
}

.story-counter .divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--primary);
}

.story-counter .total {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* ==================== RIGHT - CONTENT ==================== */
.story-content {
    position: relative;
    padding-left: 40px;
}

/* Progress Bar */
.story-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255,255,255,0.1);
}

.story-progress-bar {
    width: 100%;
    height: 33.33%;
    background: var(--primary);
    transition: transform 0.5s ease;
}

/* Cards */
.story-cards {
    position: relative;
    min-height: 350px;
}

.story-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.story-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.story-card-num {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: -30px;
}

.story-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.story-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.story-card p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Highlights */
.story-highlights {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-highlights li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.story-highlights li:last-child {
    border-right: none;
    padding-right: 0;
}

.story-highlights li strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.story-highlights li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== NAVIGATION ==================== */
.story-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

.story-btn {
    width: 55px;
    height: 55px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.story-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot:hover {
    background: rgba(255,255,255,0.4);
}

.story-dot.active {
    width: 40px;
    background: var(--primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .story-wrapper {
        gap: 50px;
    }
    
    .story-images {
        height: 480px;
    }
    
    .story-card h3 {
        font-size: 32px;
    }
    
    .story-card-num {
        font-size: 60px;
        margin-bottom: -20px;
    }
}

@media (max-width: 992px) {
    .story-section {
        padding: 80px 0;
    }
    
    .story-header {
        margin-bottom: 50px;
    }
    
    .story-header h2 {
        font-size: 36px;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-images {
        height: 400px;
    }
    
    .story-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .story-progress {
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        width: 100%;
        height: 3px;
    }
    
    .story-progress-bar {
        width: 33.33%;
        height: 100%;
        transition: transform 0.5s ease;
    }
    
    .story-cards {
        min-height: 320px;
    }
    
    .story-card-num {
        display: none;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }
    
    .story-bg-text {
        font-size: 35vw;
    }
    
    .story-header h2 {
        font-size: 30px;
    }
    
    .story-header p {
        font-size: 15px;
    }
    
    .story-images {
        height: 320px;
    }
    
    .story-counter .current {
        font-size: 36px;
    }
    
    .story-counter .divider {
        width: 40px;
    }
    
    .story-card h3 {
        font-size: 26px;
    }
    
    .story-card p {
        font-size: 14px;
    }
    
    .story-highlights {
        gap: 20px;
    }
    
    .story-highlights li {
        padding-right: 20px;
    }
    
    .story-highlights li strong {
        font-size: 20px;
    }
    
    .story-nav {
        margin-top: 35px;
    }
    
    .story-btn {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .story-section {
        padding: 50px 0;
    }
    
    .story-tag {
        font-size: 10px;
        padding: 8px 15px;
    }
    
    .story-header h2 {
        font-size: 26px;
    }
    
    .story-images {
        height: 260px;
    }
    
    .story-counter {
        bottom: 20px;
        left: 20px;
    }
    
    .story-counter .current {
        font-size: 28px;
    }
    
    .story-cards {
        min-height: 350px;
    }
    
    .story-card h3 {
        font-size: 22px;
    }
    
    .story-card p {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .story-highlights {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .story-highlights li {
        border-right: none;
        padding-right: 0;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .story-highlights li strong {
        font-size: 18px;
    }
    
    .story-nav {
        justify-content: center;
    }
    
    .story-btn {
        width: 44px;
        height: 44px;
    }
    
    .story-dot {
        width: 10px;
        height: 10px;
    }
    
    .story-dot.active {
        width: 30px;
    }
}



/* ==================== CERTIFICATES SECTION ==================== */

.certificates-section {
    margin-top: 2rem;    /* space before */
    margin-bottom: 2rem; /* space after */
}

.cert-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.cert-header {
    text-align: center;
    margin-bottom: 60px;
}

.cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cert-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.cert-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Certificate List */
.cert-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Certificate Item */
.cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

/* Icon */
.cert-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cert-icon i {
    font-size: 20px;
    color: var(--dark);
}

.cert-item:hover .cert-icon {
    background: var(--dark);
}

.cert-item:hover .cert-icon i {
    color: var(--primary);
}

/* Info */
.cert-info {
    flex: 1;
    min-width: 0;
}

.cert-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cert-info span {
    font-size: 13px;
    color: var(--gray);
}

/* Meta */
.cert-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cert-size {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-download {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cert-download i {
    font-size: 14px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.cert-item:hover .cert-download {
    background: var(--primary);
}

.cert-item:hover .cert-download i {
    color: var(--dark);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .cert-section {
        padding: 80px 0;
    }
    
    .cert-header h2 {
        font-size: 36px;
    }
    
    .cert-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .cert-section {
        padding: 60px 0;
    }
    
    .cert-header h2 {
        font-size: 30px;
    }
    
    .cert-header p {
        font-size: 15px;
    }
    
    .cert-item {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .cert-icon {
        width: 45px;
        height: 45px;
    }
    
    .cert-icon i {
        font-size: 18px;
    }
    
    .cert-info h4 {
        font-size: 14px;
    }
    
    .cert-info span {
        font-size: 12px;
    }
    
    .cert-size {
        display: none;
    }
    
    .cert-download {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .cert-section {
        padding: 50px 0;
    }
    
    .cert-tag {
        font-size: 10px;
        padding: 8px 15px;
    }
    
    .cert-header h2 {
        font-size: 26px;
    }
    
    .cert-header {
        margin-bottom: 40px;
    }
    
    .cert-list {
        gap: 10px;
    }
    
    .cert-item {
        padding: 15px;
        gap: 12px;
    }
    
    .cert-item:hover {
        transform: none;
    }
    
    .cert-icon {
        width: 42px;
        height: 42px;
    }
    
    .cert-icon i {
        font-size: 16px;
    }
    
    .cert-info h4 {
        font-size: 13px;
        white-space: normal;
    }
    
    .cert-info span {
        font-size: 11px;
        display: block;
        margin-top: 2px;
    }
    
    .cert-download {
        width: 36px;
        height: 36px;
    }
    
    .cert-download i {
        font-size: 12px;
    }
}


:root {
            --primary: #ffe900;
            --dark: #0a0a0a;
            --gray: #666;
            --light-bg: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #fff;
            font-family: "Poppins", sans-serif;
            color: var(--dark);
        }

        /* ======== CATALOGUE SECTION ======== */
        .catalogue-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        /* ======== HEADER ======== */
        .catalogue-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .catalogue-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--dark);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .catalogue-header h2 {
            font-size: 46px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .catalogue-header p {
            font-size: 16px;
            color: var(--gray);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ======== GRID ======== */
        .catalogue-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* ======== CARD ======== */
        .catalogue-card {
            position: relative;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
        }

        .catalogue-card:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            transform: translateY(-8px);
        }

        /* ======== THUMB - A4 RATIO (1:1.414) ======== */
        .catalogue-thumb {
            position: relative;
            overflow: hidden;
            background: var(--dark);
            aspect-ratio: 1 / 1.414;
        }

        .catalogue-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: all 0.5s ease;
        }

        .catalogue-card:hover .catalogue-thumb img {
            transform: scale(1.05);
            opacity: 0.9;
        }

        /* Overlay */
        .catalogue-thumb::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
            pointer-events: none;
        }

        /* Download Overlay */
        .catalogue-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10,10,10,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .catalogue-card:hover .catalogue-overlay {
            opacity: 1;
        }

        .download-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--primary);
            color: var(--dark);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .catalogue-card:hover .download-btn {
            transform: translateY(0);
        }

        .download-btn:hover {
            background: #fff;
        }

        .download-btn i {
            font-size: 14px;
        }

        /* Badge */
        .catalogue-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 6px 12px;
            background: var(--primary);
            color: var(--dark);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
        }

        /* ======== CONTENT ======== */
        .catalogue-content {
            padding: 25px;
            border-top: 3px solid var(--primary);
        }

        .catalogue-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .catalogue-subtitle {
            color: var(--gray);
            font-size: 13px;
            margin-bottom: 20px;
        }

        /* ======== LANGUAGE FLAGS ======== */
        .catalogue-flags {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .flag-btn {
            width: 32px;
            height: 22px;
            padding: 0;
            border: 2px solid transparent;
            background: none;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.5;
            overflow: hidden;
        }

        .flag-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .flag-btn:hover {
            opacity: 0.8;
        }

        .flag-btn.active {
            opacity: 1;
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        /* ======== RESPONSIVE ======== */
        @media (max-width: 1200px) {
            .catalogue-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .catalogue-header h2 {
                font-size: 40px;
            }
        }

        @media (max-width: 992px) {
            .catalogue-section {
                padding: 80px 0;
            }
            
            .container {
                padding: 0 30px;
            }
            
            .catalogue-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .catalogue-header {
                margin-bottom: 50px;
            }
            
            .catalogue-header h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 768px) {
            .catalogue-section {
                padding: 60px 0;
            }
            
            .catalogue-header h2 {
                font-size: 28px;
            }
            
            .catalogue-header p {
                font-size: 15px;
            }
            
            .catalogue-grid {
                gap: 20px;
            }
            
            .catalogue-content {
                padding: 20px;
            }
            
            .catalogue-content h3 {
                font-size: 16px;
            }
            
            .flag-btn {
                width: 28px;
                height: 20px;
            }
        }

        @media (max-width: 576px) {
            .catalogue-section {
                padding: 50px 0;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .catalogue-tag {
                font-size: 10px;
                padding: 8px 15px;
            }
            
            .catalogue-header h2 {
                font-size: 24px;
            }
            
            .catalogue-header {
                margin-bottom: 40px;
            }
            
            .catalogue-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .catalogue-content {
                padding: 15px;
            }
            
            .catalogue-content h3 {
                font-size: 14px;
            }
            
            .catalogue-subtitle {
                font-size: 12px;
                margin-bottom: 15px;
            }
            
            .catalogue-badge {
                top: 10px;
                left: 10px;
                padding: 4px 8px;
                font-size: 8px;
            }
            
            .flag-btn {
                width: 26px;
                height: 18px;
            }
        }


        /* ========================================
   CRANE COMPONENTS - ATTRACTIVE DESIGN
   Wimac Turkey
   ======================================== */

:root {
    --comp-yellow: #ffe900;
    --comp-dark: #0a0a0a;
    --comp-text: #333;
    --comp-gray: #666;
    --comp-light: #f5f5f5;
    --comp-border: #e8e8e8;
    --comp-white: #fff;
}

/* ==================== MAIN SECTION ==================== */
.comp-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
    padding: 60px 0;
    min-height: 600px;
}

.comp-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

/* ==================== SIDEBAR - HOISTS STYLE ==================== */
.comp-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.comp-sidebar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--comp-light);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--comp-dark);
}

.comp-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--comp-gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--comp-border);
}

/* Sidebar Menu */
.comp-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comp-sidebar-menu .comp-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--comp-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.comp-sidebar-menu .comp-menu-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--comp-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.comp-sidebar-menu .comp-menu-btn::after {
    display: none !important;
}

.comp-sidebar-menu .comp-menu-btn:hover {
    background: var(--comp-light);
}

.comp-sidebar-menu .comp-menu-btn.active {
    background: var(--comp-dark);
    color: #fff;
}

.comp-sidebar-menu .comp-menu-btn.active::before {
    transform: scaleY(1);
}

.comp-sidebar-menu .comp-menu-btn .comp-menu-icon {
    width: 20px;
    font-size: 14px;
    color: var(--comp-yellow);
}

.comp-sidebar-menu .comp-menu-btn.active .comp-menu-icon {
    color: var(--comp-yellow);
}

/* Sidebar CTA */
.comp-sidebar-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--comp-light);
    border: 1px dashed var(--comp-border);
}

.comp-sidebar-cta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--comp-dark);
    margin-bottom: 10px;
}

.comp-sidebar-cta p {
    font-size: 13px;
    color: var(--comp-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.comp-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--comp-yellow);
    color: var(--comp-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.comp-sidebar-cta a:hover {
    background: var(--comp-dark);
    color: #fff;
}

/* ==================== CONTENT PANELS ==================== */
.comp-content {
    min-width: 0;
}

.comp-panel {
    display: none;
    background: var(--comp-white);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.06),
        0 0 0 1px rgba(0,0,0,0.03);
    animation: panelFadeIn 0.4s ease;
}

.comp-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Panel Header */
.comp-panel-head {
    padding: 35px 40px 30px;
    border-bottom: 1px solid var(--comp-border);
    position: relative;
}

.comp-panel-head::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 40px;
    width: 80px;
    height: 4px;
    background: var(--comp-yellow);
    border-radius: 2px;
}

.comp-panel-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--comp-dark);
    margin: 0;
}

/* Panel Body */
.comp-panel-body {
    padding: 35px 40px 45px;
}

.comp-panel-body p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--comp-text);
    margin-bottom: 22px;
}

.comp-panel-body p:last-child {
    margin-bottom: 0;
}

/* ==================== MORE LINK ==================== */
.comp-more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 28px;
    background: var(--comp-dark);
    color: var(--comp-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(10,10,10,0.15);
}

.comp-more-link i {
    color: var(--comp-yellow);
    transition: transform 0.4s ease;
}

.comp-more-link:hover {
    background: var(--comp-yellow);
    color: var(--comp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,233,0,0.35);
}

.comp-more-link:hover i {
    color: var(--comp-dark);
    transform: translateX(6px);
}

/* ==================== IMAGES ==================== */
.comp-img {
    margin: 28px 0;
}

.comp-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.comp-img figcaption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--comp-gray);
    font-style: italic;
}

/* Image Grid - Two Images */
.comp-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 28px 0;
}

.comp-img-grid figure {
    margin: 0;
}

.comp-img-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

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

.comp-img-grid figcaption {
    margin-top: 10px;
    font-size: 12px;
    color: var(--comp-gray);
    text-align: center;
}

/* Image Trio - Three Images */
.comp-img-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}

.comp-img-trio figure {
    margin: 0;
}

.comp-img-trio img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.comp-img-trio figure:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.comp-img-trio figcaption {
    margin-top: 10px;
    font-size: 12px;
    color: var(--comp-gray);
    text-align: center;
}

/* ==================== SUBTYPES ==================== */
.comp-subtype {
    margin: 32px 0;
    padding: 28px;
    background: var(--comp-light);
    border-radius: 16px;
    border-left: 5px solid var(--comp-yellow);
}

.comp-subtype h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--comp-dark);
    margin: 0 0 18px;
    padding-left: 18px;
    border-left: 4px solid var(--comp-yellow);
}

/* ==================== TABLE ==================== */
.comp-table {
    margin: 32px 0;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--comp-border);
}

.comp-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comp-table thead th {
    background: var(--comp-yellow);
    color: var(--comp-dark);
    padding: 16px 18px;
    text-align: center;
    vertical-align: top;
    font-weight: 700;
    font-size: 14px;
}

.comp-table thead th:first-child {
    text-align: left;
}

.comp-table thead th span {
    display: block;
}

.comp-table .th-main {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}

.comp-table .th-sub {
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 5px;
}

.comp-table .th-code {
    font-size: 12px;
    font-weight: 600;
}

.comp-table tbody td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--comp-border);
    font-size: 14px;
    color: var(--comp-text);
    background: var(--comp-white);
}

.comp-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
}

.comp-table tbody tr:hover td {
    background: #fffde7;
}

.comp-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== FEATURES LIST ==================== */
.comp-features {
    margin-top: 32px;
    padding: 28px;
    background: var(--comp-light);
    border-radius: 14px;
}

.comp-features h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--comp-dark);
    margin: 0 0 18px;
}

.comp-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comp-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--comp-text);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comp-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comp-features li i {
    color: var(--comp-yellow);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ==================== MOBILE BUTTON ==================== */
.comp-mobile-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: var(--comp-dark);
    color: var(--comp-white);
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.3),
        0 0 0 3px rgba(255,233,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 10px;
}

.comp-mobile-btn i {
    color: var(--comp-yellow);
    font-size: 16px;
}

.comp-mobile-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 
        0 15px 45px rgba(0,0,0,0.35),
        0 0 0 3px rgba(255,233,0,0.5);
}

.comp-mobile-btn:active {
    transform: translateX(-50%) translateY(-2px);
}

/* ==================== OVERLAY ==================== */
.comp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.comp-overlay.active {
    display: block;
    opacity: 1;
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1100px) {
    .comp-wrapper {
        grid-template-columns: 260px 1fr;
        gap: 35px;
    }
    
    .comp-panel-head,
    .comp-panel-body {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .comp-panel-head::after {
        left: 30px;
    }
    
    .comp-sidebar-menu .comp-menu-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 992px) {
    .comp-section {
        padding: 35px 0 110px;
    }
    
    .comp-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Sidebar as drawer */
    .comp-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 88%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        z-index: 1999;
        padding: 30px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 30px rgba(0,0,0,0.2);
    }
    
    .comp-sidebar.active {
        transform: translateX(0);
        box-shadow: 20px 0 60px rgba(0,0,0,0.3);
    }
    
    .comp-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .comp-mobile-btn {
        display: flex;
    }
    
    .comp-panel {
        border-radius: 16px;
    }
    
    .comp-panel-head {
        padding: 28px 25px 24px;
    }
    
    .comp-panel-head::after {
        left: 25px;
        width: 60px;
    }
    
    .comp-panel-head h2 {
        font-size: 24px;
    }
    
    .comp-panel-body {
        padding: 28px 25px 35px;
    }
    
    .comp-img-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .comp-img-trio {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comp-img-trio img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .comp-section {
        padding: 25px 0 100px;
    }
    
    .comp-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .comp-sidebar-title {
        font-size: 11px;
    }
    
    .comp-sidebar-menu .comp-menu-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .comp-sidebar-cta {
        margin-top: 25px;
        padding: 20px;
    }
    
    .comp-panel {
        border-radius: 14px;
    }
    
    .comp-panel-head {
        padding: 22px 20px 18px;
    }
    
    .comp-panel-head h2 {
        font-size: 21px;
    }
    
    .comp-panel-body {
        padding: 22px 20px 30px;
    }
    
    .comp-panel-body p {
        font-size: 14px;
    }
    
    .comp-subtype h3 {
        font-size: 17px;
    }
    
    .comp-more-link {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        font-size: 13px;
    }
    
    .comp-features {
        padding: 22px 18px;
    }
    
    .comp-features li {
        font-size: 13px;
    }
    
    .comp-table {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .comp-mobile-btn {
        padding: 14px 26px;
        font-size: 13px;
        bottom: 20px;
    }
}

/* ==================== SAFE AREA ==================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .comp-mobile-btn {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    .comp-sidebar {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ==================== SCROLLBAR ==================== */
.comp-sidebar::-webkit-scrollbar {
    width: 5px;
}

.comp-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.comp-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.comp-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.2);
}



/* ========================================
   WIMAC HOISTS PAGE - COMPLETE CSS
   ======================================== */

/* ======== VARIABLES ======== */
:root {
    --primary: #ffe900;
    --dark: #0a0a0a;
    --gray: #666;
    --light-bg: #f5f5f5;
    --border: #e5e5e5;
}

/* ======== PAGE HEADER ======== */
.hoist-hero {
    background: var(--dark);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hoist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,233,0,0.05) 100%);
    pointer-events: none;
}

.hoist-hero-content {
    position: relative;
    z-index: 2;
}

.hoist-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hoist-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hoist-breadcrumb a:hover {
    color: var(--primary);
}

.hoist-breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.hoist-breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

.hoist-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.hoist-hero h1 span {
    color: var(--primary);
}

.hoist-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.7;
}

/* ======== MAIN LAYOUT ======== */
.hoist-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 60px 0 100px;
}

/* ======== SIDEBAR ======== */
.hoist-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.hoist-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

/* Sidebar Navigation - Using DIV to avoid nav conflicts */
.hoist-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hoist-sidebar-menu .hoist-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.hoist-sidebar-menu .hoist-menu-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hoist-sidebar-menu .hoist-menu-btn::after {
    display: none !important;
}

.hoist-sidebar-menu .hoist-menu-btn:hover {
    background: var(--light-bg);
    padding-left: 18px;
}

.hoist-sidebar-menu .hoist-menu-btn.active {
    background: var(--dark);
    color: #fff;
}

.hoist-sidebar-menu .hoist-menu-btn.active::before {
    transform: scaleY(1);
}

.hoist-sidebar-menu .hoist-menu-btn .hoist-menu-icon {
    width: 20px;
    font-size: 14px;
    color: var(--primary);
}

.hoist-sidebar-menu .hoist-menu-btn.active .hoist-menu-icon {
    color: var(--primary);
}

/* Sidebar CTA */
.hoist-sidebar-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--light-bg);
    border: 1px dashed var(--border);
}

.hoist-sidebar-cta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.hoist-sidebar-cta p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.hoist-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hoist-sidebar-cta a:hover {
    background: var(--dark);
    color: #fff;
}

/* Sidebar Close Button */
.hoist-sidebar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
}

/* ======== CONTENT AREA ======== */
/* Fix for fixed header offset when scrolling */
.hoist-content {
    scroll-margin-top: 120px;
}

.hoist-panel {
    scroll-margin-top: 120px;
}

/* Product Panel */
.hoist-panel {
    display: none;
}

.hoist-panel.active {
    display: block;
    animation: hoistFadeIn 0.4s ease;
}

@keyframes hoistFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== INTERACTIVE IMAGE ======== */
.hoist-interactive {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}



/* Subtle grid pattern */
.hoist-interactive::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

.hoist-interactive img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 35px;
    z-index: 1;
}

/* Ensure hotspots are above grid */
.hoist-hotspot {
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .hoist-interactive {
        padding: 20px;
    }
    
    .hoist-interactive::before {
        font-size: 10px;
        padding: 10px 15px;
    }
    
    .hoist-interactive img {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hoist-interactive {
        padding: 15px;
    }
    
    .hoist-interactive::before {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ======== HOTSPOT STYLES ======== */
.hoist-hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hoist-hotspot-dot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hoist-hotspot-dot::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255,233,0,0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.hoist-hotspot:hover .hoist-hotspot-dot::before {
    transform: scale(1.2);
}

.hoist-hotspot-dot::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,233,0,0.3);
    border-radius: 50%;
    animation: hoistPulse 2s ease-in-out infinite;
}

@keyframes hoistPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Black center dot */
.hoist-hotspot-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hoist-hotspot-center::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--dark);
    border-radius: 50%;
}

/* Hotspot Tooltip */
.hoist-hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hoist-hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
}

.hoist-hotspot:hover .hoist-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 20px);
}

/* ======== DESCRIPTION SECTION ======== */
.hoist-description {
    margin-bottom: 50px;
}

.hoist-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.hoist-description p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.hoist-description p:last-child {
    margin-bottom: 0;
}

/* ======== DUAL IMAGES ======== */
.hoist-dual-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.hoist-dual-img {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.hoist-dual-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hoist-dual-img:hover img {
    transform: scale(1.05);
}

.hoist-dual-img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ======== FEATURES LIST ======== */
.hoist-features {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--light-bg);
}

.hoist-features h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.hoist-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hoist-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.hoist-feature-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hoist-feature-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hoist-feature-item span {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

/* ======== SPECIFICATIONS TABLE ======== */
/* ======== SPECIFICATIONS TABLE ======== */
/* ======== SPECIFICATIONS TABLE ======== */
.hoist-specs {
    margin-bottom: 50px;
}

.hoist-specs h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.hoist-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
}

.hoist-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.hoist-table thead {
    background: var(--primary);
}

/* Vertical header text - ALL SCREENS */
.hoist-table th {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    line-height: 1.2;
    padding: 15px 5px;
    height: 180px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    border-right: 1px solid rgb(0, 0, 0);
}


.hoist-table .eq th {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    line-height: 1.2;
    padding: 15px 5px;
    height: 180px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    border-right: 1px solid rgb(0, 0, 0);
}

.hoist-table th:last-child {
    border-right: none;
}

.hoist-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.hoist-table tbody tr:hover {
    background: var(--light-bg);
}

.hoist-table tbody tr:last-child {
    border-bottom: none;
}

.hoist-table td {
    padding: 12px 8px;
    font-size: 13px;
    color: var(--dark);
    text-align: center;
    border-right: 1px solid var(--border);
}

.hoist-table td:last-child {
    border-right: none;
}

.hoist-table td:first-child {
    font-weight: 600;
    background: rgba(255,233,0,0.1);
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* ======== RESPONSIVE TABLE ======== */
@media (max-width: 992px) {
    .hoist-table-wrapper {
        overflow-x: hidden;
    }
    
    .hoist-table th {
        height: 160px;
        padding: 12px 3px;
        font-size: 9px;
    }
    
    .hoist-table td {
        padding: 8px 4px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hoist-table th {
        height: 150px;
        padding: 10px 2px;
        font-size: 8px;
    }
    
    .hoist-table td {
        padding: 6px 3px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .hoist-table-wrapper {
        margin: 0 -20px;
        border-left: none;
        border-right: none;
    }
    
    .hoist-table th {
        height: 140px;
        padding: 8px 1px;
        font-size: 7px;
    }
    
    .hoist-table td {
        padding: 5px 2px;
        font-size: 8px;
    }
}

@media (max-width: 400px) {
    .hoist-table th {
        height: 120px;
        padding: 6px 1px;
        font-size: 6px;
    }
    
    .hoist-table td {
        padding: 4px 1px;
        font-size: 7px;
    }
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* Table Note */
.hoist-table-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255,233,0,0.1);
    border-left: 4px solid var(--primary);
}

.hoist-table-note i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.hoist-table-note p {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* ======== ADDITIONAL NOTES ======== */
.hoist-notes {
    padding: 30px;
    background: var(--dark);
}

.hoist-notes h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.hoist-notes ul {
    list-style: none;
}

.hoist-notes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hoist-notes li:last-child {
    margin-bottom: 0;
}

.hoist-notes li i {
    color: var(--primary);
    margin-top: 4px;
}

/* ======== MOBILE TOGGLE ======== */
.hoist-mobile-toggle {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
}

.hoist-mobile-toggle i {
    margin-right: 10px;
    color: var(--primary);
}

/* Sidebar Overlay */
.hoist-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.hoist-overlay.active {
    display: block;
}

/* ======== RESPONSIVE DESIGN ======== */
/* Mobile table adjustments - all text vertical */
@media (max-width: 992px) {
    .hoist-table-wrapper {
        overflow-x: hidden;
    }
    
    .hoist-table {
        table-layout: fixed;
        width: 100%;
    }
    
    .hoist-table th,
    .hoist-table td {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        vertical-align: middle;
        text-align: center;
        overflow: visible;
    }
    
    .hoist-table th {
        white-space: normal;
        word-wrap: break-word;
        padding: 15px 3px;
        height: 220px;
        font-size: 9px;
        letter-spacing: 0;
        line-height: 1.2;
    }
    
    .hoist-table td {
        white-space: nowrap;
        padding: 10px 3px;
        height: 100px;
        font-size: 10px;
    }
    
    .hoist-table td:first-child {
        background: rgba(255,233,0,0.15);
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .hoist-table th {
        height: 200px;
        padding: 12px 2px;
        font-size: 8px;
    }
    
    .hoist-table td {
        padding: 8px 2px;
        height: 80px;
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .hoist-table-wrapper {
        margin: 0 -20px;
        border-left: none;
        border-right: none;
    }
    
    .hoist-table th {
        height: 180px;
        padding: 10px 1px;
        font-size: 7px;
    }
    
    .hoist-table td {
        padding: 6px 1px;
        height: 70px;
        font-size: 8px;
    }
}

@media (max-width: 400px) {
    .hoist-table th {
        height: 160px;
        padding: 8px 1px;
        font-size: 6px;
    }
    
    .hoist-table td {
        padding: 5px 1px;
        height: 60px;
        font-size: 7px;
    }
}
@media (max-width: 1200px) {
    .hoist-main {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .hoist-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hoist-main {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hoist-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 30px;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 30px rgba(0,0,0,0.2);
    }
    
    .hoist-sidebar.active {
        left: 0;
    }
    
    .hoist-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hoist-mobile-toggle {
        display: flex;
        align-items: center;
    }
    
    .hoist-hero h1 {
        font-size: 34px;
    }
    
    .hoist-hero p {
        font-size: 15px;
    }
    
    .hoist-dual-images {
        grid-template-columns: 1fr;
    }
    
    .hoist-dual-img img {
        height: 250px;
    }
    
    .hoist-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hoist-hero {
        padding: 100px 0 50px;
    }
    
    .hoist-hero h1 {
        font-size: 28px;
    }
    
    .hoist-main {
        padding: 40px 0 80px;
    }
    
    .hoist-description h2 {
        font-size: 24px;
    }
    
    .hoist-features {
        padding: 30px 20px;
    }
    
    .hoist-features h3,
    .hoist-specs h3 {
        font-size: 20px;
    }
    
    .hoist-hotspot {
        width: 36px;
        height: 36px;
    }
    
    .hoist-hotspot-dot::before {
        width: 14px;
        height: 14px;
    }
    
    .hoist-hotspot-dot::after {
        width: 36px;
        height: 36px;
    }
    
    .hoist-hotspot-center::before {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 576px) {
    .hoist-hero h1 {
        font-size: 24px;
    }
    
    .hoist-description h2 {
        font-size: 20px;
    }
    
    .hoist-feature-item {
        padding: 12px;
    }
    
    .hoist-table th,
    .hoist-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .hoist-hotspot {
        width: 32px;
        height: 32px;
    }
    
    .hoist-hotspot-dot::before {
        width: 12px;
        height: 12px;
    }
    
    .hoist-hotspot-dot::after {
        width: 32px;
        height: 32px;
    }
    
    .hoist-hotspot-center::before {
        width: 4px;
        height: 4px;
    }
    
    .hoist-hotspot-tooltip {
        font-size: 11px;
        padding: 8px 12px;
    }
}


/* ======== EX-PROOF CTA BUTTON ======== */
.hoist-exproof-cta {
    margin-top: 40px;
}

.hoist-exproof-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 30px 40px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
}

.hoist-exproof-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.hoist-exproof-btn > i:first-child {
    font-size: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.hoist-exproof-btn:hover > i:first-child {
    color: var(--dark);
}

.hoist-exproof-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hoist-exproof-btn strong {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hoist-exproof-btn small {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.hoist-exproof-btn > i:last-child {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hoist-exproof-btn:hover > i:last-child {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
    .hoist-exproof-btn {
        padding: 25px 30px;
        gap: 15px;
    }
    
    .hoist-exproof-btn > i:first-child {
        font-size: 28px;
    }
    
    .hoist-exproof-btn strong {
        font-size: 16px;
    }
    
    .hoist-exproof-btn small {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hoist-exproof-btn {
        padding: 20px;
        gap: 12px;
    }
    
    .hoist-exproof-btn > i:first-child {
        font-size: 24px;
    }
    
    .hoist-exproof-btn strong {
        font-size: 14px;
    }
    
    .hoist-exproof-btn small {
        font-size: 11px;
    }
    
    .hoist-exproof-btn > i:last-child {
        font-size: 14px;
    }
}





/* ======== ELEGANT SHOWCASE GALLERY ======== */
.ec-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.ec-showcase-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ec-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.ec-showcase-img {
    position: relative;
    overflow: hidden;
}

.ec-showcase-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ec-showcase-item:hover .ec-showcase-img img {
    transform: scale(1.08);
}

.ec-showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.ec-showcase-info {
    padding: 25px 30px;
    border-top: 3px solid var(--primary);
}

.ec-showcase-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.ec-showcase-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ec-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ec-showcase-img img {
        height: 220px;
    }
}


/* ======== MOBILE SIDEBAR - STACKED ITEMS ======== */
@media (max-width: 992px) {
    .hoist-sidebar-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .hoist-sidebar-menu .hoist-menu-btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px 20px;
        font-size: 15px;
    }
}


/* ======== SIMPLE 2-COLUMN TABLE (HORIZONTAL TEXT) ======== */
.hoist-table-simple {
    width: 100%;
    border-collapse: collapse;
}

.hoist-table-simple thead {
    background: var(--primary);
}

.hoist-table-simple th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-align: left;
    border-bottom: 2px solid var(--dark);
}

.hoist-table-simple th:last-child {
    text-align: left;
}

.hoist-table-simple tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.hoist-table-simple tbody tr:hover {
    background: rgba(255,233,0,0.08);
}

.hoist-table-simple tbody tr:last-child {
    border-bottom: none;
}

.hoist-table-simple td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--dark);
    text-align: left;
    vertical-align: middle;
}

.hoist-table-simple td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: rgba(255,233,0,0.1);
    width: 40%;
}

/* Simple Table - Responsive (stays horizontal) */
@media (max-width: 768px) {
    .hoist-table-simple th,
    .hoist-table-simple td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .hoist-table-simple td:first-child {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .hoist-table-simple th,
    .hoist-table-simple td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .hoist-table-simple td:first-child {
        width: 50%;
    }
}


/* ========================================
   WIMAC CRANE - PAGE STYLES
   About, Contact, Product Inner Pages
   ======================================== */

/* ========================================
   PAGE HERO SECTION
   ======================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-short {
    min-height: 320px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    padding: 100px 0 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--header-bg);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: var(--header-bg);
}

.page-hero-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--dark);
    padding: 40px;
    border-radius: 20px;
    color: var(--light);
}

.contact-info-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-box > p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,233,0,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--header-bg);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
}

.contact-info-text p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
}

.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--header-bg);
    color: var(--dark);
    transform: translateY(-3px);
}


/* Contact Form */
.contact-form-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.contact-form-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form-box > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--header-bg);
    box-shadow: 0 0 0 3px rgba(255,233,0,0.2);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--light);
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--header-bg);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,233,0,0.3);
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-card {
    background: var(--light);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(255,233,0,0.3);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,233,0,0.15), rgba(255,233,0,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-icon {
    background: var(--header-bg);
    color: var(--dark);
}

.quick-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.quick-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: var(--dark);
    gap: 12px;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 50px;
    background: var(--light);
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map-overlay-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.map-overlay-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.map-overlay-card p i {
    color: var(--header-bg);
    margin-right: 8px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--header-bg);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: var(--dark);
    color: var(--light);
}

/* ========================================
   PRODUCT PAGE STYLES
   ======================================== */

/* Product Hero */
.product-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.product-hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
    max-width: 700px;
}

.product-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
}

.product-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--header-bg);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* At a Glance */
.product-glance {
    padding: 60px 0;
    background: var(--dark);
}

.product-glance h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.glance-subtitle {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.glance-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 25px;
    transition: all 0.4s ease;
}

.glance-item:hover {
    background: rgba(255,233,0,0.1);
    border-color: rgba(255,233,0,0.3);
    transform: translateY(-5px);
}

.glance-icon {
    width: 55px;
    height: 55px;
    background: var(--header-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    flex-shrink: 0;
}

.glance-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
}

.glance-text span {
    font-size: 13px;
    color: var(--gray-light);
}

/* Product Gallery */
.product-gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gallery-main {
    margin-bottom: 20px;
}

.gallery-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.gallery-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gallery-thumb {
    width: 100px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    border-color: var(--header-bg);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Description */
.product-description {
    padding: 10px 0;
    background: var(--light);
}

.product-desc-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.product-desc-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.product-desc-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    margin: 40px 0;
}

.product-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: var(--gray-dark);
}

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

.product-features li i {
    color: var(--header-bg);
    font-size: 16px;
}

/* Product Types Sidebar */
.product-types {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.product-types h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--header-bg);
}

.type-card {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.type-card:last-child {
    border-bottom: none;
}

.type-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,233,0,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.type-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.type-info p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

/* Downloads */
.product-download {
    background: var(--dark);
    border-radius: 16px;
    padding: 30px;
}

.product-download h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

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

.download-item:hover {
    background: rgba(255,233,0,0.15);
}

.download-item i:first-child {
    color: #ef4444;
    font-size: 20px;
}

.download-item span {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
}

.download-item i:last-child {
    color: var(--gray-light);
    font-size: 14px;
}

/* Specifications Table */
.product-specs {
    padding: 80px 0;
    background: #f8fafc;
}

.product-specs h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.specs-table th,
.specs-table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
}

.specs-table th {
    background: var(--dark);
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.specs-table td {
    border-bottom: 1px solid #e5e7eb;
    color: var(--gray-dark);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background: rgba(255,233,0,0.05);
}

.specs-note {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Applications */
.product-applications {
    padding: 80px 0;
    background: var(--light);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.app-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.app-card:hover {
    background: var(--light);
    border-color: rgba(255,233,0,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,233,0,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.app-card:hover .app-icon {
    background: var(--header-bg);
    color: var(--dark);
}

.app-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.app-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

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

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
}

.related-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.related-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.related-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.related-card:hover .related-link {
    color: var(--dark);
    gap: 12px;
}

/* ========================================
   PAGE CTA SECTION
   ======================================== */
.page-cta {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,233,0,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 35px;
}

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

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s ease;
}

.cta-buttons .btn-primary {
    background: var(--header-bg);
    color: var(--dark);
}

.cta-buttons .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,233,0,0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--light);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - PAGES
   ======================================== */
@media (max-width: 1200px) {
    .about-intro-grid {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-desc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-desc-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-content {
        padding: 80px 0 50px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-content {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .about-intro-image {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 30px;
    }
    
    .contact-form-box {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
    }
    
    .map-overlay-card {
        position: static;
        margin: 20px;
        border-radius: 12px;
    }
    
    .product-hero-content h1 {
        font-size: 36px;
    }
    
    .product-hero-subtitle {
        font-size: 16px;
    }
    
    .glance-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main-image img {
        height: 300px;
    }
    
    .gallery-thumbs {
        flex-wrap: wrap;
    }
    
    .product-desc-sidebar {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 26px;
    }
    
    .product-hero-content h1 {
        font-size: 28px;
    }
    
    .about-intro-content h2 {
        font-size: 26px;
    }
    
    .stat-card .stat-number {
        font-size: 32px;
    }
    
    .glance-item {
        flex-direction: column;
        text-align: center;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
}


/* ========================================
   PRODUCT PAGE - MODERN ELEGANT DESIGN
   Wimac Crane Turkey
   ======================================== */

/* ======== VARIABLES ======== */
:root {
    --primary: #ffe900;
    --dark: #0a0a0a;
    --gray: #666;
    --gray-light: #999;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 15px 50px rgba(0,0,0,0.1);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== PRODUCT HERO - CINEMATIC ======== */
.product-hero {
    position: relative;
    min-height: 600px;
    max-height: 800px;
    height: 85vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255,233,0,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(255,233,0,0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Hero Top Bar */
.product-hero-topbar {
    padding: 20px 0;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    height: 80px;
}

.product-hero-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,233,0,0.1);
    border: 1px solid rgba(255,233,0,0.25);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-hero-nav {
    display: flex;
    gap: 8px;
}

.product-hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.product-hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* Hero Main */
.product-hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

.product-hero-main .container {
    width: 100%;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Hero Text Side */
.product-hero-text {
    position: relative;
    z-index: 10;
}

.product-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.product-hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.product-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 360px;
}

/* Hero Stats */
.product-hero-stats {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.product-stat {
    text-align: left;
}

.product-stat-value {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.product-stat-value small {
    font-size: 20px;
    font-weight: 700;
}

.product-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Hero Gallery - Cinematic Slider */
.product-hero-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #111;
    overflow: hidden;
}

.product-hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.product-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.product-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Card */
.product-hero-floating {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--primary);
    padding: 18px 25px;
    z-index: 10;
}

.product-hero-floating-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.65;
    margin-bottom: 4px;
    color: var(--dark);
}

.product-hero-floating-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
}

/* Thumbnail Strip */
.product-hero-thumbs {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-hero-thumb {
    width: 70px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-hero-thumb:hover {
    opacity: 0.7;
}

.product-hero-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.product-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bar */
.product-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 15;
}

.product-hero-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0;
    animation: heroProgress 5s linear infinite;
}

@keyframes heroProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Scroll Indicator */
.product-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.product-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .product-hero-content {
        grid-template-columns: 360px 1fr;
        gap: 50px;
    }
    .product-hero-title { font-size: 46px; }
    .product-hero-gallery { min-height: 350px; }
}

@media (max-width: 992px) {
    .product-hero {
        min-height: auto;
        max-height: none;
        height: auto;
    }
    .product-hero-topbar { display: none; }
    .product-hero-main { padding: 0; }
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-hero-text { display: none; }
    .product-hero-gallery {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        background: var(--dark);
        overflow: visible;
    }
    .product-hero-slider-wrapper {
        position: relative;
        width: 100%;
        height: 60vw;
        min-height: 280px;
        max-height: 450px;
    }
    .product-hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .product-hero-scroll { display: none; }
    .product-hero-floating { bottom: 20px; left: 20px; padding: 15px 20px; z-index: 10; }
    .product-hero-floating-value { font-size: 20px; }
    .product-hero-thumbs {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        padding: 15px 20px;
        background: var(--dark);
        gap: 10px;
        width: 100%;
        z-index: 1;
    }
    .product-hero-thumb { 
        width: 60px; 
        height: 45px; 
        opacity: 0.6;
    }
    .product-hero-thumb.active {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .product-hero-slider-wrapper {
        height: 55vw;
        min-height: 200px;
        max-height: 320px;
    }
    .product-hero-floating { bottom: 15px; left: 15px; padding: 12px 16px; }
    .product-hero-floating-label { font-size: 9px; }
    .product-hero-floating-value { font-size: 18px; }
    .product-hero-thumbs { padding: 12px 15px; gap: 8px; }
    .product-hero-thumb { width: 50px; height: 38px; }
}

/* ======== PRODUCT OVERVIEW SECTION ======== */
.product-overview {
    background: #fff;
    padding: 20px 0;
    position: relative;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
}

/* Section Header */
.product-section-header {
    margin-bottom: 50px;
}

.product-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.product-section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.product-section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -1px;
}

/* Content Text */
.product-content-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

.product-content-text p:last-child {
    margin-bottom: 0;
}

.product-content-text strong {
    color: var(--dark);
}

/* Inline Gallery */
.product-inline-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 0;
}

.product-inline-img {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.product-inline-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-inline-img:hover img {
    transform: scale(1.08);
}

.product-inline-img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-inline-img:hover figcaption {
    transform: translateY(0);
}

/* Feature Cards */
.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.product-feature-card {
    padding: 30px;
    background: var(--light-bg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
}

.product-feature-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
}

.product-feature-card:hover::before {
    height: 100%;
}

.product-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-feature-card:hover .product-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.product-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ======== SIDEBAR ======== */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Specs Card - Premium Design */
.product-specs-card {
    background: linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.product-specs-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,233,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.product-specs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(255,233,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-specs-header i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
}

.product-specs-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.product-specs-list {
    padding: 10px 0;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.3s ease;
}

.product-spec-row:hover {
    background: rgba(255,233,0,0.03);
}

.product-spec-row:last-child {
    border-bottom: none;
}

.product-spec-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.product-spec-value {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-align: right;
    padding-left: 15px;
    position: relative;
}

.product-spec-value::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Downloads Card */
.product-downloads-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px;
}

.product-downloads-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.product-downloads-header i {
    color: var(--primary);
    font-size: 20px;
}

.product-downloads-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}

.product-download-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--light-bg);
    margin-bottom: 12px;
    text-decoration: none;
    transition: var(--transition);
}

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

.product-download-item:hover {
    background: var(--dark);
}

.product-download-item:hover .product-download-icon,
.product-download-item:hover .product-download-info span,
.product-download-item:hover .product-download-info small,
.product-download-item:hover > i {
    color: #fff;
}

.product-download-item:hover .product-download-icon {
    background: var(--primary);
    color: var(--dark);
}

.product-download-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #dc3545;
    transition: var(--transition);
}

.product-download-info {
    flex: 1;
}

.product-download-info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.product-download-info small {
    font-size: 12px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.product-download-item > i {
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition);
}

/* CTA Card */
.product-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #f5df00 100%);
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-cta-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.product-cta-icon {
    width: 70px;
    height: 70px;
    background: var(--dark);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.product-cta-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-cta-card p {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-cta-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.product-cta-phone:hover {
    transform: scale(1.05);
}

.product-cta-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}

.product-cta-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ======== INTERACTIVE SECTION ======== */
.product-interactive {
    background: var(--light-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.product-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, #fff, transparent);
    pointer-events: none;
}

.product-interactive-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.product-interactive-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* Type Switcher */
.product-type-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.product-type-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    border: 2px solid var(--border);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.product-type-btn:hover {
    border-color: var(--dark);
}

.product-type-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.product-type-btn i {
    color: var(--primary);
}

/* Image Wrapper */
.product-image-container {
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Subtle grid pattern */
.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

.product-main-visual {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.product-type-visual {
    display: none;
    position: relative;
}

.product-type-visual.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-type-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.product-type-label {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--primary);
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

@media (max-width: 768px) {
    .product-type-label {
        display: none;
    }
}

/* Hotspots */
.product-hotspot {
    position: absolute;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 100;
}

.product-hotspot-dot {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hotspot-dot::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255,233,0,0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-hotspot:hover .product-hotspot-dot::before {
    transform: scale(1.3);
}

.product-hotspot-dot::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255,233,0,0.25);
    border-radius: 50%;
    animation: hotspotPulse 2.5s ease-in-out infinite;
}

@keyframes hotspotPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
}

.product-hotspot-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
    z-index: 3;
}

/* Hotspot Popup */
.product-hotspot-popup {
    position: absolute;
    width: 340px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 99999;
    overflow: hidden;
}

.product-hotspot:hover .product-hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Popup Positioning */
.product-hotspot.popup-right .product-hotspot-popup {
    left: 55px;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
}

.product-hotspot.popup-right:hover .product-hotspot-popup {
    transform: translateY(-50%) translateX(0);
}

.product-hotspot.popup-left .product-hotspot-popup {
    right: 55px;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
}

.product-hotspot.popup-left:hover .product-hotspot-popup {
    transform: translateY(-50%) translateX(0);
}

.product-hotspot.popup-bottom .product-hotspot-popup {
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
}

.product-hotspot.popup-bottom:hover .product-hotspot-popup {
    transform: translateX(-50%) translateY(0);
}

.product-hotspot.popup-top .product-hotspot-popup {
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
}

.product-hotspot.popup-top:hover .product-hotspot-popup {
    transform: translateX(-50%) translateY(0);
}

/* Popup Content */
.product-popup-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.product-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-popup-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.product-popup-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-popup-content {
    padding: 25px;
}

.product-popup-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-popup-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-popup-specs {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.product-popup-spec {
    flex: 1;
    text-align: center;
}

.product-popup-spec span {
    display: block;
    font-size: 10px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-popup-spec strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

/* ======== CTA SECTION ======== */
.product-cta-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,233,0,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255,233,0,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.product-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.product-cta-title span {
    color: var(--primary);
}

.product-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.product-cta-btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.product-cta-btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,233,0,0.3);
}

.product-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.product-cta-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1200px) {
    .product-hero-title {
        font-size: 52px;
    }
    
    .product-hero-grid {
        gap: 50px;
    }
    
    .product-overview-grid {
        gap: 50px;
    }
    
    .product-section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .product-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .product-hero-content {
        text-align: center;
        padding: 0;
    }
    
    .product-hero-desc {
        margin: 0 auto 40px;
    }
    
    .product-hero-stats {
        justify-content: center;
    }
    
    .product-hero-gallery {
        padding: 0;
    }
    
    .product-hero-thumbs {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .product-hero-floating {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 20px;
    }
    
    .product-hero-scroll {
        display: none;
    }
    
    .product-overview {
        padding: 80px 0;
    }
    
    .product-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .product-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .product-specs-card {
        grid-column: span 2;
    }
    
    .product-interactive {
        padding: 80px 0;
    }
    
    .product-image-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 36px;
    }
    
    .product-hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .product-stat {
        text-align: center;
    }
    
    .product-stat-value {
        font-size: 36px;
    }
    
    .product-hero-main-img img {
        height: 350px;
    }
    
    .product-section-title {
        font-size: 32px;
    }
    
    .product-inline-gallery {
        grid-template-columns: 1fr;
    }
    
    .product-inline-img img {
        height: 220px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-sidebar {
        grid-template-columns: 1fr;
    }
    
    .product-specs-card {
        grid-column: span 1;
    }
    
    .product-type-switcher {
        flex-direction: column;
    }
    
    .product-type-btn {
        justify-content: center;
    }
    
    .product-image-container {
        padding: 20px;
    }
    
    .product-hotspot {
        width: 36px;
        height: 36px;
    }
    
    .product-hotspot-dot::before {
        width: 14px;
        height: 14px;
    }
    
    .product-hotspot-dot::after {
        width: 36px;
        height: 36px;
    }
    
    .product-hotspot-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) scale(0.95) !important;
        width: calc(100vw - 40px);
        max-width: 380px;
        z-index: 9999;
    }
    
    .product-hotspot:hover .product-hotspot-popup,
    .product-hotspot.active .product-hotspot-popup {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .product-cta-title {
        font-size: 32px;
    }
    
    .product-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-hero-title {
        font-size: 30px;
    }
    
    .product-hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .product-hero-desc {
        font-size: 15px;
    }
    
    .product-hero-main-img img {
        height: 280px;
    }
    
    .product-section-title {
        font-size: 26px;
    }
    
    .product-feature-card {
        padding: 25px;
    }
    
    .product-specs-card,
    .product-downloads-card,
    .product-cta-card {
        padding: 25px;
    }
    
    .product-cta-title {
        font-size: 26px;
    }
}

/* Mobile Popup Overlay - DISABLED */
.product-popup-overlay {
    display: none !important;
}

/* ======== COMPONENT TABS - ORIGINAL ENHANCED ======== */
.component-tabs-container {
    margin-top: 50px;
}

.component-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.component-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid var(--border);
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    flex-shrink: 0;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: rgba(255,233,0,0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.tab-number {
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tab-btn.active .tab-number {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(255,233,0,0.5);
}

.tab-text {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.tab-btn.active .tab-text {
    color: #fff;
}

/* Tab Contents - Dark Theme */
.tab-contents {
    margin-top: 0;
    padding-top: 40px;
    background: var(--dark);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

/* Tab Text Content */
.tab-text-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tab-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: var(--primary);
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.tab-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tab-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tab-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tab-features li i {
    color: var(--primary);
    font-size: 8px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(255,233,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
}

.tab-cta:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(255,233,0,0.3);
}

.tab-cta i {
    transition: transform 0.3s ease;
}

.tab-cta:hover i {
    transform: translateX(5px);
}

/* Tab Images Grid */
.tab-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

.tab-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.tab-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-image:hover::after {
    opacity: 1;
}

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

.tab-image:hover img {
    transform: scale(1.1);
}

.tab-image.main {
    grid-column: span 2;
    height: 260px;
}

.tab-image:not(.main) {
    height: 160px;
}

/* Tab Responsive */
@media (max-width: 1100px) {
    .tab-content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .tab-images {
        order: -1;
    }
    
    .tab-text-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .component-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 10px 15px;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 10px 12px;
        justify-content: center;
    }
    
    .tab-number {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .tab-text {
        font-size: 10px;
    }
    
    .tab-content-inner {
        padding: 30px 20px;
    }
    
    .tab-text-content h3 {
        font-size: 24px;
    }
    
    .tab-image.main {
        height: 200px;
    }
    
    .tab-image:not(.main) {
        height: 130px;
    }
}

@media (max-width: 550px) {
    .component-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 8px 10px;
        margin-bottom: 15px;
    }
    
    .tab-btn {
        flex-direction: column;
        gap: 5px;
        padding: 10px 8px;
        border-radius: 12px;
    }
    
    .tab-number {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .tab-text {
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
    }
    
    .tab-contents {
        padding-top: 30px;
    }
    
    .tab-content-inner {
        padding: 25px 18px;
    }
    
    .tab-text-content h3 {
        font-size: 22px;
    }
    
    .tab-subtitle {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .tab-description {
        font-size: 14px;
    }
    
    .tab-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .tab-images {
        grid-template-columns: 1fr;
    }
    
    .tab-image.main {
        grid-column: span 1;
        height: 200px;
    }
    
    .tab-image:not(.main) {
        height: 150px;
    }
    
    .tab-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
}

/* ======== APPLICATIONS SECTION ======== */
.product-applications {
    background: #fff;
    padding: 120px 0;
    position: relative;
}

.product-applications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-application-card {
    background: var(--light-bg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-application-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-application-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.product-application-card:hover::before {
    transform: scaleX(1);
}

.product-application-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark);
    transition: var(--transition);
}

.product-application-card:hover .product-application-icon {
    background: var(--dark);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.product-application-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-application-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .product-applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-applications {
        padding: 80px 0;
    }
    
    .product-applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-application-card {
        padding: 25px 20px;
    }
    
    .product-application-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .product-applications-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== FOOTER STYLES ======== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

/* ========================================
   PRODUCT SHOWCASE & DETAILS SECTION
   Creative Modern Design - Wimac Crane
   ======================================== */

/* ==================== VARIABLES ==================== */
:root {
    --wm-yellow: #ffe900;
    --wm-dark: #0a0a0a;
    --wm-gray: #666;
    --wm-light-bg: #f8f9fa;
    --wm-card-bg: #ffffff;
    --wm-border: #e5e7eb;
}

/* ==================== PRODUCT SHOWCASE SECTION ==================== */
.wm-product-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.wm-product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 233, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.wm-product-showcase > .container {
    display: flex;
    flex-direction: column;
}

/* ==================== GALLERY HEADER ==================== */
.wm-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.wm-gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wm-dark);
    color: var(--wm-yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.wm-gallery-badge i {
    font-size: 12px;
}

.wm-gallery-controls {
    display: flex;
    gap: 10px;
}

.wm-control-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--wm-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--wm-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hide autoplay button */
#autoplayBtn {
    display: none !important;
}

.wm-control-btn:hover {
    background: var(--wm-yellow);
    border-color: var(--wm-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 233, 0, 0.25);
}

/* ==================== MAIN IMAGE ==================== */
.wm-gallery-main {
    position: relative;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.wm-main-image-container {
    position: relative;
    overflow: hidden;
    background: var(--wm-dark);
    width: 100%;
    aspect-ratio: 3 / 1;
}

.wm-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.wm-main-image-container:hover img {
    transform: scale(1.02);
}

.wm-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-main-image-container:hover .wm-image-overlay {
    opacity: 1;
}

.wm-zoom-btn {
    display: none !important;
}

/* Zoom button hidden */

.wm-image-counter {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Progress Bar */
.wm-slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.wm-slide-progress-bar {
    height: 100%;
    background: var(--wm-yellow);
    width: 0%;
    animation: slideProgress 4s linear infinite;
}

@keyframes slideProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .wm-main-image-container {
        aspect-ratio: 2 / 1;
    }
}
/* ==================== THUMBNAILS ==================== */
.wm-gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-shrink: 0;
}

.wm-thumb {
    position: relative;
    width: 120px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.wm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wm-thumb:hover {
    opacity: 1;
}

.wm-thumb:hover img {
    transform: scale(1.1);
}

.wm-thumb.active {
    border-color: var(--wm-yellow);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(255, 233, 0, 0.3);
}

/* ==================== PRODUCT DETAILS SECTION ==================== */
.wm-product-details {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.wm-details-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.wm-header-line {
    width: 60px;
    height: 4px;
    background: var(--wm-yellow);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.wm-details-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--wm-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.wm-details-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--wm-dark);
    letter-spacing: -0.5px;
}

/* Details Content Grid */
.wm-details-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

/* Main Content */
.wm-content-main {
    max-width: 100%;
}

.wm-intro-text {
    margin-bottom: 50px;
}

.wm-intro-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.wm-intro-text p:last-child {
    margin-bottom: 0;
}

/* ==================== INLINE IMAGES ROW ==================== */
.wm-inline-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 0;
}

.wm-inline-image {
    position: relative;
}

.wm-inline-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wm-inline-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.wm-inline-caption {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: var(--wm-gray);
    font-style: italic;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .wm-inline-images-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wm-inline-image img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 576px) {
    .wm-inline-images-row {
        margin: 35px 0;
    }
    
    .wm-inline-caption {
        font-size: 12px;
    }
}

.wm-inline-caption {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: var(--wm-gray);
    font-style: italic;
    text-align: center;
    padding: 0 10px;
}

/* Clear floats after content */
.wm-content-extended::after {
    content: '';
    display: table;
    clear: both;
}

/* Features Grid - 2 cards only */
.wm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    clear: both;
}

.wm-feature-card {
    background: var(--wm-light-bg);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.wm-feature-card:hover {
    background: #fff;
    border-color: var(--wm-border);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wm-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--wm-yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--wm-dark);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.wm-feature-card:hover .wm-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.wm-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wm-dark);
    margin-bottom: 10px;
}

.wm-feature-card p {
    font-size: 14px;
    color: var(--wm-gray);
    line-height: 1.6;
}

/* Extended Content */
.wm-content-extended {
    padding-top: 30px;
    border-top: 1px solid var(--wm-border);
}

.wm-content-extended p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.wm-content-extended p:last-child {
    margin-bottom: 0;
}

/* ==================== SIDEBAR ==================== */
.wm-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Specs Card */
.wm-specs-card {
    background: var(--wm-light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.wm-specs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 25px;
    background: var(--wm-dark);
    color: #fff;
}

.wm-specs-header i {
    color: var(--wm-yellow);
    font-size: 18px;
}

.wm-specs-header h4 {
    font-size: 16px;
    font-weight: 700;
}

.wm-specs-list {
    padding: 10px 0;
}

.wm-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.wm-spec-row:last-child {
    border-bottom: none;
}

.wm-spec-row:hover {
    background: rgba(255, 233, 0, 0.08);
}

.wm-spec-label {
    font-size: 13px;
    color: var(--wm-gray);
}

.wm-spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--wm-dark);
}

/* Downloads Card */
.wm-downloads-card {
    background: var(--wm-card-bg);
    border-radius: 20px;
    border: 1px solid var(--wm-border);
    overflow: hidden;
}

.wm-downloads-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 25px;
    border-bottom: 1px solid var(--wm-border);
}

.wm-downloads-header i {
    color: var(--wm-yellow);
    font-size: 18px;
}

.wm-downloads-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--wm-dark);
}

.wm-downloads-list {
    padding: 10px;
}

.wm-download-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wm-download-item:hover {
    background: var(--wm-light-bg);
}

.wm-download-icon {
    width: 45px;
    height: 45px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ef4444;
    flex-shrink: 0;
}

.wm-download-info {
    flex: 1;
}

.wm-download-info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--wm-dark);
    margin-bottom: 3px;
}

.wm-download-info small {
    font-size: 12px;
    color: var(--wm-gray);
}

.wm-download-item > i:last-child {
    color: var(--wm-gray);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.wm-download-item:hover > i:last-child {
    transform: translateY(3px);
    color: var(--wm-dark);
}

/* ==================== ELEGANT CTA CARD ==================== */
.wm-cta-card-elegant {
    position: relative;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    overflow: hidden;
}

/* Animated Glow Effect */
.wm-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 233, 0, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
    }
}

/* Background Pattern */
.wm-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 233, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 233, 0, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.wm-cta-content-elegant {
    position: relative;
    z-index: 1;
}

/* Icon Ring */
.wm-cta-icon-ring {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 233, 0, 0.2) 0%, rgba(255, 233, 0, 0.05) 100%);
    padding: 3px;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    0% {
        box-shadow: 
            0 0 0 0 rgba(255, 233, 0, 0.2),
            0 0 20px rgba(255, 233, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 0 10px rgba(255, 233, 0, 0),
            0 0 40px rgba(255, 233, 0, 0.2);
    }
    100% {
        box-shadow: 
            0 0 0 0 rgba(255, 233, 0, 0.2),
            0 0 20px rgba(255, 233, 0, 0.1);
    }
}

.wm-cta-icon-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--wm-yellow) 0%, #e6d200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-cta-icon-inner i {
    font-size: 36px;
    color: var(--wm-dark);
}

.wm-cta-content-elegant h4 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.wm-cta-content-elegant p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Divider */
.wm-cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wm-cta-divider span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 233, 0, 0.5), transparent);
}

.wm-cta-divider i {
    color: var(--wm-yellow);
    font-size: 14px;
}

/* Phone Number */
.wm-cta-phone-elegant {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    padding: 12px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-cta-phone-elegant:hover {
    color: var(--wm-yellow);
    background: rgba(255, 233, 0, 0.1);
    border-color: rgba(255, 233, 0, 0.3);
    transform: scale(1.05);
}

/* Availability */
.wm-cta-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.wm-cta-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* ==================== LIGHTBOX ==================== */
.wm-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.wm-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.wm-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wm-lightbox-close:hover {
    background: var(--wm-yellow);
    color: var(--wm-dark);
}

.wm-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wm-lightbox-prev {
    left: 30px;
}

.wm-lightbox-next {
    right: 30px;
}

.wm-lightbox-nav:hover {
    background: var(--wm-yellow);
    color: var(--wm-dark);
}

.wm-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.wm-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

/* Smaller Desktop Screens - Responsive Text Sizing */
@media (max-width: 1600px) {
    .wm-details-header h2 {
        font-size: 38px;
    }
    
    .wm-intro-text p {
        font-size: 14px;
    }
    
    .wm-gallery-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
}

@media (max-width: 1400px) {
    .wm-details-header h2 {
        font-size: 34px;
    }
    
    .wm-intro-text p {
        font-size: 13.5px;
        line-height: 1.8;
    }
    
    .wm-gallery-badge {
        font-size: 10px;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
    
    .wm-gallery-badge i {
        font-size: 11px;
    }
    
    .wm-control-btn {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .wm-image-counter {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .wm-feature-card h4 {
        font-size: 17px;
    }
    
    .wm-feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .wm-showcase-grid {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
    
    .wm-details-content {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }
    
    .wm-details-header h2 {
        font-size: 32px;
    }
    
    .wm-intro-text p {
        font-size: 13px;
        line-height: 1.75;
    }
    
    .wm-gallery-badge {
        font-size: 9px;
        padding: 7px 12px;
    }
    
    .wm-control-btn {
        width: 38px;
        height: 38px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .wm-image-counter {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .wm-thumb {
        width: 100px;
        height: 68px;
    }
    
    .wm-inline-image img {
        max-width: 380px;
    }
    
    .wm-feature-card h4 {
        font-size: 16px;
    }
    
    .wm-feature-card p {
        font-size: 12.5px;
    }
    
    .wm-details-tag {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .wm-product-showcase {
        height: auto;
        max-height: none;
        padding: 40px 0;
    }
    
    .wm-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wm-quick-info {
        position: static;
    }
    
    .wm-main-image-container img {
        height: 450px;
    }
    
    /* Stats stay as 2x2 grid on tablet */
    .wm-info-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .wm-details-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .wm-content-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .wm-cta-card-elegant {
        grid-column: span 2;
    }
    
    .wm-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Inline images full width */
    .wm-inline-image.wm-inline-left,
    .wm-inline-image.wm-inline-right {
        float: none;
        margin: 40px auto;
        text-align: center;
    }
    
    .wm-inline-image img {
        max-width: 100%;
    }
    
    .wm-details-header h2 {
        font-size: 30px;
    }
    
    .wm-intro-text p {
        font-size: 14px;
    }
    
    .wm-gallery-badge {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .wm-product-showcase {
        padding: 40px 0;
        height: auto;
        max-height: none;
    }
    
    .wm-main-image-container img {
        height: 350px;
    }
    
    .wm-thumb {
        width: 80px;
        height: 60px;
    }
    
    .wm-info-header h3 {
        font-size: 22px;
    }
    
    .wm-info-stats {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .wm-stat {
        padding: 8px 10px;
    }
    
    .wm-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .wm-stat-content span {
        font-size: 9px;
    }
    
    .wm-stat-content strong {
        font-size: 11px;
    }
    
    .wm-product-details {
        padding: 60px 0;
    }
    
    .wm-details-header h2 {
        font-size: 26px;
    }
    
    .wm-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wm-content-sidebar {
        grid-template-columns: 1fr;
    }
    
    .wm-cta-card-elegant {
        grid-column: span 1;
    }
    
    .wm-intro-text p {
        font-size: 14px;
    }
    
    .wm-cta-phone-elegant {
        font-size: 20px;
        padding: 10px 24px;
    }
    
    .wm-lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .wm-lightbox-prev {
        left: 15px;
    }
    
    .wm-lightbox-next {
        right: 15px;
    }
    
    .wm-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .wm-gallery-badge {
        font-size: 9px;
        padding: 6px 12px;
    }
    
    .wm-main-image-container img {
        height: 280px;
    }
    
    .wm-image-counter {
        bottom: 15px;
        left: 15px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .wm-thumb-nav {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .wm-thumb {
        width: 65px;
        height: 50px;
        border-radius: 8px;
    }
    
    .wm-quick-info {
        padding: 25px;
        border-radius: 18px;
    }
    
    .wm-stat {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .wm-stat-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
        border-radius: 6px;
    }
    
    .wm-stat-content strong {
        font-size: 11px;
    }
    
    .wm-stat-content span {
        font-size: 8px;
    }
    
    .wm-btn-primary,
    .wm-btn-secondary {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .wm-details-header {
        margin-bottom: 40px;
    }
    
    .wm-details-header h2 {
        font-size: 22px;
    }
    
    .wm-intro-text p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .wm-feature-card {
        padding: 25px;
    }
    
    .wm-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .wm-feature-card h4 {
        font-size: 15px;
    }
    
    .wm-feature-card p {
        font-size: 12px;
    }
    
    .wm-specs-header,
    .wm-downloads-header {
        padding: 18px 20px;
    }
    
    .wm-spec-row {
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .wm-cta-card-elegant {
        padding: 35px 25px;
    }
    
    .wm-cta-icon-ring {
        width: 75px;
        height: 75px;
    }
    
    .wm-cta-icon-inner i {
        font-size: 28px;
    }
    
    .wm-cta-content-elegant h4 {
        font-size: 18px;
    }
    
    .wm-cta-phone-elegant {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .wm-autoplay-btn {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .wm-details-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wm-gallery-wrapper,
.wm-quick-info,
.wm-feature-card,
.wm-specs-card,
.wm-downloads-card,
.wm-cta-card-elegant {
    animation: fadeInUp 0.6s ease forwards;
}

.wm-feature-card:nth-child(2) { animation-delay: 0.1s; }















/* ==================== INTERACTIVE SECTION ==================== */
        .interactive-section {
            background: #f8f9fa;
            padding: 10px 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .interactive-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(to bottom, #ffffff, transparent);
            pointer-events: none;
        }
        
        .interactive-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .interactive-header .tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0a0a0a;
            color: var(--header-bg);
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }
        
        .interactive-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 15px;
        }
        
        .interactive-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Product Image Container */
        .product-interactive-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Product Type Switcher */
        .product-type-switcher {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .type-switch-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 2px solid #e5e7eb;
            padding: 14px 28px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }
        
        .type-switch-btn:hover {
            border-color: rgba(255,233,0,0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        
        .type-switch-btn.active {
            background: #0a0a0a;
            border-color: #0a0a0a;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .type-switch-btn i {
            color: var(--header-bg);
            font-size: 16px;
        }
        
        .product-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.12);
        }
        
        .product-main-image {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        /* Product Type Images */
        .product-type-image {
            position: relative;
            width: 100%;
            display: none;
        }
        
        .product-type-image.active {
            display: block;
            animation: imageSwitch 0.5s ease;
        }
        
        @keyframes imageSwitch {
            from {
                opacity: 0;
                transform: scale(1.02);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .product-type-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Product Type Label */
        .product-type-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(10,10,10,0.85);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 20;
        }
        
        .product-type-label i {
            color: var(--header-bg);
        }
        
        /* Hotspot Styles */
        .hotspot {
            position: absolute;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
        }
        
        .hotspot-dot {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hotspot-dot::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--header-bg);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(255,233,0,0.5);
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        .hotspot:hover .hotspot-dot::before {
            transform: scale(1.2);
        }
        
        .hotspot-dot::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(255,233,0,0.3);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .hotspot-number {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 800;
            color: #0a0a0a;
            z-index: 3;
        }
        
        /* Hotspot Popup */
        .hotspot-popup {
            position: absolute;
            width: 320px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 
                0 25px 60px rgba(0,0,0,0.2),
                0 0 0 1px rgba(0,0,0,0.05);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 100;
            overflow: hidden;
        }
        
        .hotspot:hover .hotspot-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Popup positioning */
        .hotspot.popup-right .hotspot-popup {
            left: 50px;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
        }
        
        .hotspot.popup-right:hover .hotspot-popup {
            transform: translateY(-50%) translateX(0);
        }
        
        .hotspot.popup-left .hotspot-popup {
            right: 50px;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
        }
        
        .hotspot.popup-left:hover .hotspot-popup {
            transform: translateY(-50%) translateX(0);
        }
        
        .hotspot.popup-top .hotspot-popup {
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
        }
        
        .hotspot.popup-top:hover .hotspot-popup {
            transform: translateX(-50%) translateY(0);
        }
        
        .hotspot.popup-bottom .hotspot-popup {
            top: 50px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
        }
        
        .hotspot.popup-bottom:hover .hotspot-popup {
            transform: translateX(-50%) translateY(0);
        }
        
        /* Popup Arrow */
        .hotspot.popup-right .hotspot-popup::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-right-color: #ffffff;
        }
        
        .hotspot.popup-left .hotspot-popup::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: #ffffff;
        }
        
        .hotspot.popup-top .hotspot-popup::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: #ffffff;
        }
        
        .hotspot.popup-bottom .hotspot-popup::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-bottom-color: #ffffff;
        }
        
        /* Popup Content */
        .popup-image {
            width: 100%;
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .popup-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .hotspot:hover .popup-image img {
            transform: scale(1.1);
        }
        
        .popup-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
        }
        
        .popup-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--header-bg);
            color: #0a0a0a;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-content {
            padding: 25px;
        }
        
        .popup-content h4 {
            font-size: 18px;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 10px;
        }
        
        .popup-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 18px;
        }
        
        .popup-specs {
            display: flex;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .popup-spec {
            flex: 1;
            text-align: center;
        }
        
        .popup-spec span {
            display: block;
            font-size: 10px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .popup-spec strong {
            font-size: 14px;
            font-weight: 700;
            color: #0a0a0a;
        }
        
        

/* Section Container */
.wm-products {
    background: #f8f9fa;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.wm-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 233, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 233, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Section Header */
.wm-products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wm-products-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.08);
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 10, 10, 0.1);
}

.wm-tag-logo {
    height: 27px;
    width: auto;
}

.wm-products-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

.wm-products-header p {
    font-size: 17px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Grid - Bento Layout */
.wm-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Base Card Styles */
.wm-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 280px;
    background: #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.wm-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image Container */
.wm-card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
    transform: scale(1);
    transition: filter 0.5s ease, transform 0.7s ease;
}

/* Hover Effect - Grayscale to Color + Zoom */
.wm-card:hover .wm-card-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Card Overlay */
.wm-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: background 0.4s ease;
}

.wm-card:hover .wm-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* Card Content */
.wm-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Card Badge */
.wm-card-badge {
    background: #ffe900;
    color: #0a0a0a;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wm-badge-alt {
    background: #0a0a0a;
    color: #ffffff;
}

/* Card Title */
.wm-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.wm-card:hover .wm-card-content h3 {
    transform: translateY(-3px);
}

/* Card Button */
.wm-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe900;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.wm-card-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.wm-card:hover .wm-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.wm-card:hover .wm-card-btn i {
    transform: translateX(4px);
}

/* Large Card (2x2) - Overhead Cranes */
.wm-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 580px;
}

.wm-card-large .wm-card-content {
    padding: 40px;
}

.wm-card-large .wm-card-content h3 {
    font-size: 32px;
}

.wm-card-large .wm-card-btn {
    font-size: 15px;
}

/* Wide Card (2x1) - Hoists & Trolleys */
.wm-card-wide {
    grid-column: span 2;
    min-height: 280px;
}

.wm-card-wide .wm-card-content h3 {
    font-size: 26px;
}

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

@media (max-width: 1200px) {
    .wm-products-header h2 {
        font-size: 36px;
    }
    
    .wm-card-large {
        min-height: 500px;
    }
    
    .wm-card-large .wm-card-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .wm-products {
        padding: 80px 0 100px;
    }
    
    .wm-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .wm-card-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }
    
    .wm-card {
        min-height: 250px;
    }
    
    .wm-card-wide {
        grid-column: span 2;
    }
    
    .wm-products-header h2 {
        font-size: 32px;
    }
    
    .wm-products-header p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .wm-products {
        padding: 60px 0 80px;
    }
    
    .wm-products-header {
        margin-bottom: 40px;
    }
    
    .wm-products-header h2 {
        font-size: 28px;
    }
    
    .wm-products-tag {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .wm-card-large {
        min-height: 300px;
    }
    
    .wm-card-large .wm-card-content h3 {
        font-size: 24px;
    }
    
    .wm-card {
        min-height: 220px;
    }
    
    .wm-card-content {
        padding: 24px;
    }
    
    .wm-card-content h3 {
        font-size: 20px;
    }
    
    .wm-card-wide .wm-card-content h3 {
        font-size: 22px;
    }
    
    /* Show button by default on mobile */
    .wm-card-btn {
        opacity: 1;
        transform: translateY(0);
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .wm-products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wm-card-large,
    .wm-card-wide {
        grid-column: span 1;
    }
    
    .wm-card-large {
        min-height: 280px;
    }
    
    .wm-card {
        min-height: 200px;
    }
    
    .wm-card-wide {
        min-height: 200px;
    }
    
    .wm-products-header h2 {
        font-size: 24px;
    }
    
    .wm-products-header p {
        font-size: 14px;
    }
    
    .wm-card-content {
        padding: 20px;
    }
    
    .wm-card-content h3 {
        font-size: 18px;
    }
    
    .wm-card-large .wm-card-content h3,
    .wm-card-wide .wm-card-content h3 {
        font-size: 20px;
    }
}

 /* ==================== INTERACTIVE PRODUCT PAGE ==================== */
        
        /* Hero Section */
        .product-interactive-hero {
            position: relative;
            min-height: 450px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .product-interactive-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(255,233,0,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,233,0,0.05) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .product-interactive-hero .container {
            position: relative;
            z-index: 10;
        }
        
        .product-interactive-hero .breadcrumb {
            margin-bottom: 20px;
        }
        
        .product-interactive-hero .breadcrumb a,
        .product-interactive-hero .breadcrumb span {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
        }
        
        .product-interactive-hero .breadcrumb a:hover {
            color: var(--header-bg);
        }
        
        .product-interactive-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            font-weight: 800;
            color: var(--light);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        
        .product-interactive-hero h1 span {
            color: var(--header-bg);
        }
        
        .product-interactive-hero p {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            max-width: 600px;
        }
        
        /* ==================== INTERACTIVE SECTION ==================== */
        .interactive-section {
            background: #f8f9fa;
            padding: 30px 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .interactive-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(to bottom, #ffffff, transparent);
            pointer-events: none;
        }
        
        .interactive-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .interactive-header .tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0a0a0a;
            color: var(--header-bg);
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }
        
        .interactive-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 15px;
        }
        
        .interactive-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Product Image Container */
        .product-interactive-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .product-image-wrapper {
            position: relative;
            background: #ffffff;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 
                0 30px 80px rgba(0,0,0,0.08),
                0 0 0 1px rgba(0,0,0,0.05);
        }
        
        .product-main-image {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .product-main-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Hotspot Styles */
        .hotspot {
            position: absolute;
            width: 40px;
            height: 40px;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 10;
        }
        
        .hotspot-dot {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hotspot-dot::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--header-bg);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(255,233,0,0.5);
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        .hotspot:hover .hotspot-dot::before {
            transform: scale(1.2);
        }
        
        .hotspot-dot::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(255,233,0,0.3);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .hotspot-number {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 800;
            color: #0a0a0a;
            z-index: 3;
        }
        
        /* Hotspot Popup */
        .hotspot-popup {
            position: absolute;
            width: 320px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 
                0 25px 60px rgba(0,0,0,0.2),
                0 0 0 1px rgba(0,0,0,0.05);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 100;
            overflow: hidden;
        }
        
        .hotspot:hover .hotspot-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* Popup positioning */
        .hotspot.popup-right .hotspot-popup {
            left: 50px;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
        }
        
        .hotspot.popup-right:hover .hotspot-popup {
            transform: translateY(-50%) translateX(0);
        }
        
        .hotspot.popup-left .hotspot-popup {
            right: 50px;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
        }
        
        .hotspot.popup-left:hover .hotspot-popup {
            transform: translateY(-50%) translateX(0);
        }
        
        .hotspot.popup-top .hotspot-popup {
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
        }
        
        .hotspot.popup-top:hover .hotspot-popup {
            transform: translateX(-50%) translateY(0);
        }
        
        .hotspot.popup-bottom .hotspot-popup {
            top: 50px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
        }
        
        .hotspot.popup-bottom:hover .hotspot-popup {
            transform: translateX(-50%) translateY(0);
        }
        
        /* Popup Arrow */
        .hotspot.popup-right .hotspot-popup::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-right-color: #ffffff;
        }
        
        .hotspot.popup-left .hotspot-popup::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: #ffffff;
        }
        
        .hotspot.popup-top .hotspot-popup::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: #ffffff;
        }
        
        .hotspot.popup-bottom .hotspot-popup::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-bottom-color: #ffffff;
        }
        
        /* Popup Content */
        .popup-image {
            width: 100%;
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .popup-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .hotspot:hover .popup-image img {
            transform: scale(1.1);
        }
        
        .popup-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
        }
        
        .popup-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--header-bg);
            color: #0a0a0a;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup-content {
            padding: 25px;
        }
        
        .popup-content h4 {
            font-size: 18px;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 10px;
        }
        
        .popup-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 18px;
        }
        
        .popup-specs {
            display: flex;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .popup-spec {
            flex: 1;
            text-align: center;
        }
        
        .popup-spec span {
            display: block;
            font-size: 10px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .popup-spec strong {
            font-size: 14px;
            font-weight: 700;
            color: #0a0a0a;
        }
        
        /* Interactive Legend */
        .component-tabs-container {
            margin-top: 50px;
        }
        
        .component-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 0;
            position: relative;
            z-index: 10;
        }
        
        .tab-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 2px solid #e5e7eb;
            padding: 14px 24px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .tab-btn:hover {
            border-color: rgba(255,233,0,0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        
        .tab-btn.active {
            background: #0a0a0a;
            border-color: #0a0a0a;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .tab-number {
            width: 28px;
            height: 28px;
            background: var(--header-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            color: #0a0a0a;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active .tab-number {
            background: var(--header-bg);
        }
        
        .tab-text {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .tab-btn.active .tab-text {
            color: #fff;
        }
        
        /* Tab Contents */
        .tab-contents {
            margin-top: -20px;
            padding-top: 50px;
            background: #0a0a0a;
            border-radius: 30px;
            overflow: hidden;
        }
        
        .tab-content {
            display: none;
            animation: tabFadeIn 0.5s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes tabFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .tab-content-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            padding: 50px;
            align-items: center;
        }
        
        /* Tab Text Content */
        .tab-text-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        
        .tab-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px !important;
        }
        
        .tab-description {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 25px !important;
        }
        
        .tab-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }
        
        .tab-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            line-height: 1.6;
        }
        
        .tab-features li i {
            color: var(--header-bg);
            font-size: 12px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .tab-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--header-bg);
            color: #0a0a0a;
            padding: 14px 30px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
        }
        
        .tab-cta:hover {
            background: #fff;
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(255,233,0,0.3);
        }
        
        .tab-cta i {
            transition: transform 0.3s ease;
        }
        
        .tab-cta:hover i {
            transform: translateX(5px);
        }
        
        /* Tab Images */
        .tab-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 15px;
        }
        
        .tab-image {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }
        
        .tab-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .tab-image:hover img {
            transform: scale(1.08);
        }
        
        .tab-image.main {
            grid-column: span 2;
            height: 250px;
        }
        
        .tab-image:not(.main) {
            height: 150px;
        }
        
        /* Tab Responsive */
        @media (max-width: 1100px) {
            .tab-content-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }
            
            .tab-images {
                order: -1;
            }
            
            .tab-text-content h3 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .component-tabs {
                gap: 8px;
            }
            
            .tab-btn {
                padding: 10px 16px;
            }
            
            .tab-number {
                width: 24px;
                height: 24px;
                font-size: 11px;
            }
            
            .tab-text {
                font-size: 11px;
            }
            
            .tab-content-inner {
                padding: 30px 20px;
            }
            
            .tab-text-content h3 {
                font-size: 26px;
            }
            
            .tab-image.main {
                height: 200px;
            }
            
            .tab-image:not(.main) {
                height: 120px;
            }
        }
        
        @media (max-width: 550px) {
            .component-tabs {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 0 10px;
            }
            
            .tab-btn {
                flex-direction: column;
                gap: 6px;
                padding: 12px 10px;
                border-radius: 12px;
                text-align: center;
            }
            
            .tab-text {
                font-size: 10px;
            }
            
            .tab-contents {
                border-radius: 20px;
                margin-top: -10px;
                padding-top: 30px;
            }
            
            .tab-content-inner {
                padding: 25px 15px;
            }
            
            .tab-text-content h3 {
                font-size: 22px;
            }
            
            .tab-description {
                font-size: 14px;
            }
            
            .tab-features li {
                font-size: 13px;
            }
            
            .tab-images {
                grid-template-columns: 1fr;
            }
            
            .tab-image.main {
                grid-column: span 1;
                height: 180px;
            }
            
            .tab-image:not(.main) {
                height: 140px;
            }
        }
        
        /* Mobile Touch Instructions */
        .touch-instruction {
            display: none;
            text-align: center;
            margin-bottom: 30px;
            padding: 15px 25px;
            background: rgba(255,233,0,0.1);
            border-radius: 12px;
            border: 1px dashed var(--header-bg);
        }
        
        .touch-instruction i {
            color: var(--header-bg);
            margin-right: 10px;
        }
        
        .touch-instruction span {
            font-size: 13px;
            color: #666;
        }
        
        /* CTA Section */
        .interactive-cta {
            background: #0a0a0a;
            padding: 80px 0;
            text-align: center;
        }
        
        .interactive-cta h3 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .interactive-cta p {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 35px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .interactive-cta .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .interactive-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 35px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
        }
        
        .interactive-cta .btn-primary {
            background: var(--header-bg);
            color: #0a0a0a;
        }
        
        .interactive-cta .btn-primary:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,233,0,0.3);
        }
        
        .interactive-cta .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .interactive-cta .btn-secondary:hover {
            border-color: var(--header-bg);
            color: var(--header-bg);
            transform: translateY(-3px);
        }
        
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .hotspot-popup {
                width: 280px;
            }
            
            .popup-image {
                height: 140px;
            }
        }
        
        @media (max-width: 992px) {
            .product-interactive-hero h1 {
                font-size: 46px;
            }
            
            .interactive-header h2 {
                font-size: 38px;
            }
            
            .hotspot-popup {
                width: 260px;
            }
            
            .popup-content {
                padding: 20px;
            }
            
            .popup-content h4 {
                font-size: 16px;
            }
            
            .popup-specs {
                flex-direction: column;
                gap: 10px;
            }
            
            .popup-spec {
                display: flex;
                justify-content: space-between;
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .product-interactive-hero {
                min-height: 350px;
            }
            
            .product-interactive-hero h1 {
                font-size: 36px;
            }
            
            .product-interactive-hero p {
                font-size: 15px;
            }
            
            .interactive-section {
                padding: 70px 0 90px;
            }
            
            .interactive-header h2 {
                font-size: 30px;
            }
            
            .product-image-wrapper {
                padding: 20px;
                border-radius: 20px;
            }
            
            .touch-instruction {
                display: block;
            }
            
            .hotspot {
                width: 35px;
                height: 35px;
            }
            
            .hotspot-dot::before {
                width: 14px;
                height: 14px;
            }
            
            .hotspot-dot::after {
                width: 35px;
                height: 35px;
            }
            
            .hotspot-number {
                font-size: 9px;
            }
            
            /* Mobile popups - centered modal style */
            .hotspot-popup {
                position: fixed;
                top: 50% !important;
                left: 50% !important;
                right: auto !important;
                bottom: auto !important;
                transform: translate(-50%, -50%) scale(0.9) !important;
                width: calc(100vw - 40px);
                max-width: 350px;
                z-index: 1000;
            }
            
            .hotspot:hover .hotspot-popup,
            .hotspot.active .hotspot-popup {
                transform: translate(-50%, -50%) scale(1) !important;
            }
            
            .hotspot-popup::before {
                display: none !important;
            }
            
            .interactive-legend {
                gap: 10px;
            }
            
            .legend-item {
                padding: 12px 18px;
            }
            
            .legend-text {
                font-size: 12px;
            }
            
            .interactive-cta h3 {
                font-size: 28px;
            }
            
            .interactive-cta .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .interactive-cta .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .product-interactive-hero h1 {
                font-size: 30px;
            }
            
            .interactive-header .tag {
                font-size: 10px;
                padding: 10px 20px;
            }
            
            .interactive-header h2 {
                font-size: 26px;
            }
            
            .legend-item {
                padding: 10px 15px;
                flex: 1 1 calc(50% - 10px);
                justify-content: center;
            }
            
            .legend-number {
                width: 25px;
                height: 25px;
                font-size: 11px;
            }
            
            .legend-text {
                font-size: 11px;
            }
        }
        
        /* Mobile Overlay for Popup */
        .popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .popup-overlay.active {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .popup-overlay {
                display: block;
                pointer-events: none;
            }
            
            .popup-overlay.active {
                pointer-events: auto;
            }
        }



        /* ==================== HOTSPOT POPUP Z-INDEX FIX ==================== */

/* Ensure the interactive section creates a proper stacking context */
.interactive-section {
    position: relative;
    z-index: 50;
}

/* Product container needs to allow overflow for popups */
.product-interactive-container {
    position: relative;
    z-index: 100;
}

/* Allow popups to overflow the image wrapper */
.product-image-wrapper {
    position: relative;
    z-index: 100;
    overflow: visible !important;
}

/* Allow popups to overflow the main image container */
.product-main-image {
    position: relative;
    overflow: visible !important;
}

/* Hotspot dots - high z-index */
.hotspot {
    z-index: 500;
}

/* Hotspot popup - very high z-index to appear above everything */
.hotspot-popup {
    z-index: 9999;
}

/* When hotspot is hovered or active, boost even higher */
.hotspot:hover,
.hotspot.active {
    z-index: 10000;
}

.hotspot:hover .hotspot-popup,
.hotspot.active .hotspot-popup {
    z-index: 10001;
}

/* Ensure header doesn't cover popups (if it has high z-index) */
header {
    z-index: 1000; /* Lower than popup */
}

/* Ensure following sections don't cover popups */
.interactive-section ~ section,
.interactive-section ~ footer {
    position: relative;
    z-index: 1;
}

/* Component tabs container - lower than popups */
.component-tabs-container {
    position: relative;
    z-index: 10;
}

/* Mobile overlay for popup background */
.popup-overlay {
    z-index: 9998;
}



/* ==================== 
   WIMAC HERO SECTION 
   ==================== */

/* CSS Variables for easy customization */
:root {
    --wm-primary: #ffe900;
    --wm-primary-dark: #e6d200;
    --wm-dark: #1a1a1a;
    --wm-darker: #0d0d0d;
    --wm-gray: #2a2a2a;
    --wm-gray-light: #3a3a3a;
    --wm-text: #ffffff;
    --wm-text-muted: #a0a0a0;
    --wm-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wm-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --wm-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --wm-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
    --wm-radius: 12px;
    --wm-radius-sm: 8px;
}

/* Base Section */
.wm-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wm-darker) 0%, var(--wm-dark) 50%, var(--wm-gray) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 233, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 233, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

/* Container */
.wm-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==================== TOPBAR ==================== */
.wm-hero__topbar {
    position: relative;
    z-index: 10;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wm-hero__topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 233, 0, 0.1);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wm-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
    transition: var(--wm-transition);
}

.wm-hero__badge:hover {
    background: rgba(255, 233, 0, 0.15);
    border-color: rgba(255, 233, 0, 0.3);
    transform: translateY(-2px);
}

.wm-hero__badge i {
    font-size: 14px;
}

.wm-hero__nav {
    display: flex;
    gap: 12px;
}

.wm-hero__nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--wm-text);
    font-size: 14px;
    cursor: pointer;
    transition: var(--wm-transition);
    backdrop-filter: blur(10px);
}

.wm-hero__nav-btn:hover {
    background: var(--wm-primary);
    border-color: var(--wm-primary);
    color: var(--wm-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 233, 0, 0.3);
}

.wm-hero__nav-btn:active {
    transform: scale(0.95);
}

/* ==================== MAIN CONTENT ==================== */
.wm-hero__main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.wm-hero__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* ==================== TEXT CONTENT ==================== */
.wm-hero__text {
    position: relative;
}

.wm-hero__title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--wm-text);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.wm-hero__title span {
    display: block;
    background: linear-gradient(135deg, var(--wm-primary) 0%, var(--wm-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.wm-hero__title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--wm-primary);
    border-radius: 2px;
}

.wm-hero__desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wm-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Action Buttons */
.wm-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wm-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--wm-radius-sm);
    transition: var(--wm-transition);
    cursor: pointer;
}

.wm-hero__btn--primary {
    background: var(--wm-primary);
    color: var(--wm-dark);
    box-shadow: 0 4px 20px rgba(255, 233, 0, 0.3);
}

.wm-hero__btn--primary:hover {
    background: var(--wm-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 233, 0, 0.4);
}

.wm-hero__btn--primary i {
    transition: var(--wm-transition);
}

.wm-hero__btn--primary:hover i {
    transform: translateX(4px);
}

.wm-hero__btn--secondary {
    background: transparent;
    color: var(--wm-text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wm-hero__btn--secondary:hover {
    border-color: var(--wm-primary);
    color: var(--wm-primary);
    background: rgba(255, 233, 0, 0.05);
}

/* ==================== GALLERY ==================== */
.wm-hero__gallery {
    position: relative;
}

.wm-hero__slider-wrapper {
    position: relative;
    border-radius: var(--wm-radius);
    overflow: hidden;
    box-shadow: var(--wm-shadow);
    background: var(--wm-gray);
}

.wm-hero__slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.wm-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--wm-transition-slow);
    transform: scale(1.05);
}

.wm-hero__slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wm-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bar */
.wm-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.wm-hero__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--wm-primary), var(--wm-primary-dark));
    width: 0;
    animation: wmHeroProgress 5s linear infinite;
}

@keyframes wmHeroProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Thumbnails */
.wm-hero__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.wm-hero__thumb {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--wm-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--wm-transition);
}

.wm-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wm-transition);
}

.wm-hero__thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--wm-transition);
}

.wm-hero__thumb:hover {
    transform: translateY(-4px);
}

.wm-hero__thumb:hover .wm-hero__thumb-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.wm-hero__thumb:hover img {
    transform: scale(1.1);
}

.wm-hero__thumb.active {
    border-color: var(--wm-primary);
    box-shadow: 0 0 20px rgba(255, 233, 0, 0.3);
}

.wm-hero__thumb.active .wm-hero__thumb-overlay {
    background: rgba(255, 233, 0, 0.1);
}

/* ==================== SCROLL INDICATOR ==================== */
.wm-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.wm-hero__scroll span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--wm-text-muted);
}

.wm-hero__scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--wm-primary), transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.wm-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--wm-primary);
    animation: wmScrollLine 1.5s ease-in-out infinite;
}

@keyframes wmScrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .wm-hero__content {
        gap: 60px;
    }
    
    .wm-hero__title {
        font-size: clamp(36px, 4.5vw, 56px);
    }
}

@media (max-width: 992px) {
    .wm-hero__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .wm-hero__text {
        text-align: center;
        order: 2;
    }
    
    .wm-hero__title span::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .wm-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .wm-hero__actions {
        justify-content: center;
    }
    
    .wm-hero__gallery {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .wm-hero__main {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .wm-hero__topbar .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .wm-hero__title {
        font-size: clamp(32px, 8vw, 42px);
        letter-spacing: -1px;
    }
    
    .wm-hero__desc {
        font-size: 16px;
    }
    
    .wm-hero__btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .wm-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .wm-hero__thumbs {
        gap: 8px;
    }
    
    .wm-hero__scroll {
        bottom: 20px;
    }
    
    .wm-hero__scroll-line {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .wm-hero .container {
        padding: 0 16px;
    }
    
    .wm-hero__badge {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .wm-hero__nav-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .wm-hero__title {
        font-size: 28px;
    }
    
    .wm-hero__thumb {
        border-radius: 6px;
    }
}

/* ========================================
   REFERENCES IN INDONESIA SECTION
   Minimal Design
   ======================================== */

.references-indonesia-section {
    padding: 80px 0;
    background: #ffffff;
}

.references-indonesia-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 100px;
}

.references-indonesia-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.references-indonesia-image-wrapper {
    display: flex;
    justify-content: center;
}

.references-indonesia-image {
    max-width: 1600px;
    width: 100%;
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .references-indonesia-container {
        padding: 0 60px;
    }
    
    .references-indonesia-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .references-indonesia-section {
        padding: 60px 0;
    }
    
    .references-indonesia-container {
        padding: 0 20px;
    }
    
    .references-indonesia-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}
