/* 1. IMPORT GOOGLE FONT (Harus di baris paling atas file style.css) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* 2. TERAPKAN KE SELURUH ELEMEN WEBSITE */
* {
    box-sizing: border-box;
}

body,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
h6,
textarea {
    font-family: 'Raleway', sans-serif;
}

/* ================================
   GLOBAL
================================ */

body {
    margin: 0;
    color: #111;
    background: #fff;
}

html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
}

/* ================================
   LOGO
================================ */

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: auto;
    text-decoration: none;
}

.logo img {
    display: block;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transform: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* ================================
   NAVBAR & RESPONSIVE MENU (DARK THEME)
================================ */

#navbar.scrolled {
    /* Tetap Hitam Solid saat di-scroll */
    background: #111111;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

#navbar.scrolled nav {
    height: 62px;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    /* Z-index sangat tinggi agar tidak tertimpa */

    /* Mengubah background menjadi Hitam Solid (Penuh) */
    background: #111111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: padding 0.3s ease, background-color 0.3s ease;
}

#navbar nav {
    height: 72px;
    max-width: 1080px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-sizing: border-box;
    transition: height 0.35s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;
    color: #ffffff;
    /* Teks Putih */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffad00;
    /* Tetap Aksentuasi Emas/Kuning */
}

/* Garis Bawah Kuning untuk Menu Aktif & Hover */
.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffad00;
    transition: width 0.3s ease;
}

/* State Menu Aktif (Halaman saat ini) */
.nav-menu a.active {
    color: #ffad00;
    font-weight: 600;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%;
}

/* Tombol Hamburger (Desktop Sembunyi) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    /* Garis Hamburger Jadi Putih */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animasi Transformasi Hamburger Menjadi Silang (X) */
.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* RESPONSIVE MOBILE (Layar < 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Menu Floating Card Estetik (Dark Mode) */
    .nav-menu {
        position: absolute;
        top: 80px;
        right: 20px;
        width: max-content;
        min-width: 200px;
        background: rgba(26, 26, 26, 0.98);
        /* Card Gelap */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* Border Tipis Putih/Transparan */
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

        /* Animasi Pop/Fade-in */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    /* State Aktif saat Hamburger Di-klik */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* Link Menu di Mobile */
    .nav-menu a {
        width: 100%;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 812px;
    height: 100vh;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 145px;
    background-color: #0d0d0d;
}

/* Background Image untuk efek Zoom In on Scroll */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("images/bg1.jpeg");
    background-size: cover;
    background-position: center bottom;
    z-index: 1;

    /* Gunakan variabel CSS --hero-scale, default dimulai dari 1 */
    transform: scale(var(--hero-scale, 1));
    will-change: transform;
    transition: transform 0.1s ease-out;
    /* Menjaga animasi pergerakan tetap halus */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(650px, 90%);
    text-align: center;
    color: #ffffff;
    margin-top: 5%;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(60px, 7.5vw, 110px);
    /* Ukuran disesuaikan agar pas 1 baris di layar desktop */
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    /* Mengunci teks agar tetap 1 baris di tengah & tidak terpotong */
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    /* Mencegah teks turun ke baris baru */
    overflow: visible;
    /* Agar sisi kiri/kanan huruf tidak terpotong */
    padding: 0 20px;
    /* Ruang napas aman di ujung kiri & kanan */
}


/* RESPONSIVE HERO TITLE UNTUK LAYAR KECIL */
@media (max-width: 768px) {
    .hero-title {
        text-align: center;
        width: 100%;
        display: block;
    }
    .hero-title .letter {
        display: inline-block;
            /* Agar animasi delay CSS tetap berfungsi dengan baik */
    }
    .hero-content h1 {
        font-size: clamp(41px, 10vw, 64px);
        /* Ukuran font disesuaikan agar proporsional di HP */
        white-space: normal;
        /* Izinkan teks turun ke bawah */
        flex-wrap: wrap;
        /* Karakter span fleksibel membungkus ke baris baru */
        letter-spacing: -1px;
        /* Mengurangi kerapatan antar huruf */
        line-height: 1.1;
        /* Jarak antar baris agar tidak bertumpuk */
    }
}

/* Class untuk huruf yang di-generate oleh JavaScript */
.hero-content h1 .letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(-30px) translateY(20px) rotate(-5deg);
    animation: letterIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Animasi Deskripsi (Fade In & Slide Up) */
.hero-desc {
    margin: 38px auto 0;
    max-width: 560px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* ================================
   HERO TAGLINE HIGHLIGHT
================================ */

.hero-tagline {
    margin: 20px auto 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    font-style: italic;

    /* Animasi Fade-In sejajar dengan urutan elemen hero */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-tagline span {
    display: inline-block;
    color: #ffad00;
    /* Warna aksen kuning Belution */
    padding: 6px 18px;
    background: rgba(255, 173, 0, 0.1);
    /* Background transparan halus */
    border: 1px solid rgba(255, 173, 0, 0.4);
    /* Border aksen tipis */
    border-radius: 30px;
    /* Bentuk pill/capsule estetik */
    text-shadow: 0 0 12px rgba(255, 173, 0, 0.3);
    /* Efek glow tipis */
    backdrop-filter: blur(4px);
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 16px;
        letter-spacing: 1px;
    }
}

/* Animasi & Hover Efek Tombol Contact Us */
.contact-button {
    position: relative;
    display: inline-block;
    margin-top: 20%;
    /* <--- NILAI INI YANG DIPERBESAR (sebelumnya 50px) */
    padding: 17px 39px;
    background: #ffad00;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease 1.1s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button span {
    position: relative;
    z-index: 2;
}

/* Efek Shimmer/Light Flash pada Tombol */
.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: #e69c00;
    transform: translateY(-3px);
    /* Ini efek naik saat dihover, biarkan saja */
    box-shadow: 0 10px 25px rgba(255, 173, 0, 0.4);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   FURNITURE SECTION & TRACK
================================ */

.furniture-header {
    display: flex;
    justify-content: space-between;
    /* Mendorong bagian kiri ke ujung kiri & kanan ke ujung kanan */
    align-items: flex-start;
    /* Meratakan bagian atas */
    gap: 40px;
    /* Jarak aman antar kolom */
    margin-bottom: 40px;
    /* Jarak ke section kartu di bawahnya */
}

/* Kolom Kiri */
.header-left {
    flex: 1;
    /* Mengambil porsi ruang fleksibel */
    max-width: 400px;
    /* Batas lebar judul */
}

.header-left .sub-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffad00;
    /* Warna aksen kuning Belution */
    margin-bottom: 8px;
}

.header-left h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: #111111;
    margin: 0;
}

/* Kolom Kanan */
.header-right {
    flex: 1.2;
    /* Porsi ruang deskripsi sedikit lebih lebar */
    max-width: 600px;
}

.header-right .yellow-line {
    width: 50px;
    height: 3px;
    background-color: #ffad00;
    margin-bottom: 16px;
}

.header-right p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* RESPONSIVE MOBILE (Otomatis Menumpuk di Layar Kecil) */
@media (max-width: 768px) {
    .furniture-header {
        flex-direction: column;
        /* Di layar HP berubah menumpuk ke bawah */
        gap: 20px;
    }

    .header-left,
    .header-right {
        max-width: 100%;
        padding: 0 20px;
    }

    .header-left h2,
    .header-right h2 {
        max-width: 100%;
    }
}

.furniture-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.furniture-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* ================================
   CAROUSEL CONTAINER & TRACK
================================ */
/* Container Utama Carousel */
.furniture-section {
    padding: 80px 0;
    /* Padding atas bawah saja */
    background-color: #ffffff;
    overflow: hidden;
    /* Potong gambar yang keluar dari layar HP/Monitor */
}

.furniture-grid {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 30px;
    position: relative;
    cursor: grab;
}

.furniture-grid.active {
    cursor: grabbing;
}

@keyframes furniture-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Track Berjalan Panjang Ke Kanan */
.furniture-track {
    display: flex !important;
    gap: 24px;
    width: max-content !important;
    /* Biarkan memanjang mengikuti jumlah kartu */
    will-change: transform;
    animation: furniture-scroll linear infinite;
    transform: translate3d(0, 0, 0);
}

/* Ukuran Kartu */
.furniture-card {
    flex: 0 0 320px !important;
    height: 380px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, opacity 0.6s ease, translate 0.6s ease;
    user-select: none;

    /* State awal sebelum muncul */
    opacity: 0;
    transform: translateY(40px);
}

.furniture-card.show {
    opacity: 1;
    transform: translateY(0);
}

.furniture-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.furniture-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.furniture-card:hover .hover-overlay {
    opacity: 1;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
    background: transparent;
    color: #ffffff;
    pointer-events: none;
    z-index: 3;
}

.card-overlay h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
/* ================================
   IMAGE WRAPPER & HOVER ANIMATION
================================ */

.furniture-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.furniture-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay Ikon Kaca Pembesar saat Hover */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.furniture-card:hover .furniture-img-wrapper img {
    transform: scale(1.08);
}

.furniture-card:hover .hover-overlay {
    opacity: 1;
}

/* Overlay Judul Teks Melayang Langsung di Atas Gambar */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    /* Gradasi hitam transparan halus hanya di area teks agar tulisan tetap terbaca */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    pointer-events: none;
    z-index: 3;
}

.card-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ================================
   MODAL LIGHTBOX FULLSCREEN
================================ */

.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 6px;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-modal.show .modal-content {
    transform: scale(1);
}

#modal-caption {
    margin-top: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #ffad00;
}

/* Responsif Layar Kecil / Mobile */
@media (max-width: 768px) {
    .furniture-header {
        flex-direction: column;
        gap: 20px;
    }

    .furniture-card {
        flex: 0 0 85%;
        /* Di HP, lebar kartu mengambil 85% layar agar kartu berikutnya sedikit terlihat */
    }

    .furniture-img-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
}

/* ================================
   REASONS SECTION (Dibalik: Kiri Gambar, Kanan Judul)
================================ */

.reasons-section {
    position: relative;
    padding: 100px 20px;

    /* Split: 70% Gambar di kiri, 30% Putih di kanan */
    background-image:
        linear-gradient(to left,
            transparent 0%,
            transparent 70%,
            #ffffff 70%,
            #ffffff 100%),
        url("images/bg1.jpeg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Gambar diam saat scroll */
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    /* Membalik urutan: Kartu di kiri, Judul di kanan */
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

/* Judul Kanan (Area Putih) */
.reasons-title {
    flex: 1;
    text-align: left;
}

.reasons-title .sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333333;
    text-transform: uppercase;
}

.reasons-title h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 10px;
    color: #111111;
}

/* Grid Kartu Kiri (Area Gambar) */
.reasons-grid {
    flex: 2.8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Kartu Putih */
/* State Awal Kartu */
.reason-card {
    background-color: #ffffff;
    border: 2px solid #ffad00;
    border-radius: 4px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    /* Animasi dibuat lebih panjang (1.2s) & posisi awal diperjauh sedikit (-80px) agar lebih halus */
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* State Aktif saat di-scroll */
.reason-card.show-left {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Effect tetap responsif */
.reason-card.show-left:hover {
    transform: translateY(-4px);
}

/* Jeda (Delay) Masuk yang Lebih Renggang & Sinematik */
.reason-card:nth-child(1) {
    transition-delay: 0.2s;
}

.reason-card:nth-child(2) {
    transition-delay: 0.45s;
}

.reason-card:nth-child(3) {
    transition-delay: 0.7s;
}

.reason-card:nth-child(4) {
    transition-delay: 0.95s;
}

.reason-card:hover {
    transform: translateY(-4px);
}

.reason-card .icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.reason-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.reason-card p {
    font-size: 12.5px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

/* Responsif HP/Tablet */
@media (max-width: 992px) {
    .reasons-section {
        background-image: none;
        /* Matikan efek split gambar di HP */
        background-color: #ffffff;
    }

    .reasons-container {
        flex-direction: column;
        align-items: stretch;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   PROCESS SECTION
================================ */

.process-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.process-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Header Section */
.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.yellow-line-center {
    width: 50px;
    height: 4px;
    background-color: #ffad00;
    margin: 0 auto 16px auto;
}

.process-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 14px 0;
}

.process-subtitle {
    font-size: 14.5px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout (4 Kolom Sejajar) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Base Card / Item Step */
.process-step {
    text-align: left;

    /* State Awal Animasi (Tersembunyi & Di Bawah) */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* State Aktif saat di-scroll */
.process-step.show-step {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi Muncul Bergiliran (Staggered Delay) */
.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.3s;
}

.process-step:nth-child(3) {
    transition-delay: 0.5s;
}

.process-step:nth-child(4) {
    transition-delay: 0.7s;
}

/* Tampilan Nomor (01, 02, dst) */
.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #ffad00;
    /* Warna aksen kuning */
    line-height: 1;
    margin-bottom: 12px;
}

/* Judul Langkah (Konsultasi, Penawaran, dst) */
.process-step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 16px 0;
}

/* Deskripsi Teks */
.process-step p {
    font-size: 13px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* Responsif Layar Tablet dan HP */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-header h2 {
        font-size: 32px;
    }
}

/* ================================
   CTA & STATS SECTION
================================ */

.cta-stats-section {
    position: relative;
    margin-top: 80px;
    /* Menambahkan space kosong di atas section */
    padding-bottom: 80px;
    background-color: #ffffff;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 100px 20px 140px;
    /* Padding bawah lebih besar agar tumpuk dengan stat box */
    text-align: center;
    color: #ffffff;
    background-image: url("images/bg1.jpeg");
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 18px;
}

.cta-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #dddddd;
    margin: 0 0 28px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffad00;
    /* Warna aksen kuning sesuai tema */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #e09800;
}

/* ================================
   FLOATING STATS BOX WITH EMOJI
================================ */

/* Wrapper Luar untuk Mengatur Posisi */
/* Wrapper Luar untuk Mengatur Posisi Melayang ke Atas Gambar */
.stats-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: -60px auto 0;
    /* -60px menarik kotak naik menutupi gambar di atasnya */
    padding: 0 20px;
    position: relative;
    z-index: 10;
    /* Memastikan kotak berada di lapisan paling atas */
}

/* Wadah Utama Kotak Putih Melayang */
.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 4px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #ffad00;
}

/* Setiap Kolom Statistik */
.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

/* Garis Pemisah Antar Kolom (Garis Tipis Seperti di Gambar) */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background-color: #e5e5e5;
}

/* Area Tempat Emoji */
.stat-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.stat-number svg {
    transition: all 0.4s ease;
    animation: svgFloat 3s ease-in-out infinite;
}

@keyframes svgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Label Teks di Bawah Emoji */
.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333333;
    margin: 0;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
        padding: 25px 15px;
    }

    /* Hilangkan garis pemisah bawaan di mobile */
    .stat-item:not(:last-child)::after {
        display: none;
    }

    /* Buat garis pemisah kustom khusus grid 2 kolom di HP */
    .stat-item:nth-child(1) {
        border-right: 1px solid #e5e5e5;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid #e5e5e5;
    }

    .stat-label {
        font-size: 11px;
    }
}
/* =========================================
   GALERI SECTION - BENTO GRID PORTRAIT (9:16)
   ========================================= */

.galeri-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeri-header {
    text-align: center;
    margin-bottom: 50px;
}

.galeri-subtitle {
    color: #ffad00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.galeri-title {
    font-size: 36px;
    color: #333;
    /* Ubah ke #fff jika website menggunakan tema gelap */
    margin: 10px 0;
}

.galeri-yellow-line {
    width: 60px;
    height: 3px;
    background-color: #ffad00;
    margin: 15px auto;
}

.galeri-desc {
    color: #666;
    /* Ubah ke #ccc jika website menggunakan tema gelap */
    max-width: 500px;
    margin: 0 auto;
}

/* --- Susunan Bento Grid Portrait --- */
.galeri-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 380px;
    /* Tinggi dasar untuk bentuk portrait */
    gap: 20px;
}

.galeri-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Penyesuaian Ukuran Kotak Portrait (9:16) --- */
.item-tall {
    grid-column: span 1;
    grid-row: span 2;
    /* Membuat kotak memanjang ke bawah (tinggi) */
}

.item-normal {
    grid-column: span 1;
    grid-row: span 1;
}

/* --- Styling Video & Animasi --- */
.galeri-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Memastikan video mengisi bingkai portrait dengan pas */
    transition: transform 0.6s ease;
    pointer-events: none;
}

.galeri-item:hover .galeri-video {
    transform: scale(1.08);
}

/* --- Overlay Teks --- */
.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeri-overlay h3 {
    margin: 0;
    font-size: 20px;
    color: #ffad00;
}

.galeri-overlay p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #ddd;
}


/* =========================================
   RESPONSIVITAS (TABLET & MOBILE)
   ========================================= */

@media (max-width: 992px) {
    .galeri-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }
}

@media (max-width: 576px) {
    .galeri-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
        /* Lebih tinggi di HP agar benar-benar terasa vertikal */
    }

    .item-tall {
        grid-row: span 1;
        /* Di HP dinormalkan jadi 1 baris penuh agar rapi */
    }

    .galeri-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    }
}
/* HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH HALAMAN TENTANG KAMI HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH */

/* ==========================================
   ABOUT PAGE STYLES (BELUTION STUDIO)
   ========================================== */

:root {
    --about-yellow: #ffad00;
    --about-dark: #1e1e1e;
    --about-gray: #666666;
    --about-bg-light: #f9f9f9;
    --about-white: #ffffff;
}

/* Container Utility */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-subtitle {
    color: var(--about-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.about-yellow-line {
    width: 50px;
    height: 3px;
    background-color: var(--about-yellow);
    margin-bottom: 20px;
}

/* ------------------------------------------
   SECTION 1: HERO
   ------------------------------------------ */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('images/panjang.jpg') center/cover no-repeat;
    background-attachment: fixed;
    /* Membuat gambar tetap diam/statis saat di-scroll */
    padding: 140px 20px 80px 20px;
    text-align: center;
    color: var(--about-white);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;

    /* Menerapkan animasi saat halaman dimuat */
    animation: aboutHeroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    /* Mulai dalam keadaan transparan */
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #dddddd;
    line-height: 1.6;
}

/* Definisi Keyframes untuk animasi muncul awal */
@keyframes aboutHeroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        /* Mulai dari posisi 30px di bawah */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* Berhenti di posisi normal */
    }
}
/* ------------------------------------------
   SECTION 2: STORY & VISION
   ------------------------------------------ */
.about-story-section {
    padding: 90px 0;
    background-color: var(--about-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story-img-wrapper {
    position: relative;
}

.about-story-img-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--about-yellow);
    color: var(--about-dark);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 110px;
}

.about-story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--about-dark);
}

.about-story-text p {
    color: var(--about-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ------------------------------------------
   SECTION 3: VALUES
   ------------------------------------------ */
.about-values-section {
    position: relative;
    /* Ganti URL di bawah dengan link/path gambar Anda */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/panjang.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Membuat gambar tetap (tidak ikut scroll) */
    padding: 80px 0;
    /* Sesuaikan padding atas & bawah sesuai kebutuhan */
    text-align: center;
}s

.about-section-header {
    
    margin-bottom: 50px;
}

.about-section-header h2 {
    font-size: 2.2rem;
    color: var(--about-dark);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-value-card {
    background-color: var(--about-white);
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: var(--about-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-value-icon {
    margin-bottom: 20px;
}

.about-value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--about-dark);
}

.about-value-card p {
    color: var(--about-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ------------------------------------------
   ANIMATIONS & RESPONSIVE
   ------------------------------------------ */
.about-reveal-up,
.about-reveal-left,
.about-reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.about-reveal-up {
    transform: translateY(40px);
}

.about-reveal-left {
    transform: translateX(-40px);
}

.about-reveal-right {
    transform: translateX(40px);
}

.about-reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }

    .about-values-grid,
    .about-workflow-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-counter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Section utama tetap hitam full */
.about-values-section {
  background-color: #0d0d0d;
  padding: 80px 0;
  margin-bottom: 5px;
}

/* Header section */
.about-values-section .about-subtitle {
  color: #ffad00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-values-section h2 {
  color: #ffffff;
}

/* Card dibuat terang (off-white) agar kontras */
.about-value-card {
  background-color: #f8f9fa; /* Warna latar card terang */
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek hover lembut */
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 173, 0, 0.25);
}

/* Teks di dalam card disesuaikan jadi gelap */
.about-value-card h3 {
  color: #1a1a1a;
  margin-top: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-value-card p {
  color: #4a5568; /* Abu-abu gelap agar mudah dibaca */
  line-height: 1.6;
}

/* Container icon dengan aksen kontras */
.about-value-icon {
  background-color: #fff3d6; /* Kuning soft transparan */
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH HALAMAN LAYANAN HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH */

/* ==========================================================================
   BELUTION STUDIO - LAYANAN CSS
   Aksen Warna Utama: Kuning (#ffad00 / #ffb700)
   Base Layout: Bright / Light Theme
   ========================================================================== */

/* --- GLOBAL LAYOUT FOR LAYANAN --- */
.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-subtitle {
    display: inline-block;
    color: #ffad00;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.service-subtitle-atas .h2{
    color: #1a1a1a;
}

.service-yellow-line {
    width: 60px;
    height: 4px;
    background-color: #ffad00;
    margin: 16px auto 0;
    border-radius: 2px;
}

.service-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-section-header h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-header-desc {
    color: #666;
    margin-top: 10px;
    font-size: 1rem;
}

/* --- SECTION 1: HERO LAYANAN --- */
.service-hero {
    position: relative;
    /* Ganti 'path/ke/gambar-anda.jpg' dengan link atau direktori gambar Anda */
    background-image: url('images/panjang2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Kunci agar background tetap (tidak ikut bergerak saat di-scroll) */
    min-height: 50vh;
    /* Sesuaikan tinggi section sesuai kebutuhan */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

/* Overlay untuk menggelapkan gambar background agar teks lebih kontras */
.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Atur tingkat kepekatan (0.5 = 50% gelap) */
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    /* Agar konten berada di atas overlay */
    max-width: 800px;
    color: #ffffff;
}

.service-hero-content .service-subtitle {
    display: inline-block;
    color: var(--service-yellow, #ffad00);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 50px;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.service-btn-primary {
    display: inline-block;
    background-color: var(--service-yellow, #ffad00);
    color: #111111;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-btn-primary:hover {
    background-color: #e09b00;
}
/* --- SECTION 2: GRID LAYANAN UNGGULAN --- */
.service-grid-section {
    padding: 90px 0;
    background-color: #ffffff;
}
.service-grid-section .service-container .service-section-header h2{
    color: #1a1a1a;
}

.service-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    border-color: #ffad00;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background-color: #fff9e6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.service-card-list li {
    font-size: 0.875rem;
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.service-card-list li::before {
    content: "•";
    color: #ffad00;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* --- SECTION 3: PAKET LAYANAN --- */
.service-packages-section {
    padding: 90px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/panjang2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Penyesuaian warna teks header agar kontras di atas background gelap */
.service-section-header .service-subtitle {
    color: #ffad00;
}

.service-section-header h2 {
    color: #ffffff;
}

.service-section-header .service-header-desc {
    color: #cccccc;
}

.service-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.service-package-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #e2e2e2;
    position: relative;
    transition: all 0.3s ease;
}

.service-package-box.service-highlight {
    border: 2px solid #ffad00;
    box-shadow: 0 15px 35px rgba(255, 173, 0, 0.15);
    transform: scale(1.03);
}

.service-package-tag,
.service-package-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: #ffad00;
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.service-package-title {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 10px;
}

.service-package-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    min-height: 54px;
}

.service-divider {
    border: none;
    border-top: 1px dashed #e0e0e0;
    margin: 20px 0;
}

.service-package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-package-features li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 12px;
}

.service-package-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-package-btn:hover {
    background: #111;
    color: #fff;
}

.service-package-btn.primary {
    background: #ffad00;
    border-color: #ffad00;
    color: #111;
}

.service-package-btn.primary:hover {
    background: #e69c00;
    border-color: #e69c00;
}
/* --- SECTION 4: MATERIAL ACCORDION --- */
.service-material-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.service-material-wrapper {
    width: 100%;
}

.service-material-text h2 {
    font-size: 2.25rem;
    color: #111;
    margin-bottom: 16px;
}

.service-material-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Container khusus yang menyjajarkan Accordion & Gambar */
.service-accordion-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
    /* Memaksa tinggi gambar = tinggi total accordion */
}

/* Accordion Styling */
.service-material-accordion {
    width: 100%;
}

.service-accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.service-accordion-item:first-child .service-accordion-btn {
    padding-top: 0;
    /* Menghapus padding atas item pertama agar rata sejajar garis atas gambar */
}

.service-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    text-align: left;
}

.service-icon-plus {
    font-size: 1.4rem;
    color: #ffad00;
    transition: transform 0.3s ease;
}

.service-accordion-item.active .service-icon-plus {
    transform: rotate(45deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-accordion-item.active .service-accordion-content {
    max-height: 120px;
    padding-bottom: 16px;
}

.service-accordion-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Image Container & Badge */
.service-material-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.service-material-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffad00;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-material-badge strong {
    font-size: 1.8rem;
    color: #111;
    line-height: 1;
}

.service-material-badge span {
    font-size: 0.8rem;
    color: #222;
    font-weight: 600;
}

/* --- RESPONSIVE MEDIA QUERIES (Layar < 768px) --- */
@media (max-width: 768px) {
    .service-accordion-container {
        display: flex;
        flex-direction: column-reverse;
        /* Membalik urutan agar gambar naik ke atas accordion */
        gap: 30px;
    }

    .service-material-image {
        height: 320px;
        /* Memberikan tinggi tetap untuk gambar di mode mobile */
        margin-bottom: 10px;
    }

    .service-material-image img {
        height: 100%;
        object-fit: cover;
    }

    /* Penyesuaian padding item pertama accordion saat di mobile */
    .service-accordion-item:first-child .service-accordion-btn {
        padding-top: 16px;
    }

    /* Penyesuaian posisi badge QC di tampilan mobile agar tidak terpotong */
    .service-material-badge {
        bottom: -15px;
        left: 15px;
        padding: 12px 18px;
    }

    .service-material-badge strong {
        font-size: 1.4rem;
    }

    .service-material-badge span {
        font-size: 0.75rem;
    }
}

/* --- SECTION 5: CTA BANNER --- */
.service-cta-section {
    padding: 60px 0 90px;
}

.service-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-cta-content p {
    color: #ccc;
    font-size: 1rem;
}

.service-btn-yellow {
    display: inline-block;
    white-space: nowrap;
    background-color: #ffad00;
    color: #111;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn-yellow:hover {
    background-color: #ffffff;
    color: #111;
    transform: translateY(-2px);
}

/* --- ANIMATION REVEAL CLASSES --- */
.service-reveal-up,
.service-reveal-left,
.service-reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-reveal-up {
    transform: translateY(40px);
}

.service-reveal-left {
    transform: translateX(-40px);
}

.service-reveal-right {
    transform: translateX(40px);
}

.service-reveal-up.active,
.service-reveal-left.active,
.service-reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .service-material-wrapper {
        grid-template-columns: 1fr;
    }

    .service-material-image {
        margin-top: 20px;
    }

    .service-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .service-package-box.service-highlight {
        transform: none;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.2rem;
    }

    .service-section-header h2 {
        font-size: 1.8rem;
    }
}

/* HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH HALAMAN KONTAK HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH */
/* ==========================================================================
   BELUTION STUDIO - KONTAK PAGE STYLES (Bright & Yellow Accent)
   ========================================================================== */

/* Global Section Containers */
.kontak-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.kontak-yellow-line {
    width: 50px;
    height: 4px;
    background-color: #ffad00;
    margin-bottom: 15px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   SECTION 1: HERO
   -------------------------------------------------------------------------- */
.kontak-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
            url('images/kontak.jpg') center/cover no-repeat;
        background-attachment: fixed;
        /* Membuat gambar tetap diam/statis saat di-scroll */
        padding: 140px 20px 80px 20px;
        text-align: center;
        color: var(--about-white);
}

.kontak-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.kontak-subtitle {
    display: inline-block;
    color: #ffad00;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kontak-hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.kontak-hero-desc {
    font-size: 1.1rem;
    color: #c7c7c7;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION 2: QUICK CONTACT CARDS
   -------------------------------------------------------------------------- */
.kontak-cards-section {
    padding: 50px 0 60px;
    background-color: #ffffff;
}

.kontak-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.kontak-card {
    background: #fafafa;
    border: 1.5px solid #ffad00;
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.kontak-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 173, 0, 0.4);
}

.kontak-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 173, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kontak-card h3 {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 10px;
}

.kontak-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.kontak-card-link {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #ffad00;
    transition: color 0.3s ease;
}

.kontak-card-link:hover {
    color: #ffad00;
}

.kontak-card-info {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
}

/* --------------------------------------------------------------------------
   SECTION 3: FORM & LOCATION
   -------------------------------------------------------------------------- */
.kontak-main-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.kontak-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

/* Form Styles */
.kontak-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.kontak-form-wrapper h2 {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 8px;
}

.kontak-form-desc {
    color: #666666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.kontak-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.kontak-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kontak-input-group {
    position: relative;
}

.kontak-input-group input,
.kontak-input-group select,
.kontak-input-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    border: 1px solid #dddddd;
    border-radius: 8px;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
    color: #111111;
    box-sizing: border-box;
}

.kontak-input-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #888888;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 0 4px;
}

.kontak-input-group input:focus,
.kontak-input-group select:focus,
.kontak-input-group textarea:focus {
    border-color: #ffad00;
    box-shadow: 0 0 0 3px rgba(255, 173, 0, 0.15);
}

/* Floating Label Effects */
.kontak-input-group input:focus~label,
.kontak-input-group input:not(:placeholder-shown)~label,
.kontak-input-group select:focus~label,
.kontak-input-group select:valid~label,
.kontak-input-group textarea:focus~label,
.kontak-input-group textarea:not(:placeholder-shown)~label {
    top: -9px;
    left: 12px;
    font-size: 0.8rem;
    color: #ffad00;
    font-weight: 600;
}

.kontak-submit-btn {
    background-color: #ffad00;
    color: #111111;
    border: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.kontak-submit-btn:hover {
    background-color: #e69d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 173, 0, 0.3);
}

/* Location Side Wrapper */
.kontak-info-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #eeeeee;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.kontak-info-card h3 {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 12px;
}

.kontak-info-card>p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.kontak-location-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.kontak-loc-icon {
    margin-top: 3px;
}

.kontak-location-item h4 {
    font-size: 1rem;
    color: #111111;
    margin-bottom: 4px;
}

.kontak-location-item p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.kontak-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
    border: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
    .kontak-main-section {
        padding: 40px 15px;
        /* Mengurangi padding di layar kecil */
    }

    .kontak-main-grid {
        grid-template-columns: 1fr;
        /* Menumpuk form dan info studio menjadi 1 kolom */
        gap: 30px;
    }

    .kontak-input-row {
        grid-template-columns: 1fr;
        /* Menumpuk input email dan WA menjadi atas-bawah */
        gap: 0;
    }

    /* Opsi: Membalik urutan agar Info/Peta muncul lebih dulu di atas form (Hapus jika ingin form tetap di atas) */
    /* 
    .kontak-form-wrapper { order: 2; }
    .kontak-info-wrapper { order: 1; } 
    */
}
/* --------------------------------------------------------------------------
   SECTION 4: FAQ ACCORDION
   -------------------------------------------------------------------------- */
.kontak-faq-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
            url('images/kontak.jpg') center/cover no-repeat;
        background-attachment: fixed;
        /* Membuat gambar tetap diam/statis saat di-scroll */
        padding: 100px 20px 80px 20px;
        text-align: center;
        color: var(--about-white);
}

.kontak-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.kontak-section-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
}

.kontak-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontak-faq-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.kontak-faq-item.active {
    border-color: #ffad00;
}

.kontak-faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.kontak-faq-icon {
    font-size: 1.4rem;
    color: #ffad00;
    transition: transform 0.3s ease;
}

.kontak-faq-item.active .kontak-faq-icon {
    transform: rotate(45deg);
}

.kontak-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    background-color: #ffffff;
}

.kontak-faq-item.active .kontak-faq-answer {
    padding: 0 25px 20px 25px;
}

.kontak-faq-answer p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION 5: CTA BANNER
   -------------------------------------------------------------------------- */
.kontak-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.kontak-cta-inner {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kontak-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 173, 0, 0.15);
    border-radius: 50%;
    filter: blur(50px);
}

.kontak-cta-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.kontak-cta-inner p {
    font-size: 1.05rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.kontak-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffad00;
    color: #111111;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.kontak-cta-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 173, 0, 0.4);
}

/* --------------------------------------------------------------------------
   ANIMATIONS & REVEAL CLASSES
   -------------------------------------------------------------------------- */
.kontak-reveal-up,
.kontak-reveal-left,
.kontak-reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.kontak-reveal-up {
    transform: translateY(40px);
}

.kontak-reveal-left {
    transform: translateX(-40px);
}

.kontak-reveal-right {
    transform: translateX(40px);
}

.kontak-reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .kontak-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kontak-hero-title {
        font-size: 2rem;
    }

    .kontak-input-row {
        grid-template-columns: 1fr;
    }

    .kontak-form-wrapper {
        padding: 25px;
    }

    .kontak-cta-inner {
        padding: 40px 20px;
    }

    .kontak-cta-inner h2 {
        font-size: 1.7rem;
    }
}

/* --- Styling Popup Hitam & Gold --- */
.popup-overlay {
    display: none;
    /* Disembunyikan secara default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Latar belakang gelap transparan */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Class tambahan saat popup dipanggil */
.popup-overlay.muncul {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: #111111;
    /* Hitam pekat elegan */
    border: 1px solid #d4af37;
    /* Garis tepi warna Gold */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    /* Bayangan emas tipis */
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.popup-overlay.muncul .popup-content {
    transform: translateY(0) scale(1);
}

.popup-icon svg {
    width: 60px;
    height: 60px;
    stroke: #D4AF37;
    /* Warna ikon Gold */
    margin-bottom: 15px;
}

.popup-title {
    color: #D4AF37;
    /* Teks Gold */
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.popup-desc {
    color: #CCCCCC;
    /* Abu-abu terang agar kontras dengan hitam */
    font-size: 14px;
    margin: 0 0 25px 0;
}

.popup-btn {
    background-color: #D4AF37;
    /* Tombol Gold */
    color: #111111;
    /* Teks Hitam di dalam tombol */
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background-color: #F3C623;
    /* Emas yang lebih terang saat di-hover */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH Footer HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH */

/* Styling Utama Footer */
.site-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 35px 20px;
    border-top: 1px solid #1a1a1a;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Kolom Kiri */
.footer-left {
    max-width: 550px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 0 0;
}

.footer-logo span {
    color: #d4af37;
    /* Aksen Gold */
}

.footer-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Daftar Kontak */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-contact-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #d4af37;
}

.contact-icon {
    width: 20px;
    height: 20px;
    stroke: #d4af37;
    /* Warna Ikon Gold */
    flex-shrink: 0;
    margin-top: 2px;
}

/* Kolom Kanan & Tombol Instagram Modern */
.footer-right {
    display: flex;
    align-items: center;
}

.btn-instagram {
    position: relative;
    /* Diperlukan untuk efek elemen kilatan */
    overflow: hidden;
    /* Menjaga kilatan tidak keluar dari batas border-radius */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

/* Elemen Efek Kaca Mengkilap (Shine) */
.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            /* Kilatan putih terang transparan */
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease-in-out;
    z-index: 1;
    /* Di atas background tombol */
}

.btn-instagram svg {
    stroke: #e09800;
    transition: stroke 0.3s ease;
    position: relative;
    z-index: 2;
    /* Agar teks & ikon tetap di atas efek mengkilap */
}

.btn-instagram span {
    position: relative;
    z-index: 2;
}

/* Efek Hover (Perubahan Warna + Kilatan Kaca) */
.btn-instagram:hover {
    background-color: #e09800;
    /* Perubahan warna background */
    color: #0d0d0d;
    /* Perubahan warna teks */
    border-color: #e09800;
    box-shadow: 0 6px 20px rgba(224, 152, 0, 0.4);
    transform: translateY(-2px);
}

/* Mengubah warna stroke ikon saat hover */
.btn-instagram:hover svg {
    stroke: #0d0d0d;
}

/* Menjalankan Kilatan Kaca dari Kiri ke Kanan */
.btn-instagram:hover::before {
    left: 150%;
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        width: 100%;
        margin-top: 10px;
    }

    .btn-instagram {
        width: 100%;
        justify-content: center;
    }
}