
        :root {
            --primary: #d80404;
            --primary-light: #ff4d4d;
            --secondary: #1a1a2e;
            --light: #f8f9fa;
            --dark: #333;
            --gray: #adb5bd;
            --success: #4cc9f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
    overflow-x: hidden;
    background-image: url('/wp-mg-conten/tols/img/webing-sling-hanasaki-crane.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


.btn-beranda {
      background-color: #8d030f; /* Biru */
      color: white;
      border: none;
      padding: 8px 14px;
      font-size: 13px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-beranda:hover {
      background-color: #8b0000;
      transform: translateY(-2px);
    }

    .btn-beranda:active {
      background-color: #d38f8f;
      transform: translateY(0);
    }

        .hero-slider {
            height: 65vh;
            min-height: 70px;
            position: relative;
            overflow: hidden;
             background-size: cover;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
        }

        .slide:nth-child(1) {
            background-image: url('/wp-mg-conten/banner-hoist-crane/marketing-online-pt-qiao-xing-industry.png');
        }
        .slide:nth-child(2) {
            background-image: url('/wp-mg-conten/banner-hoist-crane/hoist-crane-manufacturing-workshop-international-standards.jpg');
        }
        .slide:nth-child(3) {
            background-image: url('/wp-mg-conten/banner-hoist-crane/web-banner-spare-parts.JPG');
        }

                .slide:nth-child(4) {
            background-image: url('/wp-mg-conten/banner-hoist-crane/sperpart-industri-hansaki-crane.png');
        }


        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn:hover {
            background: rgba(255,255,255,0.4);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(216, 4, 4, 0.3);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background: white;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(216, 4, 4, 0.4);
        }

        /* Features Section */
        .features {
            padding: 80px 20px;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgb(219, 216, 216);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        /* Product Showcase */
        .product-showcase {
            padding: 40px 20px;

        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-highlight {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .highlight-image {
            flex: 1;
            min-height: 400px;
            background: url('/wp-mg-conten/tols/img/sperpart.jpg') center/cover;
            transition: transform 0.5s ease;
        }

        .product-highlight:hover .highlight-image {
            transform: rotateY(10deg);
        }

        .highlight-content {
            flex: 1;
            padding: 40px;
            transition: transform 0.5s ease;
        }

        .product-highlight:hover .highlight-content {
            transform: rotateY(-5deg);
        }

        .highlight-content h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .highlight-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        /* Workshop Gallery Section */
        .gallery-section {
            padding: 40px 20px;
            background: white;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 250px;
            transform-style: preserve-3d;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1) rotateY(5deg);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            transform: translateZ(30px);
        }

        /* Stats Section */
        .stats {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 30px;
            transform-style: preserve-3d;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            transform: translateZ(20px);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            transform: translateZ(10px);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: url('/wp-mg-conten/tols/img/sperpart-hanasaki-crane.jpeg') center/cover;
            text-align: center;
            color: white;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* 3D Animation Elements */
        .floating-3d {
            animation: float3d 6s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes float3d {
            0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); }
            100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .product-highlight {
                flex-direction: column;
            }
            
            .highlight-image {
                min-height: 300px;
                width: 100%;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }