        /* =========================================
           RESET & BASIC STYLES
           ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            padding-top: 70px;
        }

        /* =========================================
           NAVBAR (STICKY DI ATAS)
           ========================================= */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            padding: 15px 40px;
            color: #333333;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            
            /* Membuat Navbar tetap di atas saat discroll */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #333333;
            letter-spacing: 1px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #e52b36;
        }

        .logo-tagline {
            font-size: 14px;
            color: #888888;
            border-left: 1px solid #cccccc;
            padding-left: 10px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a4a4a;
            padding: 10px 15px;
            display: block;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #e52b36;
        }

        .btn-contact {
            background-color: #e52b36;
            color: #ffffff !important;
            padding: 10px 24px !important;
            border-radius: 4px;
            font-weight: 700;
            margin-left: 15px;
            transition: background-color 0.3s ease;
        }

        .btn-contact:hover {
            background-color: #cc2530;
            color: #ffffff !important;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            list-style: none;
            border-radius: 4px;
            overflow: hidden;
            z-index: 1000;
            border-top: 3px solid #e52b36;
        }

        .nav-links li:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu li a {
            color: #4a4a4a;
            padding: 12px 20px;
            font-weight: 500;
            border-bottom: 1px solid #f1f1f1;
        }

        .dropdown-menu li a:hover {
            background-color: #f9f9f9;
            color: #e52b36;
            padding-left: 25px;
            transition: all 0.3s ease;
        }

        .dropdown > a::after {
            content: ' \2304';
            font-size: 11px;
            margin-left: 6px;
            display: inline-block;
            vertical-align: 4px;
        }

        /* =========================================
           HERO SECTION BACKGROUND SLIDER
           ========================================= */
        .hero-section {
            background-color: #161821; 
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: #ffffff;
            text-shadow: 0 4px 10px rgba(0,0,0,0.8);
            /* Efek animasi teks saat awal (tersembunyi & turun) */
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1; /* Opasitas diatur agar teks tetap terbaca jelas */
        }

        /* Saat slide aktif, teks muncul ke atas */
        .hero-slide.active .hero-content {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-section h1 {
            color: #ffffff;
            font-size: 56px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            z-index: 3;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* KETIKA SLIDE AKTIF: Opacity 0.4 HANYA BERLAKU PADA GAMBAR */
        .hero-slide.active .hero-bg {
            opacity: 0.6; 
        }

        /* Layer Khusus Gambar Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1; /* Berada di belakang */
            
            /* Gambar disembunyikan saat slide tidak aktif */
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        /* Tombol Navigasi Manual */
        .hero-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border: none;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
            border-radius: 4px;
        }

        .hero-btn:hover {
            background-color: #e52b36; /* Merah UTECH */
        }

        .hero-btn.prev {
            left: 20px;
        }

        .hero-btn.next {
            right: 20px;
        }

        /* =========================================
           ABOUT SECTION
           ========================================= */
        .about-section {
            display: flex;
            justify-content: center;
            margin-top: -50px; 
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .about-container {
            display: flex;
            background-color: #ffffff;
            width: 100%;
            max-width: 1100px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            margin-bottom: 50px;
        }

        .about-text {
            background-color: #e52b36; 
            width: 50%;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .about-text::after {
            content: '\f091'; /* Kode ikon Trofi dari FontAwesome */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            bottom: -40px;
            right: -20px;
            font-size: 220px;
            color: rgba(255, 255, 255, 0.06); /* Sangat transparan, lembut, dan elegan */
            pointer-events: none;
            transform: rotate(-15deg); /* Sedikit dimiringkan agar tampak artistik dan dinamis */
            transition: transform 0.5s ease;
        }

        .about-text:hover::after {
            transform: rotate(0deg) scale(1.05);
        }

        .about-text .small-title {
            display: block;
            font-size: 13px;
            font-weight: bold;
            color: #ffffff; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .about-text h2 {
            font-size: 32px;
            color: #ffffff; 
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .about-text h3 {
            font-size: 16px;
            color: #ffffff; 
            margin-bottom: 10px;
        }

        .about-text p {
            font-size: 14px;
            color: #f1f1f1; 
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn-work {
            display: inline-block;
            background-color: #2c303a; 
            color: #ffffff;
            padding: 12px 24px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            border-radius: 3px;
            transition: background 0.3s;
            position: relative;
            z-index: 2;
        }

        .btn-work:hover {
            background-color: #1a1c23;
        }

        .about-image {
            width: 50%;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* =========================================
           QUALITY SERVICES SECTION
           ========================================= */
        .services-section {
            padding: 80px 20px;
            background-color: #ffffff; 
        }

        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .services-header .sub-title {
            color: #333333;
            font-size: 14px;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services-header h2 {
            color: #333333;
            font-size: 28px;
            font-weight: 700;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Mengubah div menjadi link yang bisa diklik */
        .service-card {
            text-align: center;
            display: block; 
            text-decoration: none; 
            cursor: pointer;
            transition: transform 0.4s ease; /* Transisi agar kartu naik dengan mulus */
        }

        /* Bungkus baru untuk menahan gambar agar saat dizoom tidak meluber */
        .service-image {
            width: 100%;
            height: 220px;
            margin-bottom: 20px;
            overflow: hidden; 
            border-radius: 4px; /* Opsional: memberikan sudut lengkung sedikit */
        }

        /* Aturan gambar di dalam bungkus */
        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease; /* Transisi efek zoom in pada gambar */
        }

        /* Aturan untuk judul */
        .service-card h3 {
            font-size: 18px;
            color: #333333;
            margin-bottom: 12px;
            font-weight: 700;
            transition: color 0.3s ease; /* Transisi untuk perubahan warna teks */
        }

        .service-card p {
            font-size: 13px;
            color: #666666;
            line-height: 1.6;
            padding: 0 10px;
        }

        /* =========================================
           EFEK HOVER ANIMASI QUALITY SERVICES
           ========================================= */
        
        /* 1. Keseluruhan kartu naik sedikit saat di-hover */
        .service-card:hover {
            transform: translateY(-8px);
        }

        /* 2. Gambar di dalamnya membesar perlahan (Zoom In) */
        .service-card:hover img {
            transform: scale(1.1);
        }

        /* 3. Warna judul teks berubah menjadi merah khas UTECH */
        .service-card:hover h3 {
            color: #e52b36;
        }

        /* =========================================
           INFO BANNER SECTION
           ========================================= */
        .info-banner-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
        }

        .info-banner-container {
            display: flex;
            width: 100%;
            max-width: 1100px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .info-left {
            width: 50%;
            background-color: #1a1c23; 
            padding: 60px 50px;
            color: #ffffff;
            position: relative;
        }

        .info-left .small-text {
            color: #e52b36; 
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .info-left h2 {
            font-size: 32px;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .info-left p {
            font-size: 14px;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn-accent {
            display: inline-block;
            background-color: #e52b36; 
            color: #ffffff;
            padding: 12px 24px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            border-radius: 3px;
            transition: background 0.3s;
        }

        .btn-accent:hover {
            background-color: #c4242e;
        }

        .info-right {
            width: 50%;
            background-color: #e52b36; 
            padding: 60px 50px;
            color: #ffffff;
        }

        .info-right h2 {
            font-size: 28px;
            margin-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 15px;
            display: inline-block;
        }

        .info-right p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #f1f1f1;
        }

        .service-list-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .service-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
        }

        .service-list-item span.icon {
            background-color: #ffffff;
            color: #e52b36;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 16px;
        }

        /* =========================================
           LATEST PROJECTS SECTION
           ========================================= */
        .projects-section {
            padding: 60px 0;
            background-color: #ffffff;
            text-align: center;
        }

        .projects-header {
            margin-bottom: 40px;
        }

        .projects-header .sub-title {
            color: #e52b36;
            font-size: 14px;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        .projects-header h2 {
            font-size: 32px;
            color: #1a1c23;
            font-weight: bold;
        }

        .projects-grid {
            display: flex;
            width: 100%;
            max-width: 1200px; 
            margin: 0 auto;
        }

/* Mengubah div menjadi link (a) */
        .project-item {
            flex: 1;
            height: 300px;
            position: relative;
            overflow: hidden;
            display: block; /* Wajib ditambahkan karena memakai tag <a> */
            text-decoration: none;
            cursor: pointer;
        }

        /* Tambahan transisi halus pada gambar */
        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Efek zoom smooth */
        }

        /* Transisi pada gradien gelap di bawah gambar */
        .project-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            transition: height 0.4s ease, background 0.4s ease;
        }

        /* Tambahan transisi halus pada teks judul */
        .project-item h3 {
            position: absolute;
            bottom: 25px;
            left: 20px;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            z-index: 2;
            text-align: left;
            padding-right: 15px;
            line-height: 1.4;
            transition: transform 0.4s ease;
        }

        /* Pengaturan awal teks "More" (Tersembunyi di bawah) */
        .more-link {
            position: absolute;
            bottom: 15px;
            left: 20px;
            color: #e52b36; /* Warna merah ciri khas web kamu */
            font-size: 13px;
            font-weight: bold;
            z-index: 2;
            opacity: 0; /* Tembus pandang (hilang) saat tidak dihover */
            transform: translateY(20px); /* Posisinya ditarik ke bawah */
            transition: all 0.4s ease;
        }

        /* =========================================
           EFEK HOVER ANIMASI (SAAT KURSOR DIARAHKAN)
           ========================================= */
        
        /* 1. Gambar perlahan membesar (Zoom In) */
        .project-item:hover img {
            transform: scale(1.15);
        }

        /* 2. Gradien hitam sedikit naik ke atas agar teks makin jelas */
        .project-item:hover::after {
            height: 80%;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
        }

        /* Judul naik ke atas sedikit saat di-hover */
        .project-item:hover h3 {
            transform: translateY(-20px); 
        }

        /* Teks "More ->" muncul dari bawah */
        .project-item:hover .more-link {
            opacity: 1; /* Menjadi terlihat */
            transform: translateY(0); /* Kembali ke posisi aslinya */
        }

        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
        }

        .project-item h3 {
            position: absolute;
            bottom: 25px;
            left: 20px;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            z-index: 2;
            text-align: left;
            padding-right: 15px;
            line-height: 1.4;
        }

        /* =========================================
           QUOTE & FAQ SECTION
           ========================================= 
        .quote-faq-section {
            background-color: #f9f9f9;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
        }

        .quote-faq-container {
            display: flex;
            width: 100%;
            max-width: 1100px;
            gap: 50px;
            align-items: flex-start;
        }

        .quote-form-wrapper {
            width: 45%;
            background-color: #2c2d30; 
            padding: 50px 40px;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .quote-form-wrapper h2 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .quote-form-wrapper p {
            font-size: 14px;
            color: #bbbbbb;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .quote-form .form-group {
            margin-bottom: 25px;
        }

        .quote-form input, 
        .quote-form textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #666666;
            padding: 10px 0;
            color: #ffffff;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .quote-form input::placeholder, 
        .quote-form textarea::placeholder {
            color: #dddddd;
            font-weight: 500;
        }

        .quote-form input:focus, 
        .quote-form textarea:focus {
            border-bottom: 1px solid #e52b36;
        }

        .quote-form textarea {
            resize: none;
            height: 60px;
        }

        .btn-submit {
            background-color: #e52b36; 
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            font-size: 13px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #c4242e;
        }

        .faq-wrapper {
            width: 55%;
            padding: 20px 0;
        }

        .faq-wrapper .sub-title {
            color: #e52b36;
            font-size: 14px;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .faq-wrapper h2 {
            font-size: 32px;
            color: #1a1c23;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .accordion-container {
            border: 1px solid #e0e0e0;
            background-color: #ffffff;
        }

        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            background-color: #ffffff;
            font-weight: bold;
            font-size: 15px;
            color: #333333;
        }

        .accordion-item.active .accordion-header {
            background-color: #1a1c23; 
            color: #ffffff;
            padding: 0 0 0 20px;
        }

        .accordion-icon {
            font-size: 20px;
            font-weight: bold;
            color: #333333;
        }

        .accordion-item.active .accordion-icon {
            background-color: #e52b36;
            color: #ffffff;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .accordion-content {
            padding: 20px;
            color: #666666;
            font-size: 14px;
            line-height: 1.6;
            display: none; 
        }

        .accordion-item.active .accordion-content {
            display: block; 
        }
*/
        /* =========================================
           OUR PRODUCT SECTION 
           ========================================= */
        .product-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
            text-align: center;
        }

        .product-section h2 {
            font-size: 28px;
            color: #333333;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .product-card {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
            border-bottom: 3px solid #e52b36;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .product-content {
            padding: 20px;
        }

        .product-meta {
            display: flex;
            gap: 20px;
            font-size: 12px;
            color: #888888;
            margin-bottom: 15px;
            align-items: center;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-content h3 {
            font-size: 18px;
            color: #1a1c23;
            font-weight: 700;
        }

        /* =========================================
           TESTIMONIALS SECTION 
           ========================================= */
        .testimonial-section {
            background-color: #203348;
            background-image: linear-gradient(to right, rgba(32, 51, 72, 0.95), rgba(32, 51, 72, 0.85)), url('https://images.unsplash.com/photo-1544256718-3bcf237f3974?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 20px;
            color: #ffffff;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .testimonial-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
        }

        /* Pengaturan wadah slide testimoni */
        .testimonial-slides {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* Menyembunyikan slide secara default */
        .testi-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out, visibility 0.5s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Menampilkan slide yang sedang aktif */
        .testi-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative; 
        }

        .nav-arrow {
            font-size: 40px;
            color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: color 0.3s;
            user-select: none;
        }

        .nav-arrow:hover {
            color: #ffffff;
        }

        .testimonial-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 40px;
        }

        .testimonial-content .sub-title {
            color: #e52b36; 
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .testimonial-content h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .quote-icon {
            font-size: 80px;
            color: rgba(255,255,255,0.1);
            line-height: 1;
            margin-bottom: -30px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            font-style: italic;
            color: #d1d9e0;
            max-width: 700px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ffffff;
            object-fit: cover;
            border: 2px solid #e52b36;
        }

        .author-name {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            text-align: left;
            position: relative;
            padding-right: 30px;
        }

        .author-name::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 20px;
            height: 2px;
            background-color: #e52b36; 
        }

        /* =========================================
           OUR CUSTOMER SECTION 
           ========================================= */
        .customer-section {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .customer-section h2 {
            font-size: 28px;
            color: #333333;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .customer-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .customer-logos img {
            max-width: 120px;
            max-height: 100px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .customer-logos img:hover {
            transform: scale(1.1);
        }

        /* =========================================
           CTA BANNER SECTION 
           ========================================= */
        .cta-banner {
            background-image: linear-gradient(to right, rgba(229, 43, 54, 0.9), rgba(229, 43, 54, 0.7)), url('https://images.unsplash.com/photo-1544256718-3bcf237f3974?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            padding: 60px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
        }

        .cta-text h2 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .cta-text p {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.9;
        }

        .btn-cta-dark {
            background-color: #1a1c23; 
            color: #ffffff;
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 4px;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-dark:hover {
            background-color: #333333;
        }

        /* =========================================
           FOOTER SECTION 
           ========================================= */
        .main-footer {
            background-color: #161821;
            background-image: linear-gradient(to top, rgba(22, 24, 33, 1) 0%, rgba(22, 24, 33, 0.85) 100%), url('https://images.unsplash.com/photo-1513628253939-010e64ac66cd?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 80px 10% 30px 10%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .footer-logo-text {
            font-size: 32px;
            font-weight: 900;
            font-style: italic;
            color: #e52b36; 
            margin-bottom: 5px;
        }

        .footer-company-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #cccccc;
        }

        .footer-desc span {
            color: #ffffff;
            font-weight: bold;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: center;
            cursor: pointer;
        }

        .recent-post:hover .rp-text h4 {
            color: #e52b36; 
        }

        .recent-post img {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 3px;
        }

        .rp-text {
            display: flex;
            flex-direction: column;
        }

        .rp-text span {
            font-size: 12px;
            color: #aaaaaa;
            margin-bottom: 4px;
        }

        .rp-text h4 {
            font-size: 14px;
            color: #ffffff;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .contact-info p {
            font-size: 14px;
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .contact-info span {
            color: #ffffff;
            font-weight: 600;
        }

        .business-hours {
            margin-top: 30px;
        }

        .business-hours h3 {
            margin-bottom: 15px;
        }
        
        .business-hours p {
            font-size: 14px;
            color: #cccccc;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright-text {
            font-size: 13px;
            color: #aaaaaa;
        }

        .copyright-text span {
            color: #e52b36; 
            font-weight: bold;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background-color: #e52b36; 
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            font-size: 16px; /* Ukuran font diperbesar agar ikon pas */
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: #c4242e;
            transform: translateY(-3px);
        }

        /* =========================================
        EVENT GALLERY SECTION
        ========================================= */
        .event-section {
            padding: 80px 20px;
            background-color: #ffffff;
            max-width: 1100px;
            margin: 0 auto;
            min-height: 60vh;
        }

        .event-section h2 {
            font-size: 36px;
            color: #1a1c23;
            font-weight: 800;
            margin-bottom: 40px;
            text-align: center; /* Judul diposisikan ke tengah */
        }

        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .event-card {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
            border-bottom: 3px solid #e52b36 !important; /* Tambahkan !important di sini */
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .event-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .event-content {
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .event-meta {
            display: flex;
            gap: 15px;
            font-size: 13px;
            color: #888888;
            margin-bottom: 15px;
            align-items: center;
        }

        .event-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-meta i {
            font-size: 15px;
            color: #bbbbbb; 
        }

        .event-content h3 {
            font-size: 18px;
            color: #000000;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 25px;
        }

        .read-more {
            margin-top: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #1a1c23;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: none;
            transition: color 0.3s ease;
        }

        .read-more i {
            transition: transform 0.3s ease;
        }

        .read-more:hover {
            color: #e52b36;
        }

        .read-more:hover i {
            transform: translateX(5px); 
        }

        .gallery-page-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
            min-height: 70vh; /* Memastikan area konten cukup tinggi */
        }

        .gallery-header {
            max-width: 1100px;
            margin: 0 auto 40px auto;
            text-align: center; /* Ubah dari 'right' menjadi 'center' */
        }

        .gallery-header h2 {
            font-size: 36px;
            color: #1a1c23;
            font-weight: 800;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Menampilkan 3 kartu ke samping */
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-card {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
            border-bottom: 3px solid #e52b36; /* Ubah dari #f6a821 menjadi #e52b36 */
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .gallery-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Gambar membesar saat kartu di-hover */
        .gallery-card:hover .gallery-image img {
            transform: scale(1.1);
        }

        .gallery-content {
            padding: 25px 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Mendorong read-more ke bagian paling bawah jika judul pendek */
        }

        .gallery-meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #888888;
            margin-bottom: 15px;
        }

        .gallery-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gallery-meta .meta-item i {
            font-size: 14px;
            color: #aaaaaa;
        }

        .gallery-content h3 {
            font-size: 20px;
            color: #1a1c23;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 25px;
            transition: color 0.3s ease;
        }

        .gallery-card:hover .gallery-content h3 {
            color: #e52b36; /* Warna merah saat kartu di-hover */
        }

        /* =========================================
        QUOTE FORM & IMAGE (SEAMLESS DESIGN)
        ========================================= */

        /* Bagian luar pembungkus section */
        .quote-faq-section {
            padding: 80px 20px;
            background-color: #ffffff; /* Warna latar belakang abu-abu sangat terang */
        }

        /* Wadah utama yang menyatukan Form dan Gambar */
        .quote-faq-container {
            display: flex;
            flex-wrap: wrap; /* Memungkinkan tumpukan pada layar HP */
            max-width: 1100px;
            margin: 0 auto;
            background-color: #26272b; /* Warna latar gelap menyatu dengan form */
            border-radius: 12px; /* Sudut melengkung untuk keseluruhan kotak */
            overflow: hidden; /* Memotong gambar mengikuti sudut melengkung container */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Efek bayangan elegan */
        }

        /* Bagian Kiri: Area Formulir */
        .quote-form-wrapper {
            flex: 1;
            min-width: 300px; /* Menjaga ukuran di layar kecil */
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-form-wrapper h2 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .quote-form-wrapper p {
            color: #a0a0a0;
            font-size: 15px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Input Formulir */
        .quote-form .form-group input,
        .quote-form .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #555555;
            color: #ffffff;
            padding: 12px 0;
            margin-bottom: 25px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .quote-form .form-group input:focus,
        .quote-form .form-group textarea:focus {
            border-bottom: 1px solid #e52b36; /* Garis bawah menyala merah saat diketik */
        }

        .quote-form .form-group input::placeholder,
        .quote-form .form-group textarea::placeholder {
            color: #888888;
        }

        .quote-form .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        /* Tombol Submit */
        .quote-form .btn-submit {
            background-color: #e52b36;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            width: max-content;
        }

        .quote-form .btn-submit:hover {
            background-color: #c4222e;
        }

        /* Bagian Kanan: Area Gambar */
        .faq-image-wrapper {
            flex: 1;
            min-width: 300px;
            min-height: 400px; /* Wajib ditambahkan agar gambar tidak hilang saat dibuka di HP */
            position: relative; /* Mengunci area gambar */
        }

        .faq-image-wrapper .side-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Memastikan gambar proporsional menutupi seluruh ruang */
            border-radius: 0; 
        }


        
/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */

/* --- TABLET / LAPTOP KECIL (max-width: 992px) --- */
@media (max-width: 992px) {
    /* Mengubah layout 3 kolom menjadi 2 kolom */
    .services-grid, .product-grid, .footer-grid, .event-grid, .gallery-grid, .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mengubah Flex baris menjadi kolom */
    .about-container, .about-grid-wrapper, .vision-content-section, .quote-faq-container {
        flex-direction: column;
    }
    
    .about-text, .about-image, .about-text-content, .about-image-content, 
    .vision-left, .vision-right, .quote-form-wrapper, .faq-image-wrapper {
        width: 100%;
        flex: none;
    }

    .projects-grid {
        flex-direction: column;
    }
    
    .project-item {
        width: 100%;
        height: 250px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- SMARTPHONE / HP (max-width: 768px) --- */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    /* Pengecilan Teks Hero Section */
    .hero-section {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero-btn {
        font-size: 18px;
        padding: 10px;
    }

    /* Mengubah layout Grid menjadi 1 kolom (Tumpuk ke bawah) */
    .services-grid, .product-grid, .footer-grid, .event-grid, 
    .gallery-grid, .mission-grid, .about-features-grid {
        grid-template-columns: 1fr;
    }

    /* Penyesuaian Padding & Spasi */
    .about-text, .quote-form-wrapper, .mission-box, .vision-box {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .quote-icon {
        font-size: 50px;
        margin-bottom: -15px;
    }
    
    .customer-logos {
        gap: 30px;
    }
    .customer-logos img {
        max-width: 90px;
    }

    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* =========================================
       NAVBAR HAMBURGER MENU (KHUSUS HP)
       ========================================= */
    .navbar {
        padding: 15px 20px;
    }
    
    .logo-tagline {
        display: none; /* Sembunyikan tagline agar logo tidak sesak */
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: #e52b36;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Muncul tepat di bawah navbar */
        left: -100%; /* Sembunyikan di luar layar sebelah kiri */
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding: 20px 0;
        z-index: 999;
    }
    
    /* Class ini akan ditambahkan oleh JS saat tombol diklik */
    .nav-links.active {
        left: 0; 
    }
    
    .nav-links > li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .btn-contact {
        margin: 15px auto;
        width: max-content;
    }
    
    /* Perbaikan Dropdown di HP */
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-top: none;
        background-color: #f9f9f9;
    }
}

/* Sembunyikan tombol Hamburger saat di Desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}