/* =========================================
   1. CSS VARIABLES (Tema Website)
   ========================================= */
:root {
   /* --- PALET WARNA --- */
   --gold-primary: #FFD700;
   /* Emas Terang (Default) */
   --gold-dark: #f1b500;
   /* Emas Gelap (Hover/Button) */
   --gold-accent: #ffcc00;
   /* Emas Aksen (Garis Judul) */

   /* --bg-main: #0A0A0A;
   Hitam Pekat (Background Utama) */
   --bg-secondary: #121211;
   /* Hitam Panel (Navbar/Footer) */
   --bg-card: #1a1a1a;
   /* Hitam Kartu Berita */
   --bg-overlay: rgba(0, 0, 0, 0.6);

   --text-white: #ffffff;
   --text-grey: #cccccc;
   --text-muted: #888888;

   /* --- FONT --- */
   --font-heading: 'Montserrat', sans-serif;
   --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
   scroll-behavior: smooth;
}
/* --- FIX SCROLL OFFSET (NAVBAR CLIPPING) --- */
.section-service {
    /* Memberikan jarak cadangan di atas elemen saat di-scroll melalui ID */
    scroll-margin-top: 100px !important; 
}

/* Jika kamu menggunakan ID spesifik di dalam section tersebut */
#Background, #Doushi, #three-D, #Compositing, #3D {
    scroll-margin-top: 100px !important;
}
/* =========================================
   2. GLOBAL STYLES
   ========================================= */
/* html,
body {
   height: 100%;
   margin: 0;
   overflow-x: hidden;
   display: flex;
   scroll-behavior: smooth;
   flex-direction: column;
   font-family: var(--font-heading);
   background-color: var(--bg-main);
   color: var(--text-white);
   scroll-behavior: smooth;
} */

html {
    scroll-behavior: smooth;
    /* Jangan beri height 100% di sini */
}

body {
   min-height: 100vh; /* Gunakan min-height agar body bisa memanjang sesuai konten */
   margin: 0;
   overflow-x: hidden;
   display: flex;
   flex-direction: column;
   font-family: var(--font-heading);
   background-color: var(--bg-main);
   color: var(--text-white);
}

main {
   flex: 1;
}

/* .top {
   --offset: 50px;

   position: sticky;
   bottom: 20px;
   margin-right: 10px;
   place-self: end;
   margin-top: calc(100vh + var(--offset));

   text-decoration: none;
   padding: 10px;
   font-family: sans-serif;
   color: #fff;
   background: #000;
   border-radius: 100px;
   white-space: nowrap;
} */

a {
   text-decoration: none !important;
   color: inherit;
   transition: 0.3s;
}

.page-tittle {
   margin-top: 100px;
   margin-bottom: 40px;
   font-size: 28px;
   text-align: center;
}

.Work-Title2 {
   margin-bottom: 40px;
   font-size: 28px;
   text-align: center;
}

.page-tittle, .service-title-page, .AU-tittle-page {
    text-align: center;
    overflow: hidden; /* Mencegah garis merusak layout jika terlalu panjang */
    display: block;
    width: 100%;
}

.page-tittle span, .service-title-page span, .AU-tittle-page span {
    position: relative;
    display: inline-block;
    padding: 0 20px; /* Jarak antara teks dan garis */
    text-transform: uppercase;
    font-weight: 800;
}

/* Garis Kuning (Kiri dan Kanan) */
.page-tittle span::before,
.page-tittle span::after {
    content: "";
    position: absolute;
    top: 50%; /* Posisi di tengah tinggi teks */
    width: 100px; /* Panjang garis */
    height: 4px; /* Ketebalan garis */
    background-color: var(--gold-primary); /* Menggunakan variabel emasmu */
    transform: translateY(-50%);
}

/* Posisi Garis Kiri */
.page-tittle span::before {
    right: 100%; /* Mulai dari batas kiri teks ke arah luar */
}

/* Posisi Garis Kanan */
.page-tittle span::after {
    left: 100%; /* Mulai dari batas kanan teks ke arah luar */
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background-color: var(--bg-secondary);
   color: var(--text-white);
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 10px 20px;
}

.navbar-logo img {
   height: 50px;
   width: auto;
   object-fit: contain;
}

.navbar-menu {
   display: flex;
   align-items: center;
   gap: 25px;
}

.navbar-menu a {
   color: var(--gold-primary);
   text-decoration: none;
   font-weight: 600;
   font-size: 16px;
   transition: color 0.3s;
}

.navbar-menu a:hover {
   color: var(--text-white);
}

.menu-toggle {
   display: none;
   font-size: 28px;
   background: none;
   color: var(--gold-primary);
   border: none;
   cursor: pointer;
}

/* Menu yang sedang aktif */
.navbar-menu a.active {
   color: var(--gold-primary) !important;
   border-bottom: 2px solid var(--gold-primary);
   /* Opsional: garis bawah */
   padding-bottom: 5px;
}

/* =========================================
   LANGUAGE SWITCHER (Header)
   ========================================= */

/* Wadah Dropdown */
.lang-dropdown {
   position: relative;
   display: inline-block;
   margin-left: 15px;
   /* Jarak dari menu Contact */
}

/* Tombol Utama (EN/ID/JP) */
.lang-btn {
   background-color: transparent;
   color: var(--gold-primary);
   /* Warna Emas */
   border: 1px solid var(--gold-primary);
   padding: 5px 12px;
   font-size: 14px;
   font-weight: bold;
   cursor: pointer;
   border-radius: 20px;
   /* Membulat */
   display: flex;
   align-items: center;
   gap: 8px;
   transition: 0.3s;
}

.lang-btn:hover {
   background-color: var(--gold-primary);
   color: #000;
}

/* Isi Dropdown (Sembunyi dulu) */
.lang-content {
   display: none;
   position: absolute;
   right: 0;
   top: 100%;
   /* Muncul di bawah tombol */
   background-color: #222;
   min-width: 140px;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
   border-radius: 8px;
   overflow: hidden;
   z-index: 999;
   border: 1px solid #444;
   margin-top: 10px;
}

/* Link Bahasa di dalam Dropdown */
.lang-content a {
   color: #fff !important;
   padding: 10px 15px;
   text-decoration: none;
   display: flex;
   /* Biar bendera & teks sejajar */
   align-items: center;
   gap: 10px;
   font-size: 13px;
   transition: background 0.2s;
}

.lang-content a img {
   width: 20px;
   height: auto;
   border-radius: 2px;
}

.lang-content a:hover {
   background-color: var(--gold-primary);
   color: #000 !important;
}

/* Tampilkan Dropdown saat Hover */
.lang-dropdown:hover .lang-content {
   display: block;
   animation: fadeIn 0.3s ease;
}

/* Animasi Muncul Halus */
@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* =========================================
   FIX DROPDOWN HILANG SAAT DI-HOVER
   ========================================= */
.lang-dropdown::after {
   content: "";
   position: absolute;

   /* Mulai dari bagian paling bawah tombol */
   top: 100%;
   left: 0;

   /* Lebar penuh & Tinggi cukup untuk menutupi jarak ke menu */
   width: 100%;
   height: 30px;
   /* Area aman 30px ke bawah */

   background: transparent;
   /* Tidak terlihat */
   display: block;
   z-index: 100;
   /* Pastikan di atas elemen lain */
}
/* --- SETTING DESKTOP (2 GRID MENYAMPING) --- */
.works-grid-wrapper {
    display: grid !important;
    /* Mengunci lebar kolom sebesar 300px per kolom */
    grid-template-columns: repeat(4, 300px) !important; 
    gap: 25px !important; /* Jarak antar gambar agar tidak terlalu rapat */
    width: fit-content !important; /* Container mengikuti total lebar 4 gambar */
    max-width: 100% !important;
    margin: 0 auto !important; /* Kunci posisi grid di tengah layar */
    padding: 50px 20px !important;
    justify-content: center !important; /* Memastikan grid berada di tengah */
}

/* Penyesuaian Item agar tidak terlalu lebar */
.works-item {
    width: 300px !important; /* Mengunci lebar kartu 300px */
    text-align: center !important;
}

.works-item img.Backlit {
    width: 300px !important; 
    height: 425px !important; 
    /* KUNCI: Ubah cover menjadi contain agar gambar utuh */
    object-fit: contain !important; 
    
    /* Background hitam agar area kosong di kiri/kanan/atas/bawah tidak bolong */
    background-color: #000 !important; 
    
    border-radius: 12px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid #222; /* Garis tipis agar bingkai tetap terlihat */
}

/* Efek Hover */
.works-item img.Backlit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

/* Judul di bawah gambar */
.works-item p {
    margin-top: 15px !important;
    font-size: 16px !important; /* Teks tetap 16px */
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pastikan margin menu tidak terlalu jauh dari jembatan */
.lang-content {
   margin-top: 10px;
   /* Jarak visual */
   /* Pastikan top: 100% sudah ada di kode sebelumnya */
}

/* =========================================
   FOOTER SECTION (GLOBAL & DESKTOP)
   ========================================= */
.footer-section {
    background-color: var(--bg-secondary); /* Menggunakan hitam panel */
    padding: 60px 0 20px;
    color: var(--text-white);
    border-top: 3px solid var(--gold-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

/* Brand Column */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-desc {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.follow-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-5px);
}

/* Heading Footer */
.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
}

/* Contact & Address */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-grey);
    font-size: 14px;
}

.contact-item i {
    color: var(--gold-primary);
    width: 20px;
}

.address-col p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.6;
}

/* Bottom Footer */
.footer-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding: 0 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 5px 0;
}

/* --- BACK TO TOP BUTTON --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* KUNCI: Pastikan background utama transparan */
    background: transparent !important; 
    border: none !important;
    outline: none !important; /* Menghilangkan garis biru/gold saat diklik */
    cursor: pointer;
    display: none; 
    z-index: 1000;
    padding: 0 !important; /* Menghilangkan ruang tambahan di dalam button */
    transition: all 0.3s ease;
}

.btt-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: transparent !important;
}

.arrow {
    width: 50px;
    height: 50px;
    background-color: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.btt-text {
    color: var(--gold-primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

#backToTop .arrow {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Hover Effect */
#backToTop:hover {
    background: transparent !important; /* Pastikan tidak muncul kotak saat hover */
}

#backToTop:hover .arrow {
    background-color: var(--text-white); /* Hanya lingkaran yang berubah warna */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

#backToTop:hover .btt-text {
    color: var(--text-white);
}

/* Responsive Navbar */
@media (max-width: 768px) {
   .lang-dropdown {
      margin-left: 0;
      margin-top: 15px;
      width: 100%;
      text-align: center;
   }

   .lang-btn {
      margin: 0 auto;
      /* Tengah di HP */
      width: 120px;
      justify-content: center;
   }

   .lang-content {
      left: 50%;
      transform: translateX(-50%);
      /* Tengah dropdown di HP */
   }

   .about-us {
      /* Tarik elemen ke luar sejauh 15px untuk melawan padding main */
      margin-left: -15px !important;
      margin-right: -15px !important;

      /* Lebarkan elemen agar pas menutup celah yang ditarik */
      width: calc(100% + 30px) !important;

      /* Pastikan tidak ada overflow scroll horizontal */
      box-sizing: border-box;
   }

   /* Pastikan konten di dalamnya tidak ikut mepet layar */
   .about-title {
      padding: 0 15px;
      /* Kembalikan jarak aman untuk judul */
   }

   /* 1. CONTAINER UTAMA: Susun ke Bawah */
   .Contact-container {
      display: flex !important;
      flex-direction: column !important;
      /* Kunci: Stack Vertikal */
      align-items: center !important;
      /* Rata tengah horizontal */
      justify-content: center !important;
      gap: 40px !important;
      /* Jarak antar kolom */
      padding: 0 20px !important;
      text-align: center !important;
      /* Teks rata tengah */
   }

   /* 2. KOLOM INDIVIDUAL */
   .contact-column {
      width: 100% !important;
      min-width: auto !important;
      flex: none !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      /* Pastikan gambar/icon di tengah */
   }

   /* 3. LOGO (Kolom 1) */
   .logo-contact {
      width: 180px !important;
      /* Ukuran logo pas di HP */
      margin: 0 auto !important;
      display: block;
   }

   /* 4. JUDUL SEKSI (CONTACT & OUR STUDIO) */
   .contact-column h6 {
      font-size: 18px !important;
      margin-bottom: 20px !important;
      display: inline-block !important;
      /* Agar garis bawah pas dengan teks */
      border-bottom: 2px solid var(--gold-primary) !important;
      padding-bottom: 5px !important;
   }

   /* 5. INFO KONTAK (Email, Telp, Sosmed) */
   .contact-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
   }

	/* 1. Atur container utama agar menjadi 2 kolom */
    .works-grid-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Membuat 2 kolom sejajar */
        gap: 15px !important; /* Memberikan jarak antar kotak */
        padding: 10px !important;
        width: 100% !important;
    }

    /* 2. Pastikan item pekerjaan (works-item) rapi */
    .works-item {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 3. Atur ukuran gambar poster agar pas di dalam grid */
    .works-item img.Backlit {
        width: 100% !important;
        height: 220px !important; /* Sesuaikan tinggi poster agar seragam */
        object-fit: cover !important;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* 4. Sesuaikan teks judul di bawah gambar */
    .works-item p {
        font-size: 13px !important;
        margin-top: 10px !important;
        line-height: 1.4;
        color: var(--text-white); /* Menggunakan variabel warna teks putih */
    }

    /* 5. Rapikan tombol 'See More' agar tidak terlalu besar */
    .tombol-seemore {
        margin-top: 20px !important;
    }
    
    .see-more {
        padding: 10px 25px !important;
        font-size: 14px !important;
    }

   .contact-info p {
      justify-content: center !important;
      /* Icon dan teks rata tengah */
      font-size: 14px !important;
      margin-bottom: 15px !important;
      width: 100%;
   }

   /* 6. ALAMAT (Our Studio) */
   .address {
      font-size: 13px !important;
      line-height: 1.6 !important;
      text-align: center !important;
      max-width: 300px;
      /* Batasi lebar agar tidak terlalu melebar */
   }

   /* 7. COPYRIGHT */
   .legal {
      margin-top: 30px !important;
      padding: 20px 10px !important;
      font-size: 11px !important;
   }

   /* Perbaikan Icon Sosmed di HP */
   .social-media-icons {
      margin-top: 10px !important;
      display: flex;
      gap: 15px;
      justify-content: center;
   }

   .logo-ig-yt {
      width: 35px !important;
      /* Sedikit lebih besar biar mudah ditap */
   }

   .navbar-menu {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      display: none;
      /* JS akan toggle class .active */
      background-color: var(--bg-secondary);
      padding: 15px 20px;
      position: absolute;
      top: 100%;
      left: 0;
   }

   .navbar-menu.active {
      display: flex;
   }

   .menu-toggle {
      display: block;
   }
}

/* =========================================
   4. HERO SECTION (Homepage)
   ========================================= */
.container {
   background-image: url('../img/bg-amie-studio.webp');
   background-size: cover;
   background-position: center;
   height: 750px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--text-white);
   margin-top: 0;
}

.box {
   flex: 1;
   margin: 5px;
   padding: 20px;
   text-align: center;
}

.box img {
   display: block;
   width: 50%;
   max-width: 500px;
   padding-left: 40px;
}

.slogan_Amienation {
   font-weight: bold;
   width: 80%;
   max-width: 550px;
   text-align: left;
   color: #777;
   font-size: 18px;
   letter-spacing: 2px;
   padding-left: 60px;
}

.imagination {
   color: var(--text-white);
}

.amienation {
   color: var(--gold-dark);
}

/* =========================================
   5. ABOUT US


   ========================================= */
.about-us {
   background: #0F0F0F;
   margin-top: 70px;
   color: #fff;
}

.bg-gradation {
   padding-top: 51px;
   background: linear-gradient(to bottom, #555, #0F0F0F);
}

.about-title {
   text-align: center;
   font-size: 48px;
   font-weight: 800;
   margin-bottom: 80px;
}

.about-wrapper {
   display: flex;
   grid-template-columns: 1fr 2fr 1fr;
   align-items: center;
   gap: 40px;
   position: relative;
}

/* ... */

.text-frame {
   background: #262424;
   position: relative;
   padding: 32px 36px;
   max-width: 680px;
   color: #fff;
}

/* GARIS SUDUT */
.text-frame::before,
.text-frame::after {
   content: "";
   position: absolute;
   width: 50px;
   height: 50px;
   border-color: #c4ad00ff;
}

/* KIRI ATAS */
.text-frame::before {
   top: 0;
   left: 0;
   border-top: 3px solid #c4ad00ff;
   border-left: 3px solid #c4ad00ff;
}

/* KANAN BAWAH */
.text-frame::after {
   bottom: 0;
   right: 0;
   border-bottom: 3px solid #c4ad00ff;
   border-right: 3px solid #c4ad00ff;
}

/* TEKS */
.text-frame p {
   margin: 0;
   font-size: 18px;
   line-height: 1.9;
}

/* PERSON */
.about-person {
   margin-top: -285px;
   text-align: center;
}

.about-person img {
   width: 147px;
   object-fit: cover;
}

.person-label {
   margin-top: 16px;
   background: #f1c40f;
   color: #000;
   padding: 11px 11px;
   margin-top: -9px;
   display: inline-block;
   font-weight: 700;
}

.person-label .name {
   display: block;
   font-size: 14px;
}

.person-label .role {
   display: block;
   font-size: 11px;
   font-weight: 600;
}

/* TEXT */
.about-mascot {
   width: 87%;
   display: flex;
   align-items: center;
   margin: 40px 9px 50px 177px;
}

.about-content p {
   padding: 0% 6% 0%;
   /* width: 104%; */
   margin-bottom: 7px;
}

/* MASCOT */

.text-frame-maskot {
   margin-left: 5px;
   background: #262424;
   position: relative;
   padding: 28px 34px;
   max-width: 820px;
   color: #fff;
   margin-right: 77px;
}

/* GARIS SUDUT */
.text-frame-maskot::before,
.text-frame-maskot::after {
   content: "";
   position: absolute;
   width: 42px;
   height: 42px;
   border-color: #c4ad00ff;
}

/* KIRI ATAS */
.text-frame-maskot::before {
   top: 0;
   left: 0;
   border-top: 3px solid #c4ad00ff;
   border-left: 3px solid #c4ad00ff;
}

/* KANAN BAWAH */
.text-frame-maskot::after {
   bottom: 0;
   right: 0;
   border-bottom: 3px solid #c4ad00ff;
   border-right: 3px solid #c4ad00ff;
}

/* TEKS */
.text-frame-maskot p {
   margin: 0;
   font-size: 17px;
   line-height: 1.9;
}

/* ... */
.about-mascot {
   width: 87%;
   display: flex;
   align-items: center;
}

.about-mascot p {
   width: 102%;
   font-size: 18px;
   line-height: 1.9;
}

.about-mascot img {
   width: 200px;
   height: auto;
   /* margin-right: 146px; */
}

/* RESPONSIVE */
@media (max-width: 992px) {

   /* 1. Atur Wrapper jadi Kolom (Atas-Bawah) */
   .about-wrapper {
      display: flex;
      flex-direction: column;
      /* Susun ke bawah */
      align-items: center;
      gap: 30px;
      padding: 0 20px;
      /* Beri jarak pinggir */
   }

   /* 2. Urutan Tampilan di HP: 
       Kita mau urutannya: Foto CEO -> Teks Tengah -> Foto Komisaris
       Karena di HTML urutannya: CEO -> Teks -> Komisaris, maka defaultnya sudah benar.
       Tapi kita perlu reset lebar kotak teks.
    */
   .text-frame {
      max-width: 100%;
      /* Penuhi lebar layar */
      margin: 20px 0;
      padding: 25px;
      /* Kurangi padding biar muat */
   }

   /* Reset posisi orang (Foto) */
   .about-person {
      margin-top: 0;
      /* Hapus margin minus aneh */
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
   }

   .about-person img {
      width: 180px;
      /* Perbesar sedikit foto di HP biar jelas */
      height: auto;
   }

   /* 3. Perbaikan Bagian Maskot */
   .about-mascot {
      flex-direction: column-reverse;
      /* Balik: Maskot di atas/bawah teks sesuai selera */
      /* Kita pakai column-reverse biar Maskot di Bawah teks, atau column biasa */
      flex-direction: column;
      margin: 40px 0 0 0 !important;
      /* Hapus margin aneh 177px */
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
   }

   .text-frame-maskot {
      margin-right: 0;
      /* Reset margin kanan */
      margin-left: 0;
      max-width: 100%;
      margin-bottom: 30px;
      /* Jarak ke maskot */
      padding: 25px;
   }

   .maskot {
      width: 150px !important;
      /* Ukuran maskot di HP */
      margin: 0 auto;
      display: block;
      transform: none;
      /* Hilangkan efek aneh */
   }

   /* 4. Penyesuaian Hiasan Sudut Emas (Corner Borders) */
   /* Kecilkan ukurannya di HP agar tidak menabrak teks */
   .text-frame::before,
   .text-frame::after,
   .text-frame-maskot::before,
   .text-frame-maskot::after {
      width: 25px;
      height: 25px;
      border-width: 2px;
      /* Tipiskan sedikit */
   }

   /* Perbaikan Font Size di HP */
   .text-frame p,
   .text-frame-maskot p {
      font-size: 14px;
      /* Kecilkan huruf agar muat */
      line-height: 1.6;
      text-align: justify;
      /* Rata kiri-kanan biar rapi */
   }

   .about-title {
      font-size: 32px;
      /* Judul jangan terlalu besar */
      margin-top: 20px;
      margin-bottom: 40px;
   }

   .about-wrapper {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .about-mascot {
      position: static;
      margin-top: 40px;
   }
}

/* ================= CONTENT ================= */

.about-content h1 {
   text-align: center;
   margin-bottom: 50px;
   font-size: 32px;
}

.about-wrapper {
   max-width: 1200px;
   margin: auto;
   display: flex;
   align-items: center;
   gap: 50px;
}

/* ... */
.About-Us {
   margin-bottom: 80px;
   width: 100%;
   margin-top: 25px;

}

.AU-tittle {
   width: 80%;
   margin-left: 10%;
}

.About_Amienation {
   font-family: var(--font-body);
   font-size: 19px;
   text-align: left;
   color: var(--text-white);
   max-width: 90%;
   margin-left: 7%;
   margin-right: 7%;
   line-height: 1.7;
   position: relative;
   margin-bottom: 50px;
}




/* =========================================
   6. WORKS SECTION
   ========================================= */
.Work-Title,
.services-page-tittle {
   text-align: center;
   color: var(--text-white);
   font-size: 40px;
   font-weight: bold;
   margin-top: 45px;
   margin-bottom: -35px;
}

.works_gallery,
.gallery,
.gallery-page,
.gallery2-page {
   display: flex;
   gap: 30px;
   justify-content: center;
   flex-wrap: wrap;
   padding: 20px;
}

.works1-bio-page {
   width: 100%;
   font-size: 18px;
}

.item,
.item-page {
   text-align: center;
   width: 250px;
   /* Ukuran seragam */
   color: var(--text-white);
}

.item img,
.item-page img {
   width: 100%;
   height: auto;
   border-radius: 10px;
   transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect pada Gambar Works */
.Backlit:hover,
.Backlit-page:hover {
   transform: scale(1.05);
   box-shadow: 0 0 25px 5px rgba(249, 182, 23, 0.5);
}

.tombol-seemore {
   text-align: center;
   margin-top: 0px;
}

.see-more {
   background-color: var(--gold-dark);
   color: #000;
   padding: 12px 30px;
   border-radius: 8px;
   font-size: 16px;
   font-weight: bold;
}

.see-more:hover {
   background-color: var(--gold-primary);
   box-shadow: 0 0 10px var(--text-white);
}




/* =========================================
   7. SERVICES SECTION
   ========================================= */


#Background,
#Doushi,
#three-D,
#Compositing {
   scroll-margin-top: 120px;

}

.service-section-page {
   background-color: var(--bg-main);
   padding: 0px 0;
   margin-top: 100px;
   text-align: center;
}

.service-title-page span {
   font-size: 36px;
   font-weight: bold;
   color: var(--text-white);
   position: relative;
   display: inline-block;
   padding: 0 20px;
}

/* Garis di samping judul */
.service-title-page span::before,
.service-title-page span::after {
   content: "";
   position: absolute;
   top: 50%;
   width: 100px;
   height: 4px;
   background-color: var(--gold-accent);
}

.service-title-page span::before {
   right: 100%;
}

.service-title-page span::after {
   left: 100%;
}

/* ... */
.services-section {
   background-color: var(--bg-main);
   padding: 60px 50px;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
}

.service-card {
   border-radius: 20px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   transition: transform 0.3s ease;


}

.service-card:hover {
   transform: translateY(-10px);
}

.card-image {
   height: 184px;
   width: 100%;
}

.card-image img {
   width: 100%;
   height: 150%;
   object-fit: cover;
}

.card-content {
   background: #f1b500;
   padding: 0px 3px;
   color: #000;
   text-align: center;
   flex-grow: 1;
}

.card-content h3 {
   text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
   color: white;
   font-size: 21px;
   font-weight: 800;
   margin-bottom: 26px;
   font-family: "Noto Sans", sans-serif;
   margin-top: 21px;
}

/* Style Khusus Halaman Services (Landscape Card) */
.card-page {
   width: 80%;
   margin: 35px auto;
   background: #c99300;
   border-radius: 30px;
   display: flex;
   overflow: hidden;
   min-height: 260px;
   color: #000;
}

.card-text-page {
   width: 70%;
   padding: 35px 40px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.card-img-page {
   width: 30%;
   object-fit: cover;
}

.card-page2 img {
   position: relative;

}

/* services2 */
body {
   margin: 0;
   font-family: 'Poppins', sans-serif;
   background-color: #0f0f0f;
   color: white;
}

.service-section {
   text-align: center;

}

.service-images {
   display: flex;
   max-width: 75%;
   margin: 50px auto;
   justify-content: center;
   gap: 40px;
   margin-bottom: 50px;
   margin-top: 50px;
}

.service-images1 {
   width: 350px;
   height: 200px;
   object-fit: cover;
   /* border-radius: 25px; */
   /* margin-top: 40px; */
}

.service-images2 {
   width: 160px;

   /* border-radius: 25px; */
}

.service-title {
   font-size: 55px;
   font-weight: 600px;
   margin-bottom: 30px;
}

.service-text {
   max-width: 70%;
   margin: 0 auto;
   font-size: 20px;
   line-height: 1.6;
   text-align: justify;
}

.service-text p {
   margin-bottom: 20px;
}

/* service */


/* =========================================
   8. TEAM CAROUSEL (Manual)
   ========================================= */
.team-section {
   background-color: var(--bg-main);
   padding: 0px 0;
   margin-top: 0px;
   text-align: center;
}

.team-member h3,
.team-member p {
   margin-bottom: 2px;
}

.team-title span {
   font-size: 36px;
   font-weight: bold;
   color: var(--text-white);
   position: relative;
   display: inline-block;
   padding: 0 20px;
}

/* Garis di samping judul */
.team-title span::before,
.team-title span::after {
   content: "";
   position: absolute;
   top: 50%;
   width: 100px;
   height: 4px;
   background-color: var(--gold-accent);
}

.team-title span::before {
   right: 100%;
}

.team-title span::after {
   left: 100%;
}

.carousel-wrapper {
   position: relative;
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 60px;
}

.team-container {
   display: flex;
   gap: 40px;
   overflow-x: auto;
   scroll-behavior: smooth;
   padding-bottom: 20px;

   /* Hide Scrollbar */
   -ms-overflow-style: none;
   scrollbar-width: none;
}

.team-container::-webkit-scrollbar {
   display: none;
}

.team-member {
   min-width: 220px;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.avatar-box {
   width: 180px;
   height: 180px;
   border-radius: 50%;
   border: 8px solid #333;
   overflow: hidden;
   margin-bottom: 20px;
   background-color: #fff;
}

.avatar-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.nav-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: transparent;
   border: none;
   color: var(--text-muted);
   font-size: 40px;
   cursor: pointer;
   z-index: 10;
}

.nav-btn:hover {
   color: var(--gold-primary);
}

.prev-btn {
   left: 10px;
}

.next-btn {
   right: 10px;
}


/* =========================================
   9. GALLERY & NEWS GRID
   ========================================= */
/* .news-page-section,
.gallery-page-section {
   padding: 0 50px 60px;
}

.news-grid,
.album-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 30px;
}


.news-card,
.album-card {
   background-color: var(--bg-card);
   border-radius: 10px;
   overflow: hidden;
   transition: transform 0.3s, box-shadow 0.3s;
   border: 1px solid #333;
   display: block;
}

.news-card:hover,
.album-card:hover {
   transform: translateY(-10px);
   border-color: #444;
   box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.news-thumb,
.album-cover {
   position: relative;
   height: 200px;
   overflow: hidden;
}

.news-thumb img,
.album-cover img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s;
}

.news-card:hover img,
.album-card:hover img {
   transform: scale(1.1);
}

.news-date {
   position: absolute;
   top: 15px;
   right: 15px;
   background-color: var(--gold-primary);
   color: #000;
   padding: 5px 12px;
   font-size: 12px;
   font-weight: bold;
   border-radius: 20px;
}

.news-content,
.album-info {
   padding: 25px;
}

.news-category {
   color: var(--text-muted);
   font-size: 12px;
   font-weight: bold;
   letter-spacing: 1px;
}

.news-content h3 a,
.album-info h3 {
   color: var(--text-white);
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 10px;
   display: block;
}

.news-content p,
.album-info p {
   color: var(--text-grey);
   font-size: 14px;
   line-height: 1.6;
}

.read-more {
   color: var(--gold-primary);
   font-weight: bold;
   font-size: 14px;
   display: inline-block;
   margin-top: 15px;
}

.read-more:hover {
   padding-left: 5px;
} */

/* =========================================
   NEWS GRID
   ========================================= */
.news-page-section {
   padding: 0 50px 60px;
}

.news-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 30px;
}

.news-card {
   background-color: var(--bg-card);
   border-radius: 10px;
   overflow: hidden;
   transition: transform 0.3s, box-shadow 0.3s;
   border: 1px solid #333;
   display: block;
}

.news-card:hover {
   transform: translateY(-10px);
   border-color: #444;
   box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.news-thumb {
   position: relative;
   height: 200px;
   overflow: hidden;
}

.news-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s;
}

.news-card:hover img {
   transform: scale(1.1);
}

.news-date {
   position: absolute;
   top: 15px;
   right: 15px;
   background-color: var(--gold-primary);
   color: #000;
   padding: 5px 12px;
   font-size: 12px;
   font-weight: bold;
   border-radius: 20px;
}

.news-content {
   padding: 25px;
}

.news-category {
   color: var(--text-muted);
   font-size: 12px;
   font-weight: bold;
   letter-spacing: 1px;
}

.news-content h3 a {
   color: var(--text-white);
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 10px;
   display: block;
}

.news-content p {
   color: var(--text-grey);
   font-size: 14px;
   line-height: 1.6;
}

.read-more {
   color: var(--gold-primary);
   font-weight: bold;
   font-size: 14px;
   display: inline-block;
   margin-top: 15px;
}

.read-more:hover {
   padding-left: 5px;
}

/* ===============================
   NEWS DETAIL PAGE (STATIC)
   =============================== */

.news-detail-container {
   padding: 0 50px 60px;
   max-width: 1100px;
   margin: auto;
}

.news-banner-detail img {
   width: 100%;
   height: 420px;
   object-fit: cover;
   margin-top: 40px;
}

.news-title-detail {
   font-size: 38px;
   font-weight: 700;
   margin-top: 25px;
}

.news-date-detail {
   font-size: 14px;
   color: var(--text-secondary);
   margin-top: 8px;
   margin-bottom: 25px;
}

.news-content-detail {
   font-size: 18px;
   line-height: 1.7;
   white-space: pre-line;
   margin-bottom: 60px;
}

/* RELATED (OPTIONAL) */
.related-title-detail {
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 25px;
}

.related-grid-detail {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 25px;
}

.related-card-detail {
   background: var(--bg-card);
   border-radius: 12px;
   overflow: hidden;
   text-decoration: none;
   color: var(--text-primary);
   display: block;
}

.related-card-detail img {
   width: 100%;
   height: 170px;
   object-fit: cover;
}

.related-content-detail {
   padding: 15px;
}

.related-title-text-detail {
   font-size: 17px;
   font-weight: 600;
}

.related-date-detail {
   font-size: 12px;
   color: var(--text-secondary);
   margin-top: 6px;
}

/* =========================================
   gallery GRID
   ========================================= */

.gallery-page-section {
   padding: 0 50px 60px;
}

.album-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   /* 3 Kolom Album */
   gap: 40px;
}

/* --- STYLE KARTU ALBUM --- */
.album-card {
   background: transparent;
   cursor: pointer;

   /* TAMBAHKAN 2 BARIS INI: */
   text-decoration: none;
   /* Agar teks tidak bergaris bawah */
   display: block;
   /* Agar link berfungsi sebagai kotak utuh */
}

.album-cover {
   position: relative;
   width: 100%;
   height: 250px;
   border-radius: 10px;
   margin-bottom: 20px;
   z-index: 2;
   /* Agar gambar utama di depan */
   transition: transform 0.3s ease;
}

/* Membuat efek "Tumpukan Foto" di belakang */
.album-cover::before {
   content: "";
   position: absolute;
   top: 5px;
   left: 5px;
   width: 100%;
   height: 100%;
   background-color: #333;
   /* Warna tumpukan belakang */
   border-radius: 10px;
   z-index: -1;
   /* Di belakang gambar utama */
   transition: transform 0.3s ease;
}

.album-cover::after {
   content: "";
   position: absolute;
   top: 10px;
   left: 10px;
   width: 100%;
   height: 100%;
   background-color: #222;
   /* Warna tumpukan paling belakang */
   border-radius: 10px;
   z-index: -2;
   transition: transform 0.3s ease;
}

/* Gambar Utama */
.album-cover img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
   border: 1px solid #333;
}

/* Overlay Icon (Hidden by default) */
.album-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   /* Gelap transparan */
   border-radius: 10px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   opacity: 0;
   /* Sembunyi */
   transition: opacity 0.3s ease;
   color: #ffcc00;
}

.album-overlay i {
   font-size: 32px;
   margin-bottom: 5px;
}

.album-overlay span {
   font-size: 14px;
   font-weight: bold;
   color: #fff;
}

/* --- EFEK HOVER --- */
.album-card:hover .album-cover {
   transform: translateY(-5px);
   /* Naik sedikit */
}

/* Saat hover, tumpukan belakang miring (Fan out effect) */
.album-card:hover .album-cover::before {
   transform: rotate(3deg);
   /* Miring ke kanan */
   background-color: #444;
}

.album-card:hover .album-cover::after {
   transform: rotate(6deg);
   /* Miring lebih kanan */
   background-color: #333;
}

.album-card:hover .album-overlay {
   opacity: 1;
   /* Munculkan overlay icon */
}

/* Info Text */
.album-info h3 {
   color: #fff;
   font-size: 20px;
   margin-bottom: 5px;
   font-weight: bold;
}

.album-info p {
   color: #888;
   font-size: 14px;
}

.gallery {
   display: flex;
   gap: 30px;
   justify-content: center;
   flex-wrap: wrap;
}

.item {
   text-align: center;
   width: 300px;
   color: #ffffff;
   text-align: center;
   width: 300px;
}

.item img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 5px;
}

.gallery2 {
   display: flex;
   gap: 30px;
   justify-content: center;
   flex-wrap: wrap;
}

.item img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 5px;
}

.tombol-seemore {
   text-align: center;

}

.see-more {
   background-color: #f1b500;
   color: rgb(0, 0, 0);
   padding: 10px 20px;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   cursor: pointer;
   transition: 0.3s;
   text-decoration: none;
   font-weight: bold;
}

.see-more:hover {
   background-color: #f1b500;
   transform: scale(1.05);
   box-shadow: 0 0 5px 3px #ffffff;
}

/* =========================================
   HALAMAN GALLERY DETAILS & LIGHTBOX
   ========================================= */

.gallery-detail-section {
   background-color: #000;
   padding: 60px 50px;

}

/* Header Album (Judul & Tombol Back) */
.album-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 40px;
   border-bottom: 1px solid #333;
   padding-bottom: 20px;
}

.album-title-box h1 {
   color: #fff;
   font-size: 36px;
   margin-bottom: 10px;
}

.album-meta {
   color: #888;
   font-size: 14px;
}

.btn-back {
   color: #ffcc00;
   text-decoration: none;
   font-weight: bold;
   border: 1px solid #ffcc00;
   padding: 10px 20px;
   border-radius: 5px;
   transition: 0.3s;
}

.btn-back:hover {
   background-color: #ffcc00;
   color: #000;
}

/* Grid Foto */
.photo-grid {
   display: grid;
   /* Membuat grid responsif otomatis, minimal lebar 250px */
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: 15px;
}

.photo-item {
   position: relative;
   height: 250px;
   /* Tinggi seragam */
   cursor: pointer;
   overflow: hidden;
   border-radius: 8px;
}

.photo-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   /* Agar gambar tidak gepeng */
   transition: transform 0.5s ease;
}

/* Efek Hover Foto */
.photo-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* Hitam transparan */
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.photo-overlay i {
   color: #fff;
   font-size: 30px;
}

.photo-item:hover .photo-overlay {
   opacity: 1;
}

.photo-item:hover img {
   transform: scale(1.1);
   /* Zoom effect */
}


/* --- LIGHTBOX (POPUP) STYLES --- */
.lightbox-modal {
   display: none;
   /* Sembunyi default */
   position: fixed;
   z-index: 9999;
   /* Paling atas */
   padding-top: 50px;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.95);
   /* Latar hitam pekat */
}

.lightbox-content {
   margin: auto;
   display: block;
   max-width: 90%;
   max-height: 85vh;
   border: 2px solid #333;
   border-radius: 5px;
   animation: zoomIn 0.3s;
   /* Animasi muncul */
}

@keyframes zoomIn {
   from {
      transform: scale(0)
   }

   to {
      transform: scale(1)
   }
}

/* Tombol Close (X) */
.close-lightbox {
   position: absolute;
   top: 20px;
   right: 35px;
   color: #f1f1f1;
   font-size: 40px;
   font-weight: bold;
   cursor: pointer;
   transition: 0.3s;
}

.close-lightbox:hover {
   color: #ffcc00;
}

/* =========================================
   10. CONTACT FORM & PAGE
   ========================================= */
.contact-container-main {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 50px;

}

.contact-map-section,
.contact-form-section {
   flex: 1;
   min-width: 300px;
}

.contact-form-section h2 {
   font-size: 30px;
   margin: 2px 0px 12px 0px;
}

.contact-map-section iframe {
   width: 100%;
   height: 500px;
   border-radius: 10px;
   border: none;
}

.contact-form-section {
   background-color: var(--gold-primary);
   padding: 30px;
   border-radius: 10px;
   color: #000;
   width: 100%;
}

.contact-form-section input,
.contact-form-section textarea {
   width: 95%;
   padding: 12px;
   margin: 5px 0px 10px 0px;
   border: none;
   border-radius: 6px;
   font-family: var(--font-body);
}

.contact-form-section button {
   background-color: var(--bg-secondary);
   color: var(--gold-primary);
   padding: 12px 25px;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   font-weight: bold;
   transition: 0.3s;
}

.contact-form-section button:hover {
   background-color: #000;
   color: #fff;
}


/* =========================================
   11. FOOTER
   ========================================= */
.footer {
   background-color: var(--bg-secondary);
   padding-top: 40px;
   color: var(--text-white);
}

.Contact-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   gap: 30px;
}

.contact-column {
   flex: 1;
   min-width: 250px;
}

.contact-column h6 {
   color: var(--text-white);
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 20px;
   border-bottom: 2px solid var(--gold-primary);
   display: inline-block;
   padding-bottom: 5px;
}

.contact-info p,
.address {
   line-height: 22px;
   color: var(--text-grey);
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.icon {
   width: 20px;
}

.legal {
   background-color: #121212;
   text-align: center;
   padding: 20px;
   margin-top: 40px;
   color: var(--text-muted);
   font-size: 14px;
}

.social-media-icons {
   margin-top: 20px;
}

.logo-ig-yt {
   width: 30px;
   margin-right: 5px;
}


/* =========================================
   12. MEDIA PARTNER
   ========================================= */
.media-partner {
   border-top: 3px solid var(--gold-dark);
   margin-top: 50px;
   padding: 40px 0;
   text-align: center;
}

.mediapartner h6 {
   font-size: 30px;
   color: var(--text-white);
   margin-bottom: 30px;
}

.media-partner1 {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 30px;
   align-items: center;
}

.media-partner1-2 {
   max-width: 150px;

   transition: filter 0.3s;
}

.media-partner1-2:hover {
   filter: grayscale(0%);
}

/* =========================================
   BACK TO TOP (GLOBAL)
   ========================================= */
#scrollTopBtn {
  /* Positioning */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  
  /* Initial State - Hidden */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  
  /* Appearance */
  background: none;
  color: #000;
  padding: 12px 14px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
  /* Transition */
  transition: all 0.3s ease;
  
  /* Prevent text selection */
  user-select: none;
}

/* Show state - when .show class is added */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#scrollTopBtn:hover {
  background:none;
  transform: translateY(-3px);
  
}

/* Icon (Arrow) styling */
#scrollTopBtn .icon {
  background-color: #f1b500;
  color: white;
  font-size: 24px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTopBtn:hover .icon {
  background-color: #f6c343;
}

/* Text styling */
#scrollTopBtn .text {
  background: none;
  color: #f6c343;
  font-size: 11px;
  padding: 2px 4px;
  border-radius: 3px;
  opacity: 0.8;
  font-weight: bold;
  white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    padding: 10px 12px;
  }
  
  #scrollTopBtn .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 3px;
  }
  
  #scrollTopBtn .text {
    font-size: 9px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #scrollTopBtn {
    bottom: 15px;
    right: 15px;
  }
  
  /* Hide text on very small screens, show only icon */
  #scrollTopBtn .text {
    display: none;
  }
  
  #scrollTopBtn .icon {
    margin-bottom: 0;
  }
}

/* =========================================
   13. ANIMATIONS & LOADING
   ========================================= */
.fade-section {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.show {
   opacity: 1;
   transform: translateY(0);
}

#loading-screen {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--bg-main);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   z-index: 9999;
   transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
   opacity: 0;
   visibility: hidden;
}

.loading-logo img {
   width: 150px;
   margin-bottom: 20px;
}

.loading-bar {
   width: 200px;
   height: 4px;
   background: #333;
   border-radius: 2px;
   overflow: hidden;
}

.loading-progress {
   width: 0;
   height: 100%;
   background-color: var(--gold-primary);
   animation: progressFill 3s ease-in-out forwards;
}

@keyframes progressFill {
   0% {
      width: 0;
   }

   100% {
      width: 100%;
   }
}

/* =========================================
   14. MOBILE RESPONSIVENESS (Max Width 768px)
   ========================================= */

@media (max-width: 768px) {
	
	#backToTop {
        bottom: 20px;
        right: 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .btt-text {
        font-size: 8px; /* Kecilkan teks sedikit di HP */
    }
	
	.footer-section {
        padding: 40px 0 20px;
        text-align: center; /* Rata tengah di mobile */
    }

    .footer-content {
        flex-direction: column; /* Stack vertikal */
        gap: 40px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); /* Garis tengah */
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-desc {
        max-width: 300px;
        margin: 0 auto 25px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
	
   /* --- GLOBAL STYLES & LAYOUT --- */
   /* --- 1. BAGIAN ATAS (CEO & KOMISARIS) --- */

    .about-title.fade-section {
        margin-top: 40px !important; /* Jarak dari navbar/elemen atas */
        margin-bottom: 20px !important; /* Jarak ke konten di bawahnya */
        font-size: 28px !important; /* Ukuran font judul yang lebih pas di HP */
    }

    .about-inner-container {
        margin-top: 0 !important; /* Hilangkan sisa jarak atas */
        padding-top: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 20px; /* Jarak antar elemen di dalam container */
    }

   .about-wrapper {
      display: flex !important;
      flex-direction: row !important;
      /* Paksa sejajar ke samping */
      flex-wrap: wrap !important;
      /* Izinkan turun baris */
      justify-content: center !important;
      /* Posisi di tengah */
      align-items: flex-start !important;
      /* Rata atas */
      gap: 15px;
      /* Jarak antar foto */
      padding: 0 15px;
      margin-top: 0 !important;
	  padding-top: 10px !important;
      /* Reset margin desktop */
   }

   /* Reset Margin Minus dari Desktop */
   .about-person {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      position: static !important;
      display: flex;
      flex-direction: column;
   }

   /* FOTO KIRI & KANAN: Dibuat berdampingan (48% lebar masing-masing) */
   .about-person.left {
      order: 1;
      width: 45% !important;
      /* Lebar 45% agar muat berdua */
   }

   .about-person.right {
      order: 2;
      width: 45% !important;
   }

   .about-person img {
      width: 100% !important;

      /* Paksa rasio foto jadi 3:4 (Portrait) agar tinggi SAMA PERSIS */
      aspect-ratio: 3 / 4 !important;

      /* Crop foto agar tidak gepeng saat dipaksa rasionya */
      object-fit: cover !important;
      object-position: top center !important;
      /* Fokus ke wajah (atas) */

      height: auto !important;
      margin-bottom: 0 !important;
      /* Hapus jarak aneh */
   }

   /* Label Nama diperkecil agar muat */
   .person-label {
      width: 100%;
      min-height: 45px;
      /* Paksa tinggi minimal agar kotak kuning sama tinggi */
      display: flex;
      flex-direction: column;
      justify-content: center;
      font-size: 10px;
      padding: 5px;
      margin-top: -5px !important;
      /* Naikkan sedikit agar nempel foto */
      box-sizing: border-box;
   }

   /* KOTAK TEKS TENGAH: Turun ke bawah (Urutan 3) */
   .text-frame {
      order: 3;
      /* Urutan ke-3 */
      width: 100% !important;
      margin-top: 30px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding: 25px !important;
      box-sizing: border-box;
      text-align: justify;
   }


   /* --- 2. BAGIAN MASKOT (GAMBAR DI ATAS TEKS) --- */

   .about-mascot {
      display: flex !important;
      flex-direction: column-reverse !important;
      /* Gambar di atas */
      align-items: center !important;
      /* Tengahkan elemen anak secara horizontal */
      margin: 40px 0 20px 0 !important;
      width: 100% !important;
      padding: 0 15px;
      box-sizing: border-box;
   }

   /* Gambar Maskot */
   .maskot-frame {
      width: 100% !important;
      display: flex !important;
      /* Gunakan flexbox */
      justify-content: center !important;
      /* Paksa konten (gambar) ke tengah horizontal */
      align-items: center !important;
      margin-bottom: 25px !important;
      text-align: center !important;
      /* Cadangan alignment */
   }

   .maskot {
      width: 180px !important;
      max-width: 100%;
      display: block !important;
      /* Pastikan block agar margin auto jalan */
      margin: 0 auto !important;
      /* Kunci posisi tengah */
      transform: none !important;
      /* Reset efek aneh jika ada */
   }

   /* Kotak Teks Maskot */
   .text-frame-maskot {
      width: 100% !important;
      margin: 0 !important;
      padding: 25px !important;
      box-sizing: border-box;
      text-align: justify;
      /* Teks paragraf tetap rata kanan-kiri */
   }

	#Background, #Doushi, #three-D, #Compositing, #3D, .section-service {
        /* Jarak offset (sesuaikan dengan tinggi navbar mobile kamu) */
        scroll-margin-top: 130px !important; 
    }
	
	html {
        scroll-behavior: smooth;
        /* Cara alternatif untuk browser modern */
        scroll-padding-top: 130px !important; 
    }

   /* Penyesuaian Hiasan Sudut Emas di Mobile */
   .text-frame::before,
   .text-frame::after,
   .text-frame-maskot::before,
   .text-frame-maskot::after {
      width: 25px;
      height: 25px;
      border-width: 3px;
   }

   /* Atur padding dan margin global agar lebih ringkas */
   main {
      padding: 0 15px;
      /* Kurangi padding horizontal */
   }

   /* Hilangkan margin-left yang terlalu besar pada judul di Home */
   .AU-tittle,
   .works-tittle,
   .Work-Title2 {
      text-align: center;
      margin-bottom: 16px;
   }

   /* Padding untuk Header/Section dengan jarak atas yang besar */
   .About-Us-page,
   .Services-page,
   .contact-container-main {
      padding-top: 20px;
      /* Kurangi jarak aman dari fixed header */
      margin-left: 0;
      margin-right: 0;
   }

   /* --- 1. NAVBAR (Untuk menu hamburger) --- */

   /* Sembunyikan menu desktop */
   .navbar-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      /* Sesuaikan dengan tinggi navbar */
      left: 0;
      background-color: var(--bg-secondary);
      z-index: 1000;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
   }

   .navbar-menu.active {
      display: flex;
      /* Tampilkan jika menu aktif */
      padding-left: 5%;
      margin-top: 25px;

   }

   .navbar-menu li a {
      padding: 10px 20px;
      text-align: center;
      width: 100%;
      display: block;
   }

	.page-tittle span::before,
    .page-tittle span::after {
        width: 40px; /* Pendekkan garis di HP agar tidak overflow */
        height: 3px;
    }
    
    .page-tittle {
        font-size: 20px !important;
    }

   /* Tampilkan tombol hamburger */
   .menu-toggle {
      display: block;
      font-size: 24px;
      color: var(--text-white);
      cursor: pointer;
      padding: 10px 15px;
   }

   .navbar {
      justify-content: space-between;
      /* Pindahkan logo dan toggle ke ujung */
      padding: 10px 20px;
   }

   /* --- 2. INDEX.PHP / HOMEPAGE --- */

   /* Bagian Slogan */
   .container {
      background-image: url('../img/bg-mobile.webp');
      background-size: cover;
      background-position: center;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-white);
      margin-top: 0;
   }

   .box {
      padding: 81px 0px 0px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }

   .box img {
      display: block;
      width: 48%;
      max-width: 500px;
      padding-left: 0px;
   }

   .slogan_Amienation {
      width: 100%;
      font-size: 11px;
      line-height: 1.3;
      text-align: center;
      padding: 0 0px;
   }

   /* Bagian About Us */

   .About-Us {
      margin-bottom: 50px;
   }

   .AU-tittle {
      font-size: 18px;
   }

   .About_Amienation {
      font-size: 12px;
      text-align: left;
      padding: 0;
      /* Tambahkan padding agar teks tidak terlalu lebar */
      margin-bottom: 20px;
   }

   /* Bagian Works (Slider) */
   .works-slider {
      padding: 0 10px;
   }

   .Work-Title2 {
      text-align: center;
      font-size: 18px;
   }


   .page-tittle {
      font-size: 24px !important;
      margin-top: 100px !important;
      margin-bottom: 20px !important;
      text-align: center;
   }

   .works1-bio-page {
        font-size: 14px !important;
        padding: 0 10px;
    }

   .item,
   .item-page {
      margin-top: 4px;
      text-align: center;
      width: 150px;
      /* Ukuran seragam */
      color: var(--text-white);
   }

   .item img,
   .item-page img {
      width: 100%;
      height: 425px !important;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
   }

   .item p,
   .item-page p {
      font-size: 16px;
      margin-top: 6px;
      margin-bottom: 6px;
   }

   .works_gallery,
   .gallery,
   .gallery-page,
   .gallery2-page {
      padding: 0px;
      gap: 19px;
   }

   .works-card {
      min-width: calc(50% - 15px);
      margin-right: 15px;
      scroll-snap-align: start;
      border-radius: 10px;
   }

	/* 1. Atur container utama agar menjadi 2 kolom */
    .works-grid-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Membuat 2 kolom sejajar */
        gap: 0px !important; /* Memberikan jarak antar kotak */
        padding: 10px !important;
        width: 75% !important;
    }

    /* 2. Pastikan item pekerjaan (works-item) rapi */
    .works-item {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 3. Atur ukuran gambar poster agar pas di dalam grid */
    .Backlit-page, .works-item img.Backlit {
        width: 100% !important;
        height: 220px !important; /* Tinggi tetap agar baris grid sejajar */
        
        /* Gambar tetap utuh di dalam area 220px */
        object-fit: contain !important; 
        background-color: #000 !important;
        
        border-radius: 10px !important;
    }

    /* 4. Sesuaikan teks judul di bawah gambar */
    .works-item p {
        font-size: 13px !important;
        margin-top: 10px !important;
        line-height: 1.4;
        color: var(--text-white); /* Menggunakan variabel warna teks putih */
    }

   .tombol-seemore {
      margin-bottom: 30px;
      text-align: center;
      margin-top: 20px;
   }

   .see-more {
      background-color: var(--gold-dark);
      color: #000;
      padding: 10px 25px !important;
      border-radius: 8px;
      font-size: 14px;
      font-weight: bold;
   }

   /* bagian service */

   .service-section-page {
      background-color: var(--bg-main);
      padding: 0px 0;
      margin-top: 102px;
      text-align: center;
   }

   .service-title-page span {
      font-size: 24px;
      font-weight: bold;
      color: var(--text-white);
      position: relative;
      display: inline-block;
      padding: 0 20px;
   }

   .services-section {
      background-color: var(--bg-main);
      padding: 7px 15px;
   }

   .Services-page {
      margin-top: 20px;
      padding-top: 0px;
      margin-left: 0;
      margin-right: 0;
   }


   .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* 2 kolom */
      gap: 20px;
      margin: 0;
   }

   .service-card {
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      background: #fff;
   }

   .card-image {
      height: 147px;
   }

   .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
   }

   .card-content {
      background: #e6b800;
      padding: 25px 20px;
      color: #000;
      text-align: center;
      flex-grow: 1;
      padding: 0px 8px;
   }

   .card-content h3 {
      margin-top: 7px;
      font-size: 12px;
      margin-bottom: 6px;
   }

   .card-content p {
      margin-top: 0px;
      text-align: center;
      font-size: 11px;
   }


   /* team */

   .team-section {
      background-color: var(--bg-main);
      padding: 0px;
      text-align: center;
   }

   .team-title span {
      font-size: 18px;
      font-weight: bold;
      color: var(--text-white);
      position: relative;
      display: inline-block;
      padding: 0 20px;
   }

   /* Garis di samping judul */
   .team-title span::before,
   .team-title span::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 100px;
      height: 4px;
      background-color: var(--gold-accent);
   }

   .team-title span::before {
      right: 100%;
   }

   .team-title span::after {
      left: 100%;
   }

   .carousel-wrapper {
      position: relative;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 20px;
      /* kecilkan supaya center */
      box-sizing: border-box;
   }

   /* Container utama */
   .team-container {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 0px;
      gap: 40px;

      /* SCROLL SNAP = kunci agar item selalu center */
      scroll-snap-type: x mandatory;

      -ms-overflow-style: none;
      scrollbar-width: none;
   }

   .team-container::-webkit-scrollbar {
      display: none;
   }

   /* Item anggota tim */
   .team-member {
      min-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;

      /* SCROLL SNAP POINT */
      scroll-snap-align: center;
      scroll-snap-stop: always;
   }

   /* Avatar */
   .avatar-box {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 8px solid #333;
      overflow: hidden;
      margin-bottom: 15px;
   }

   .avatar-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
   }


   .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-size: 40px;
      cursor: pointer;
      z-index: 10;
   }

   .nav-btn:hover {
      color: var(--gold-primary);
   }

   .prev-btn {
      left: 10px;
   }

   .next-btn {
      right: 10px;
   }



   /* Bagian Partner */

   .media-partner {
      border-top: 3px solid var(--gold-dark);
      border-bottom: 3px #FFD700 solid;
      margin-top: 16px;
      padding: 0px 0px;
   }

   .mediapartner h6 {
        font-size: 18px !important;
        margin-top: 25px !important;
        margin-bottom: 20px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

   .media-partner1 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* Kunci: 3 Kolom Samping */
        gap: 20px 10px !important; /* Jarak atas-bawah 20px, kiri-kanan 10px */
        padding: 0 20px 40px !important;
        align-items: center !important;
        justify-items: center !important;
    }
	
	.media-partner1-1 {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

   .media-partner1-2 {
        width: 100% !important;
        max-width: 85px !important; /* Ukuran maksimal logo di HP */
        height: auto !important;
        object-fit: contain !important;
        /* Opsional: Hilangkan filter grayscale jika ada agar logo terlihat aslinya di HP */
        filter: grayscale(0%) !important; 
        opacity: 1 !important;
    }

   /* --- 3. ABOUT_US.PHP --- */

   /* Container utama */
   .About-Us-page {
      padding: 0 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
   }

   /* Judul */
   .AU-tittle-page {
      font-size: 22px;
      margin-left: 0;
      text-align: center;
      width: 100%;
      margin-bottom: 0px;
   }

   /* Paragraf */
   .About_Amienation-page {
      font-size: 15px;
      line-height: 1.6;
      text-align: center;
      padding: 0;
      margin-left: 0px;
      margin-bottom: 0px;
      width: 100%;
      ;
   }

   /* Maskot — TANPA WRAP TEXT */
   .maskot {
      width: 100px;
      display: block;
      justify-items: center;
      margin: 0 auto 20px auto;

      /* Hilangkan wrap-text behavior */
      float: none;
      shape-outside: none;
      shape-margin: 0;
      shape-image-threshold: 0;

      transform: none;
      pointer-events: none;
   }


   /* --- 4. NEWS.PHP --- */

   .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; 
        gap: 25px !important;
        padding: 0 10px !important;
    }
	
   .news-card {
        background-color: var(--bg-card) !important;
        border-radius: 12px !important;
        overflow: hidden;
        border: 1px solid #333 !important;
        display: flex;
        flex-direction: column; /* Gambar di atas, teks di bawah */
    }
	
	.news-thumb {
        height: 200px !important; /* Tinggi tetap agar rapi */
        width: 100% !important;
        position: relative;
    }
	
	.news-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
	
	.news-date {
        font-size: 11px !important;
        padding: 4px 10px !important;
        top: 10px !important;
        right: 10px !important;
    }
	
	.news-content {
        padding: 20px !important;
    }
	
	.news-content h3 {
        font-size: 18px !important; /* Judul lebih pas untuk layar HP */
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
	
	.news-content p {
        font-size: 13px !important; /* Kecilkan teks cuplikan */
        line-height: 1.5 !important;
        color: var(--text-grey);
        margin-bottom: 15px !important;
    }
	
	.read-more {
        font-size: 13px !important;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

   .news-banner-detail img {
      width: 280px;
      height: 150px;
      object-fit: cover;
   }


   /* --- 5. GALLERY.PHP --- */

   .album-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* 2 kolom */
      gap: 20px;
      /* jarak antar card */
      padding: 0 20px;
   }

   .gallery-page-section {
      padding: 0px 13px 60px;
   }

   .album-cover {
      position: relative;
      width: 100%;
      height: 155px;
      border-radius: 10px;
      margin-bottom: 20px;
      z-index: 2;
      transition: transform 0.3s ease;
   }

   .album-info h3 {
      color: #fff;
      font-size: 15px;
      margin-top: 5px;
      margin-bottom: -11px;
      font-weight: bold;
   }

   /* --- 6. CONTACT.PHP --- */
   .contact-container-main {
      width: 100%;
      display: flex;
      flex-direction: column;
      padding: 0 30px;
      /* kecilkan padding agar tidak overflow */
      box-sizing: border-box;
   }

   .contact-map-section,
   .contact-form-section {
      width: 100%;
      /* ubah jadi 100% agar tidak melebar dari container */
      box-sizing: border-box;
   }

   /* Pastikan iframe tidak pernah melebar */
   .contact-map-section iframe {
      width: 100% !important;
      max-width: 100%;
      display: block;
      height: 360px;
      border: 0;
      padding-bottom: 3px;
   }

   /* Form */
   .contact-form-section input,
   .contact-form-section textarea {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      border: none;
      border-radius: 6px;
      font-family: var(--font-body);
      box-sizing: border-box;
   }

   .contact-form-section h2 {
      margin: 0 0 10px 0;
   }

   .contact-form-section form label {
      margin-bottom: 9px;
      display: block;
   }

   /* PENTING: cegah overflow halaman */
   html,
   body {
      overflow-x: hidden;
   }


   /* --- 7. FOOTER --- */
   .footer {
      background-color: var(--bg-secondary);
      padding-top: 40px;
      color: var(--text-white);
   }

   .Contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 768px;
      margin: 0 auto;
      padding: 0 20px;
      gap: 0px;
   }

   .contact-column {
      flex: 1;
      min-width: 200px;
   }

   .left-column {
      text-align: center;
   }


   .logo-contact {
      width: 150px;
   }

   .social-media-icons {
      margin-top: 25px;
   }

   .logo-ig-yt {
      width: 25px;
   }

   .contact-column h6 {
      color: var(--text-white);
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px;
      border-bottom: 2px solid var(--gold-primary);
      display: inline-block;
      padding-bottom: 5px;
   }

   .contact-info p,
   .address {
      color: var(--text-grey);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 0px;
      font-size: 16px;
   }

   .icon {
      width: 20px;
      margin-right: 5px;
   }

   .legal {
      background-color: #121212;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      color: var(--text-muted);
      font-size: 14px;
   }

   .logo-ig-yt {
      width: 30px;
   }

   .service-images {
        display: flex !important;
        flex-direction: row !important; /* Paksa tetap menyamping */
        justify-content: center !important;
        max-width: 100% !important; /* Hilangkan batas 75% yang ada di desktop */
        width: 100% !important;
        margin: 20px auto !important;
        gap: 8px !important; /* Perkecil jarak antar gambar agar gambar bisa membesar */
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

   .service-images1 {
        width: 32% !important; /* Membagi layar menjadi hampir 3 bagian rata */
        height: 100px !important; /* Sesuaikan tinggi agar tidak gepeng */
        object-fit: cover !important;
        border-radius: 8px !important;
    }

   .service-images2 {
        width: 32% !important;
        height: 150px !important; /* Lebih tinggi karena format portrait */
        object-fit: cover !important;
        border-radius: 8px !important;
    }

   .service-title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }

   .service-text {
        max-width: 95% !important; /* Lebarkan teks agar seimbang dengan gambar */
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        padding: 0 15px 20px 15px !important;
    }
	
	.filter-wrapper {
        gap: 8px !important; /* Jarak lebih rapat di HP */
        padding: 0 10px;
    }
	
	.filter-pill {
        padding: 8px 15px !important;
        font-size: 12px !important;
        border-radius: 20px !important;
        background: #1a1a1a;
        border: 1px solid #333;
        color: #fff;
    }

    .filter-pill.active {
        background: var(--gold-primary);
        color: #000;
        border-color: var(--gold-primary);
    }
	
	/* 3. Grid Gallery (2 Kolom di HP) */
    .gallery-page {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Paksa 2 kolom menyamping */
        gap: 15px !important;
        padding: 20px 15px !important;
    }

    /* 4. Item Box */
    .item-page {
        width: 100% !important; /* Mengikuti lebar grid */
        margin-bottom: 20px;
        text-align: center;
    }

    /* 5. Gambar Poster (Portrait Style) */
    .Backlit-page {
        width: 100% !important;
        height: 220px !important; /* Kunci tinggi agar seragam */
        object-fit: cover !important;
        border-radius: 10px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }

    /* 6. Teks Judul & Kategori */
    .item-page p {
        font-size: 13px !important; /* Perkecil judul di HP */
        margin: 8px 0 3px 0 !important;
        line-height: 1.3;
    }

    .item-page span {
        font-size: 10px !important; /* Perkecil teks kategori */
        letter-spacing: 0.5px !important;
    }
    
    /* Overlay Play Icon jika ada video */
    .play-icon-overlay i {
        font-size: 24px !important;
    }
	
   /* bagian news */
   .news-page-section {
      padding: 0 20px 40px;
      /* Biar tidak mepet dan tidak overflow */
   }

   .news-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* 2 kolom */
      gap: 15px;
      /* lebih rapat untuk mobile */
   }
	
   .news-thumb {
      height: 140px;
      /* kecilkan thumb agar proporsional */
   }

   .news-content {
      padding: 15px;
   }

   .news-content h3 a {
      font-size: 14px;
   }

   .news-content p {
      font-size: 12px;
   }
}


/* =========================================
   BACK TO TOP (GLOBAL)
   ========================================= */
/* Gaya Dasar untuk Pagination */
.pagination-container {
   display: flex;
   justify-content: center;
   margin: -56px 0px 57px 0px;
}

.pagination-list {
   list-style: none;
   /* Hilangkan bullet point */
   padding: 0;
   margin: 0;
   display: flex;
   gap: 8px;
   /* Jarak antar elemen */
}

.page-item {
   display: inline-block;
}

.page-link {
   display: block;
   width: 40px;
   /* Ukuran untuk membuat lingkaran */
   height: 40px;
   /* Ukuran untuk membuat lingkaran */
   line-height: 40px;
   /* Pusatkan teks secara vertikal */
   text-align: center;
   text-decoration: none;
   color: white;
   border: 1px solid #ccc;
   border-radius: 50%;
   /* Membuat bentuk bulat */
   transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* Gaya untuk Halaman Aktif */
.page-item.active .page-link {
   background-color: #f6c343;
   color: white;
   border-color: #f6c343;
}

/* Gaya Hover */
.page-link:hover:not(.active) {
   background-color: white;
   border-color: #aaa;
}

/* Gaya untuk Elemen yang Dinonaktifkan (Disabled) */
.page-item.disabled .page-link,
.page-item.disabled span {
   color: #f0f0f0;
   background-color: #f6c343;
   cursor: not-allowed;
   border-color: #f6c343;
}

.page-item.disabled span {
   border-radius: 50%;
   /* Pastikan titik tiga juga bulat */
}

/* Gaya Khusus untuk Panah Kiri/Kanan */
.page-item.prev .page-link,
.page-item.next .page-link {
   width: 40px;
   /* Sesuaikan ukuran panah */
   border-radius: 50%;
}


