* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #0a5c36;
            --dark-green: #083c24;
            --light-green: #e8f5e9;
            --accent-green: #1a7d4d;
            --royal-dark: #052416;
            --royal-light: #c8e6c9;
            --metallic: linear-gradient(135deg, #0a5c36 0%, #1a7d4d 50%, #083c24 100%);
            --gold-accent: #d4af37;
            --text-dark: #052416;
            --text-light: #666;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
        }

        header {
            background: linear-gradient(135deg, #052416, #083c24);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .back-btn {
            background: rgba(26,125,77,0.2);
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid rgba(26,125,77,0.4);
        }

        .back-btn:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
            border-color: var(--accent-green);
            transform: translateY(-2px);
        }

        .hero-specs {
            background: linear-gradient(135deg, rgba(5,36,22,0.95), rgba(8,60,36,0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a5c36" width="1200" height="600"/></svg>');
            padding: 140px 5% 60px;
            text-align: center;
            color: var(--white);
        }

        .hero-specs h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .hero-specs p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--royal-dark);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
            border-radius: 2px;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .spec-card {
            background: var(--white);
            border: 2px solid var(--light-green);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .spec-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-green);
            box-shadow: 0 8px 25px rgba(10,92,54,0.15);
        }

        .spec-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--light-green);
        }

        .spec-icon {
            width: 50px;
            height: 50px;
            background: var(--metallic);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .spec-card h3 {
            color: var(--royal-dark);
            font-size: 1.3rem;
        }

        .spec-detail {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-detail:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .spec-value {
            color: var(--royal-dark);
            font-weight: 600;
            text-align: right;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--light-green), rgba(200,230,201,0.5));
            border-left: 4px solid var(--accent-green);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .highlight-box h4 {
            color: var(--royal-dark);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .highlight-box p {
            color: var(--text-dark);
            line-height: 1.8;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 10px;
            border: 1px solid var(--light-green);
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: var(--light-green);
            transform: translateX(5px);
        }

        .feature-item i {
            color: var(--accent-green);
            font-size: 1.3rem;
            min-width: 25px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--royal-dark), var(--dark-green));
            padding: 60px 5%;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            margin: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #25D366, #1ea952);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.6);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-green);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: transparent;
            color: var(--white);
        }

        .comparison-table {
            width: 100%;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }

        .comparison-table th {
            background: var(--metallic);
            color: var(--white);
            padding: 1.2rem;
            text-align: left;
            font-size: 1.1rem;
        }

        .comparison-table td {
            padding: 1.2rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table tr:hover {
            background: var(--light-green);
        }

        footer {
            background: linear-gradient(135deg, #052416, #083c24);
            color: var(--white);
            padding: 3rem 5% 1.5rem;
            text-align: center;
        }

        footer p {
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .floating-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
            text-decoration: none;
        }

        .floating-wa:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37,211,102,0.6);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }

        @media (max-width: 768px) {
            .hero-specs h1 {
                font-size: 2rem;
            }

            .hero-specs p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #0a5c36;
            --dark-green: #083c24;
            --light-green: #e8f5e9;
            --accent-green: #1a7d4d;
            --royal-dark: #052416;
            --royal-light: #c8e6c9;
            --metallic: linear-gradient(135deg, #0a5c36 0%, #1a7d4d 50%, #083c24 100%);
            --gold-accent: #d4af37;
            --text-dark: #052416;
            --text-light: #666;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header & Navigation - Transparan */
        header {
            background: rgba(5, 36, 22, 0.85); /* Transparan dengan warna dasar */
            backdrop-filter: blur(10px); /* Efek blur untuk transparansi */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.scrolled {
            background: rgba(5, 36, 22, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(15px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .nav-links a:hover {
            color: var(--royal-light);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 120px 5% 80px;
            text-align: center;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-video.active {
            opacity: 1;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            animation: kenburns 20s ease-in-out infinite;
        }

        .hero-image.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(to bottom, rgba(5, 36, 22, 0.3), rgba(5, 36, 22, 0.6));
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            color: var(--white);
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1rem;
            animation: fadeInUp 1s;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #0a5c36, #1a7d4d);
            color: var(--white);
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(10,92,54,0.4);
            animation: fadeInUp 1.4s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #1a7d4d, #0a5c36);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(10,92,54,0.5);
        }

        /* Vehicle Section */
        .vehicle-section {
            padding: 80px 5%;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--royal-dark);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
            margin: 1rem auto;
            border-radius: 2px;
        }

        .vehicle-card {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s;
            border: 1px solid rgba(10,92,54,0.1);
        }

        .vehicle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(10,92,54,0.2);
        }

        .vehicle-image {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: var(--primary-green);
        }

        .vehicle-info {
            padding: 2rem;
        }

        .vehicle-info h3 {
            font-size: 2rem;
            color: var(--royal-dark);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            background: var(--metallic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .vehicle-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
        }

        .feature-item i {
            color: var(--primary-green);
        }

        .button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: var(--white);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(10,92,54,0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .btn-secondary:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        /* Price List Section */
        .price-section {
            padding: 80px 5%;
            background: var(--light-green);
        }

        .price-table {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid rgba(10,92,54,0.1);
        }

        .price-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .price-table th {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: var(--white);
            padding: 1.5rem;
            text-align: left;
            font-size: 1.2rem;
        }

        .price-table td {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 5%;
            background: var(--white);
        }

        .maps-container {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 0 5%;
        }

        .maps-title {
            font-size: 1.5rem;
            color: var(--royal-dark);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .maps-title i {
            color: var(--accent-green);
        }

        .maps-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(10, 92, 54, 0.15);
            border: 3px solid var(--light-green);
        }

        .maps-wrapper iframe {
            display: block;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: var(--light-green);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-green);
            box-shadow: 0 8px 25px rgba(10,92,54,0.2);
        }

        .contact-card i {
            font-size: 3rem;
            background: var(--metallic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .contact-card h4 {
            font-size: 1.3rem;
            color: var(--royal-dark);
            margin-bottom: 0.5rem;
        }

        /* Articles Section */
        .articles-section {
            padding: 80px 5%;
            background: var(--light-green);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .article-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: 1px solid rgba(10,92,54,0.1);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(10,92,54,0.2);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-content h4 {
            color: var(--royal-dark);
            margin-bottom: 0.5rem;
        }


        /* ============================
           SERAH TERIMA SECTION
        ============================ */
        .serah-terima-section {
            padding: 80px 5%;
            background: #ffffff;
        }

        .serah-terima-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .serah-terima-subtitle {
            text-align: center;
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .serah-terima-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 1rem;
        }

        /* Foto 1 melebar 2 kolom di baris pertama */
        .gallery-item--wide {
            grid-column: span 2;
        }

        /* Foto 4 & 5 di baris kedua: geser ke tengah */
        .serah-terima-gallery .gallery-item:nth-child(4) {
            grid-column: 1;
        }
        .serah-terima-gallery .gallery-item:nth-child(5) {
            grid-column: 2;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
        }

        .gallery-item--wide {
            aspect-ratio: 16/9;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10,92,54,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #fff;
            font-size: 1.8rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
        }

        .lightbox-close,
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
            border-radius: 50%;
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .lightbox-close:hover,
        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: rgba(255,255,255,0.35);
        }

        .lightbox-close { top: 20px; right: 20px; }
        .lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
        .lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

        @media (max-width: 768px) {
            .serah-terima-gallery {
                grid-template-columns: 1fr 1fr;
            }
            .gallery-item--wide {
                grid-column: span 2;
            }
            .serah-terima-gallery .gallery-item:nth-child(4),
            .serah-terima-gallery .gallery-item:nth-child(5) {
                grid-column: auto;
            }
        }

        @media (max-width: 480px) {
            .serah-terima-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-item--wide,
            .serah-terima-gallery .gallery-item:nth-child(4),
            .serah-terima-gallery .gallery-item:nth-child(5) {
                grid-column: 1;
            }
        }
        /* Enhanced Footer */
        footer {
            background: linear-gradient(135deg, #052416 0%, #083c24 50%, #03180d 100%);
            color: var(--white);
            padding: 4rem 5% 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--royal-light);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(26,125,77,0.3);
        }

        .footer-section h3 i {
            background: var(--metallic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section p {
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            display: block;
            margin-bottom: 0.6rem;
            transition: all 0.3s;
            position: relative;
            padding-left: 20px;
        }

        .footer-section a::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            transition: 0.3s;
        }

        .footer-section a:hover {
            color: var(--royal-light);
            padding-left: 25px;
        }

        .footer-section a:hover::before {
            left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(26,125,77,0.2);
            border: 2px solid rgba(26,125,77,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            padding-left: 0;
        }

        .social-links a::before {
            content: none;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
            border-color: var(--accent-green);
            transform: translateY(-3px) rotate(360deg);
            box-shadow: 0 5px 15px rgba(26,125,77,0.4);
            padding-left: 0;
        }

        .footer-info-item {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.75);
        }

        .footer-info-item i {
            color: var(--accent-green);
            margin-top: 3px;
            min-width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(26,125,77,0.3);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .footer-bottom a {
            color: var(--royal-light);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 600;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .phone-btn {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        }

        .float-btn:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.3s;
            border: 1px solid rgba(10,92,54,0.1);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .close-modal:hover {
            color: var(--primary-green);
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes kenburns {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            25% {
                transform: scale(1.1) translate(-2%, -2%);
            }
            50% {
                transform: scale(1.15) translate(2%, 2%);
            }
            75% {
                transform: scale(1.1) translate(-1%, 1%);
            }
        }

        @keyframes slideIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            }
            50% {
                box-shadow: 0 4px 25px rgba(37,211,102,0.6);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(5, 36, 22, 0.95);
                backdrop-filter: blur(15px);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                gap: 1rem;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .button-group {
                flex-direction: column;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }
        /* =================================
   STYLING FORM TEST DRIVE
   ================================= */

.form-section {
    padding: 80px 5%;
    /* Menggunakan background hijau muda agar serasi */
    background: var(--light-green); 
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    /* Ditarik ke atas agar lebih dekat dengan judul */
    margin-top: -2.5rem; 
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(10,92,54,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--royal-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 2px solid #eee; /* Border abu-abu muda */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f9f9f9; /* Background input sedikit abu-abu */
}

/* Efek saat input di-klik (focus) */
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green); /* Border menjadi hijau */
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 125, 77, 0.2); /* Bayangan hijau */
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Membuat tombol submit menjadi 100% lebar di dalam form */
.form-section .cta-button {
    width: 100%; 
    font-size: 1.2rem;
    padding: 1.1rem;
}/* =================================
   PROMO SECTION STYLING
   ================================= */

.promo-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--royal-dark), var(--dark-green));
    text-align: center;
    position: relative;
    overflow: hidden;
}


.promo-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.promo-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.promo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.promo-content {
    color: var(--white);
    margin-bottom: 2rem;
}

.promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-content .promo-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-accent);
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-price .old-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
    text-align: left;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.promo-feature i {
    color: var(--gold-accent);
    font-size: 1.3rem;
    width: 25px;
}

/* ===================================================
   TESTIMONIAL SECTION
   =================================================== */

.testimonial-section {
    padding: 0 0 80px;
    background: linear-gradient(160deg, #052416 0%, #083c24 60%, #0a5c36 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.testimonial-section::before,
.testimonial-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}
.testimonial-section::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1a7d4d, transparent);
    top: -100px; right: -100px;
}
.testimonial-section::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #14a085, transparent);
    bottom: -80px; left: -80px;
}

/* ---- Stats Bar ---- */
.testi-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 28px 5%;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 1rem;
}

.testi-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 3rem;
}

.testi-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.testi-stat-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testi-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ---- Container & Title ---- */
.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.testi-title {
    color: #ffffff !important;
}

.testi-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1a7d4d, #f5a623) !important;
}

.testimonial-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* ---- Carousel Wrapper ---- */
.testi-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.testi-carousel-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}

.testi-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ---- Card ---- */
.testimonial-card {
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

.testi-card-inner {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2.4rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testi-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a7d4d, #f5a623, #1a7d4d);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testi-quote-icon {
    font-size: 5rem;
    line-height: 0.8;
    color: #1a7d4d;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #f5a623;
    font-size: 1.15rem;
}

.testi-rating {
    background: rgba(245,166,35,0.15);
    color: #f5a623;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    border: 1px solid rgba(245,166,35,0.4);
}

.testimonial-text {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    line-height: 1.85;
    flex: 1;
}

/* ---- Author ---- */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.2rem;
    flex-wrap: wrap;
}

.author-info {
    flex: 1;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.avatar-green  { background: linear-gradient(135deg, #0a5c36, #1a7d4d); }
.avatar-teal   { background: linear-gradient(135deg, #0d7377, #14a085); }
.avatar-blue   { background: linear-gradient(135deg, #2c3e7a, #3d5ba3); }
.avatar-purple { background: linear-gradient(135deg, #6b2fa0, #9b59b6); }

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.55);
    font-size: 0.83rem;
}

.testimonial-author span i {
    color: #1a7d4d;
    margin-right: 3px;
}

.testi-verified {
    font-size: 0.78rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(74,222,128,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(74,222,128,0.25);
    white-space: nowrap;
}

/* ---- Nav Buttons ---- */
.testi-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 2;
}

.testi-nav:hover {
    background: #1a7d4d;
    border-color: #1a7d4d;
    transform: scale(1.1);
}

/* ---- Dots ---- */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testi-dot.active {
    background: #1a7d4d;
    width: 30px;
    border-radius: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    margin-top: -1rem;
}

@media (max-width: 768px) {
    .testi-stats-bar { padding: 20px 5%; }
    .testi-stat { padding: 0 1.2rem; }
    .testi-stat-num { font-size: 1.8rem; }
    .testi-stat-divider { height: 35px; }
    .testi-nav { display: none; }
    .testi-card-inner { padding: 1.6rem 1.4rem 1.4rem; }
}
/* ===================================================
   FAQ SECTION
   =================================================== */

.faq-section {
    padding: 80px 5%;
    background: var(--white);
}

.faq-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--light-green);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--accent-green);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--royal-dark);
    text-align: left;
    gap: 1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-green);
}

.faq-item.open .faq-question {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.show {
    max-height: 400px;
}

.faq-answer p {
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.97rem;
    border-top: 1px solid var(--light-green);
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        font-size: 0.92rem;
    }
}
}

.promo-timer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-timer h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-accent);
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 60px;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
}

.promo-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #1ea952);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.promo-button:hover::before {
    left: 100%;
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #1ea952, #25D366);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .promo-content .promo-title {
        font-size: 2rem;
    }
    
    .promo-price {
        font-size: 2rem;
    }
    
    .timer-display {
        font-size: 1.2rem;
    }
    
    .timer-value {
        font-size: 1.5rem;
        min-width: 50px;
    }
    
    .promo-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
/* ===================================================
   VIDEO MOBILE COMPATIBILITY FIXES
   ================================= */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* Fix untuk iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Fix untuk autoplay di mobile */
.hero-video.active {
    opacity: 1;
}

/* Pastikan video tidak terlalu besar untuk performa mobile */
@media (max-width: 768px) {
    .hero-video {
        /* Optimasi untuk mobile */
        max-width: 100%;
        height: auto;
    }
}

/* Fallback untuk browser yang memblokir autoplay */
.hero-video.fallback {
    display: none;
}

/* Loading state untuk video */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
}
.hero {
    /* ... properti lain ... */
    height: 100vh; /* Memastikan ketinggian penuh layar */
    overflow: hidden;
    /* ... */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* KRITIKAL: Video mengisi seluruh elemen, menyesuaikan lebar/tinggi */
    /* ... Fix untuk iOS/animasi ... */
    -webkit-transform: translateZ(0); /* Perbaikan untuk rendering mobile */
}
.news-article {
            padding: 80px 5% 50px 5%; /* Menyesuaikan dengan header */
            max-width: 900px;
            margin: auto;
            line-height: 1.8;
            text-align: justify;
            color: var(--text-dark);
        }
        .news-article h1 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive title size */
            border-bottom: 3px solid var(--accent-green);
            padding-bottom: 10px;
        }
        .news-meta {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .news-body p {
            margin-bottom: 1.5rem;
        }
        .news-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .news-body blockquote {
            border-left: 5px solid var(--accent-green);
            padding: 10px 20px;
            margin: 20px 0;
            background-color: var(--light-green);
            font-style: italic;
        }
