   :root {
            --primary: #e74c3c;
            --secondary: #2c3e50;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #34495e;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
        }
        
        body {
            line-height: 1.7;
            color: var(--text);
            background-color: #f9f9f9;
            padding: 0;
            max-width: 100%;
            overflow-x: hidden;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        }


/* Tombol Home & Selector Bahasa di pojok kanan atas */
.top-controls {
    position: absolute; /* ubah ke fixed kalau mau tetap terlihat saat scroll */
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

/* Tombol Home */
.home-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--dark);
}

.home-btn i {
    color: var(--primary);
}

.home-btn:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

/* Selector bahasa */
.lang-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--dark);
}

.lang-toggle i {
    color: var(--primary);
}

.lang-toggle:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

/* Dropdown menu bahasa */
.lang-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 150px;
    z-index: 1000;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
}

.lang-option:hover {
    background-color: var(--light);
}

.lang-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Aktifkan menu */
.lang-selector.active .lang-menu {
    display: block;
}

/* Responsif */
@media (max-width: 576px) {
    .top-controls {
        top: 10px;
        right: 10px;
        gap: 5px;
    }

    .home-btn, .lang-toggle {
        padding: 6px 10px;
        font-size: 12px;
    }

    .lang-menu {
        min-width: 120px;
    }
}


/* Style untuk section aplikasi utama - Enhanced Version */
.content-section h3 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin: 2em 0 1em;
  padding-bottom: 0.8em;
  border-bottom: 3px solid var(--primary);
  position: relative;
  font-weight: 600;
}

.content-section h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.feature-list li {
  position: relative;
  padding: 1.2rem 1.5rem 1.2rem 2.5rem;
  line-height: 1.6;
  color: var(--text);
  font-size: 1.1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.3rem;
  top: 1.2rem;
}

.feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-left: 4px solid var(--accent);
  background-color: var(--light);
}

.feature-list li {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
.feature-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
  .content-section h3 {
    font-size: 1.5rem;
    margin: 1.5em 0 0.8em;
  }
  
  .feature-list li {
    padding: 1rem 1.2rem 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

        
        
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(98, 103, 107, 0.158), rgba(78, 77, 77, 0.507)), 
                url('/wp-mg-conten/banner-hoist-crane/banner-mesin-sandblasting.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-start;     
    padding: 80px 50px;          
    text-align: left;          
    color: white;
    position: relative;
    overflow: hidden;
}
.hero .subtitle {
    margin: 0; 
}


.hero h1, 
.hero .subtitle, 
.hero .scroll-down {
    position: relative;
    z-index: 2;
}


.hero h1,
.hero .subtitle {
    position: relative;
    margin: 0;
}



.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    animation: fadeInDown 1s ease;
}


.hero h1{
  font-weight: 800;
  font-size: 2rem;
  animation: swapColor 3s infinite alternate;
}

@keyframes swapColor {
  0%   { color: #c9f700; text-shadow: 0 2px 0 rgba(8, 136, 46, 0.05); }
  100% { color: #ffffff; text-shadow: 0 2px 0 rgb(199, 0, 0); }
}



.hero .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 0 2rem 0;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
    text-align: left;
}

        .hanasaki {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 2rem;
        color: red;
        }

        .crane {
            color:rgb(5, 41, 117);
        }

        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: #f9f9f9;
            transform: skewY(-3deg);
            z-index: 1;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }
        
        .content-section {
            padding: 80px 10%;
            position: relative;
            background: white;
            margin-bottom: 5px;
            box-shadow: var(--shadow);
        }
        
        .content-section:nth-child(even) {
            background: var(--light);
        }
        
        h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            font-weight: 600;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text);
            line-height: 1.8;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-item:hover::before {
            width: 100%;
            opacity: 0.1;
        }
        
        .feature-item h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .feature-item h3 i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .feature-item p {
            color: var(--text);
            font-size: 1rem;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
            height: 250px;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 500;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 80px 10%;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-section h2::after {
            background: var(--accent);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cta-section p {
            color: rgba(255,255,255,0.9);
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            .content-section {
                padding: 60px 8%;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .content-section {
                padding: 50px 5%;
            }
            
            .feature-list {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .hero {
                padding: 0 20px;
            }
        }