/**
* Template Name: BizLand - Modified for DMG-Host (Unique Identity)
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #222222; 
  --accent-color: #106eea; /* DMG BLUE */
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ============================================================ */
/* --- 1. PERMANENT FLOATING PILL NAVBAR (MODERN STYLE) --- */
/* ============================================================ */

/* Hilangkan Topbar secara total agar bersih */
.header .topbar {
    display: none !important;
}

/* Reset Header menjadi Kapsul Melayang sejak awal */
.header {
    color: var(--default-color);
    transition: all 0.5s ease;
    z-index: 997;
    position: fixed !important; 
    
    /* Posisi Floating di Tengah Atas */
    top: 20px !important; 
    left: 50% !important;
    transform: translateX(-50%);
    width: 90% !important;
    max-width: 1200px;
    
    /* Style Visual Kapsul */
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px); /* Efek Kaca */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px; /* Bentuk Kapsul */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Saat di-scroll: Sedikit mengecil dan lebih solid */

.header.sticked {
    top: 10px !important; 
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

/* Container Branding & Logo */
.header .branding { 
    min-height: 65px; 
    padding: 0 35px; /* Spasi ekstra di kiri-kanan */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.header.sticked .branding {
    min-height: 60px;
}

.header .logo h1 { 
    font-size: 26px; 
    font-weight: 700; 
    color: var(--heading-color);
    letter-spacing: -0.5px;
    margin: 0;
}

/* ============================================================ */
/* --- 1. FLOATING PILL HEADER (DYNAMIC TRANSITION) --- */
/* ============================================================ */

/* Hilangkan Topbar secara total */
.header .topbar {
    display: none !important;
}

.header {
    color: var(--default-color);
    transition: all 0.5s ease;
    z-index: 997;
    position: fixed !important; 
    top: 20px !important; 
    left: 50% !important;
    transform: translateX(-50%);
    width: 90% !important;
    max-width: 1200px;
    
    /* KONDISI AWAL: Putih Solid & Bersih */
    background-color: #ffffff !important; 
    border-radius: 50px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

/* KONDISI SAAT SCROLL: Efek Kaca Blur (Glassmorphism) */
.header.sticked {
    top: 15px !important; 
    background-color: rgba(255, 255, 255, 0.75) !important; 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header .branding { 
    min-height: 65px; 
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.header.sticked .branding {
    min-height: 60px;
}

.header .logo h1 { 
    font-size: 26px; 
    font-weight: 700; 
    color: var(--heading-color);
    letter-spacing: -0.5px;
    margin: 0;
}

/* ============================================================ */
/* --- 2. DESKTOP NAVIGATION MENU (ADJUSTED) --- */
/* ============================================================ */
@media (min-width: 1200px) {
    .navmenu { padding: 0; }
    .navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
    .navmenu li { position: relative; }
    
    .navmenu a { 
        color: #444; 
        padding: 10px 18px; 
        font-size: 15px; 
        font-family: var(--nav-font); 
        font-weight: 500; 
        display: flex; 
        align-items: center; 
        position: relative;
        transition: 0.3s; 
    }

    /* Animasi Garis Bawah Elegan */
    .navmenu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 18px;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: 0.3s ease;
    }

    .navmenu a:hover::after, 
    .navmenu .active::after { 
        width: calc(100% - 36px); 
    }

    .navmenu a:hover, 
    .navmenu .active { 
        color: var(--accent-color); 
    }
    
    /* Tombol Client Area (Berbentuk Kapsul) */
    .navmenu .btn-client-area {
        background: linear-gradient(45deg, var(--accent-color), #3b82f6);
        color: #fff !important;
        padding: 10px 28px !important;
        border-radius: 50px !important;
        margin-left: 15px;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(16, 110, 234, 0.2);
        /* transition: 0.3s ease; */
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }
    
    .navmenu .btn-client-area:hover {
        transform: translateY(-3px) scale(1.05); /* Sedikit naik dan membesar */
        background: linear-gradient(45deg, #3b8ef5, #106eea) !important; /* Warna gradasi bergeser */
        box-shadow: 0 10px 25px rgba(16, 110, 234, 0.5); /* Pendaran biru yang kuat */
        color: #fff !important;
        letter-spacing: 1px; /* Teks sedikit merenggang agar elegan */
    }
    
    /* Matikan animasi garis bawah untuk tombol */
    .navmenu .btn-client-area::after { display: none; }
    .navmenu .btn-client-area:active {
        transform: translateY(-1px) scale(0.98); /* Efek membal saat diklik */
    }

    /* Memberi jarak antara teks menu dan ikon panah dropdown */
    .navmenu .dropdown i {
        margin-left: 8px !important; /* Tambahkan jarak sesuai selera, 8px biasanya sudah ideal */
        font-size: 12px;
        vertical-align: middle;
        transition: 0.3s;
    }

    /* Opsional: Efek rotasi panah saat dropdown terbuka agar lebih interaktif */
    .navmenu .dropdown:hover > a i {
        transform: rotate(180deg);
    }

    /* Dropdown Premium dengan Transparansi */
    /* Dropdown Premium dengan Transparansi (Update Lebar) */
    .navmenu .dropdown ul {
        margin: 0;
        padding: 15px 0;
        /* KONDISI: Transparan dengan Blur Kaca */
        background: rgba(255, 255, 255, 0.95) !important; /* Sedikit lebih solid biar tulisan jelas */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        
        display: block;
        position: absolute;
        visibility: hidden;
        
        /* INI PENGATURAN LEBARNYA */
        min-width: 200px; /* Lebar minimal yang lega */
        white-space: nowrap; /* Mencegah teks turun ke bawah (wrapping) */
        
        left: 0; /* Geser ke kiri biar rata dengan induknya */
        top: 130%;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek membal halus */
        border-radius: 15px; 
        z-index: 99;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1); 
        border: 1px solid rgba(255, 255, 255, 0.4); 
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        font-weight: 500;
        color: #444;
        background: transparent !important; /* Pastikan tidak ada background solid */
    }
    .navmenu .dropdown ul a:hover {
        color: var(--accent-color);
        padding-left: 25px; /* Efek bergeser sedikit saat di-hover */
    }
    /* --- PERBAIKAN BADGE PROMO (DMG STYLE) --- */

    /* --- BADGE PROMO DI DALAM KAPSUL --- */

    /* --- BADGE HOT VERSI FIX SEJAJAR --- */
    .navmenu .promo-link {
        display: flex !important;
        align-items: center;
        gap: 6px; /* Jarak pas antara teks Promo dan badge */
    }

    .badge-hot {
        background: #ff4d4d;
        color: white !important;
        font-size: 9px !important;
        font-weight: 800;
        padding: 2px 6px;
        border-radius: 4px;
        line-height: 1;
        display: inline-block;
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
        animation: badgePulse 2s infinite;
        text-transform: uppercase;
    }

    @keyframes badgePulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); opacity: 0.8; }
        100% { transform: scale(1); }
    }

}

/* ============================================================ */
/* --- 3. MOBILE NAVIGATION (FIXED FOR DMG-HOST) --- */
/* ============================================================ */
@media (max-width: 1199px) {
    /* Tombol Hamburger */
    .mobile-nav-toggle {
        display: block !important;
        color: #106eea !important; 
        font-size: 35px !important;
        cursor: pointer !important;
        z-index: 99999 !important; /* Di atas segalanya agar bisa diklik */
        position: relative !important;
        margin-right: 15px;
    }

    /* Menu Melayang */
    .navmenu ul {
        display: none; 
        position: fixed;
        inset: 100px 20px auto 20px; 
        padding: 20px 0;
        border-radius: 25px;
        background-color: #ffffff !important;
        box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
        z-index: 99998 !important;
        list-style: none;
    }

    /* INI KOREKSI VITAL: Gunakan body.mobile-nav-active (TANPA SPASI) */
    body.mobile-nav-active .navmenu ul {
        display: block !important;
    }

    /* Overlay latar belakang */
    body.mobile-nav-active::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 99997 !important;
    }
}

/*--------------------------------------------------------------
# HERO SECTION - UNIQUE DMG STYLE (FIXED SPACING)
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  /* Padding atas ditambah dari 120px ke 160px untuk memberi ruang pada Navbar Kapsul, Jarak Navbar */
  padding: 190px 0 80px 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  /* BACKGROUND: Putih dengan pola titik-titik halus (Dot Pattern) */
  background-color: #ffffff !important;
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px) !important;
  background-size: 20px 20px !important; /* Jarak antar titik */
  transition: all 0.5s ease;
}

/* Hapus overlay lama */
#hero:before { display: none !important; }

/* Judul Utama */
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 3.8rem; /* Sedikit diperbesar */
  font-weight: 800;
  line-height: 1.1; /* Lebih rapat agar gagah */
  color: #1a1a1a !important;
  letter-spacing: -2px; /* Efek tipografi modern */
  transition: 0.3s;
}

#hero h1 span.hide-mobile {
    color: inherit; /* Mengikuti warna h1 di atas */
}

/* Aksen teks pada judul (Biru Gradient) */
#hero h1 span:last-child {
    background: linear-gradient(-45deg, #106eea, #3b8ef5, #106eea, #2a5298);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#hero p {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Fix: Agar di HP tidak terlalu jauh jaraknya */
@media (max-width: 768px) {
  #hero {
    /* Mengubah posisi dari tengah ke atas agar padding-top bekerja maksimal */
    align-items: flex-start !important; 
    /* Ruang aman agar tidak bertabrakan dengan Navbar Kapsul */
    padding-top: 180px !important; 
    /* Mematikan tinggi layar penuh agar tidak memaksa teks ke tengah */
    min-height: auto !important; 
    padding-bottom: 60px !important;
  }

  #hero .container {
    width: 100% !important;
  }

  /* FITUR BARU: Menyembunyikan kata "Cloud Hosting" hanya di HP */
  .hide-mobile {
    display: none !important;
  }

  #hero h1 {
    /* Ukuran font diperbesar sedikit agar brand DMG-Host terlihat dominan */
    font-size: 2.8rem !important; 
    margin-bottom: 15px;
    /* Jarak tambahan dari Navbar HP yang sudah Mas tentukan */
    margin-top: 74px; 
    font-weight: 800;
    letter-spacing: -1px;
  }
}

/* KOTAK PENCARIAN (GLASSY & FLOATING) */
.search-box-dmg {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e1e4e8;
    box-shadow: 0 20px 40px rgba(16, 110, 234, 0.1); 
    border-radius: 100px; /* Full Kapsul */
    max-width: 800px;
    margin: 0 auto 60px auto;
    display: flex;
    padding: 8px;
    position: relative;
    z-index: 10;
}

/* Input Field */
.search-box-dmg .form-control {
    border: none;
    height: 55px;
    padding-left: 30px;
    font-size: 1.1rem;
    color: #333;
    background: transparent;
    box-shadow: none !important;
}

/* Tombol SEARCH (Gradasi Biru) */
.search-box-dmg .btn-search {
    background: linear-gradient(90deg, #106eea 0%, #2a5298 100%);
    color: #fff;
    border: none;
    padding: 0 50px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(16, 110, 234, 0.3);
}
.search-box-dmg .btn-search:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 110, 234, 0.4);
    background: linear-gradient(90deg, #2a5298 0%, #106eea 100%);
}

/* --- 2. TOMBOL CARI DOMAIN (GLOW EFFECT) --- */
/* Ganti atau tambahkan pada class tombol cari domain Anda */
.btn-cari-domain {
    background: linear-gradient(45deg, #106eea, #3b82f6) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 35px !important;
    font-weight: 700 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(16, 110, 234, 0.2);
    /* Transisi Custom (Bezier) agar ada efek memantul */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-cari-domain:active {
    transform: translateY(-2px) scale(0.98); /* Efek tertekan saat diklik */
}

.btn-cari-domain:hover {
    transform: translateY(-4px) scale(1.05); /* Naik & Membesar sedikit */
    box-shadow: 0 10px 25px rgba(16, 110, 234, 0.4); /* Glow lebih kuat */
    letter-spacing: 0.5px; /* Teks sedikit merenggang saat aktif */
}

/* --- 3. BADGE HARGA DOMAIN (INTERACTIVE CARDS) --- */
/* Ganti atau tambahkan pada class badge harga domain Anda */
.domain-badge {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: default;
}

.domain-badge:hover {
    transform: translateY(-5px); /* Terangkat saat di-hover */
    border-color: #106eea;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.domain-badge span.price {
    color: #106eea;
    font-weight: 700;
}

/* DAFTAR HARGA DOMAIN (Pill/Chips Style - UNIK) */
.domain-price-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Rapat seperti chips */
}

/* Style Kotak Kecil (Chips) */
.domain-chip {
    background: #fff;
    border: 1px solid #eff2f5;
    padding: 10px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.domain-chip:hover {
    transform: translateY(-3px);
    border-color: #106eea;
    box-shadow: 0 10px 20px rgba(16, 110, 234, 0.1);
}

.domain-ext { 
    font-size: 1.2rem; 
    font-weight: 800; 
    color: #222;
}

.domain-price { 
    font-size: 0.9rem; 
    color: #106eea; /* Harga berwarna Biru */
    font-weight: 600;
    background: #eef5ff; /* Background harga biru muda */
    padding: 4px 10px;
    border-radius: 50px;
}

/* Tombol Lihat Semua (Link Sederhana) */
.btn-view-all {
    display: inline-block;
    margin-top: 40px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #ddd;
    padding-bottom: 2px;
    transition: 0.3s;
}
.btn-view-all:hover { color: #106eea; border-color: #106eea; }

/*--------------------------------------------------------------
# Other Sections
--------------------------------------------------------------*/
section { padding: 60px 0; overflow: clip; }
.section-title { text-align: center; padding-bottom: 60px; }
.section-title h2 { font-size: 13px; letter-spacing: 1px; font-weight: 700; padding: 8px 20px; margin: 0; background: #e7f1fd; color: #106eea; display: inline-block; text-transform: uppercase; border-radius: 50px; }
.section-title p { margin: 10px 0 0 0; font-size: 32px; font-weight: 700; }
.section-title p .description-title { color: #106eea; }

/* Pricing Table (Clean) */
.pricing .pricing-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transisi sangat smooth */
    overflow: hidden;
}
.pricing .pricing-item:hover {
    transform: translateY(-12px); /* Terangkat lebih tinggi */
    border-color: rgba(16, 110, 234, 0.4);
    /* Bayangan biru lembut yang berpendar (Glow) */
    box-shadow: 0 20px 40px rgba(16, 110, 234, 0.15), 
                0 0 15px rgba(16, 110, 234, 0.05);
}
.pricing .pricing-item::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 110, 234, 0.05) 0%, transparent 100%);
    transition: 0.5s;
    z-index: -1;
}
.pricing .pricing-item:hover::before {
    top: 0; /* Cahaya turun menyinari kotak */
}
.pricing h3 { font-weight: 700; margin-bottom: 15px; font-size: 18px; color: #222; }
.pricing h4 { font-size: 36px; color: #106eea; font-weight: 700; margin-bottom: 20px; }
.pricing ul { padding: 15px 0; list-style: none; text-align: center; line-height: 2; margin-bottom: 20px; color: #555; }
.pricing .btn-buy { background: #fff; color: #106eea; border: 2px solid #106eea; display: inline-block; padding: 8px 35px; border-radius: 50px; transition: 0.3s; font-weight: 700; }
/* .pricing .btn-buy {
    transition: all 0.3s ease;
} */
.pricing .pricing-item:hover .btn-buy {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(16, 110, 234, 0.3);
}
.pricing .btn-buy:hover { background: #106eea; color: #fff; }
.pricing .featured { border: 2px solid #106eea; background: #f9fbff; } /* Background sedikit biru untuk featured */
.pricing .featured-badge { position: absolute; top: 15px; right: 15px; background: #106eea; color: #fff; font-size: 12px; font-weight: bold; padding: 3px 12px; border-radius: 50px; }

/* Perbaikan Rata Kiri Daftar Fitur Pricing */
.pricing ul {
    text-align: left !important; /* Paksa rata kiri */
    padding: 20px 0 20px 40px !important; /* Beri jarak dari tepi kiri */
    margin-bottom: 20px;
    display: inline-block; /* Agar container ul tetap di tengah tapi isinya rata kiri */
    width: 100%;
}

.pricing ul li {
    display: flex; /* Gunakan flexbox agar ikon dan teks sejajar sempurna */
    align-items: center;
    gap: 10px; /* Jarak antara ikon dan teks */
    margin-bottom: 8px;
    font-size: 14px;
}

.pricing ul li i {
    font-size: 16px;
    flex-shrink: 0; /* Ikon tidak akan mengecil jika teks panjang */
}

/* Warna khusus untuk item yang tidak tersedia (tanda silang) */
.pricing ul li.na {
    color: #ccc;
}

.pricing ul li.na i {
    color: #ff4d4d; /* Ikon silang tetap merah */
}

/* Contact & Footer */
.php-email-form .loading {
  display: none; /* Sembunyikan default */
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .sent-message {
  display: none; /* Sembunyikan default */
  color: #fff;
  background: #059652; /* Hijau sukses */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  border-radius: 4px;
}
.php-email-form .error-message {
  display: none; /* Sembunyikan default */
  color: #fff;
  background: #df1529; /* Merah error */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  border-radius: 4px;
}
.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
  display: block;
}
.contact .info-wrap { box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); padding: 30px; border-radius: 8px; }
.contact .php-email-form { box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); padding: 30px; border-radius: 8px; }
.navmenu .btn-client-area:hover { background-color: #106eea; }
.navmenu .btn-client-area {
    background: linear-gradient(45deg, var(--accent-color), #3b82f6) !important;
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
}
.footer { font-size: 14px; background: #fff; padding-bottom: 50px; }
.footer .footer-top { padding-top: 50px; border-top: 1px solid #eee; }
.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f0f0f0; color: #444; margin-right: 10px; transition: 0.3s; }
.footer .social-links a:hover { background: #106eea; color: #fff; }
.footer .copyright { padding-top: 25px; border-top: 1px solid #eee; }

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-container {
    position: fixed;
    top: 85px; /* Menyesuaikan posisi di bawah navbar kapsul */
    left: 50%;
    transform: translateX(-50%);
    width: 85%; /* Sedikit lebih kecil dari lebar navbar agar manis */
    max-width: 1100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 996;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #106eea, #3b82f6);
    border-radius: 10px;
}

/* --- BACK TO TOP KAPSUL --- */
.back-to-top-dmg {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    background: linear-gradient(45deg, #106eea, #3b82f6);
    width: 100px; /* Bentuk memanjang/kapsul */
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(16, 110, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.back-to-top-dmg i {
    margin-right: 8px;
    font-size: 18px;
}

.back-to-top-dmg.active {
    visibility: visible;
    opacity: 1;
}

.back-to-top-dmg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 110, 234, 0.5);
    color: #fff;
}

/* ============================================ */
/* --- MOBILE RESPONSIVE TWEAKS (Paling Bawah) --- */
/* ============================================ */

@media (max-width: 768px) {
    /* Kurangi padding atas agar tidak terlalu turun */
    #hero {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        min-height: auto !important; /* Tinggi otomatis */
    }

    /* Kecilkan Judul di HP */
    #hero h1 {
        font-size: 2.2rem !important; /* Ukuran pas untuk HP */
        margin-bottom: 15px;
    }

    /* Kecilkan Deskripsi */
    #hero p {
        font-size: 1rem !important;
        margin-bottom: 30px;
        line-height: 1.5;
        padding: 0 10px;
    }

    /* Sesuaikan Kotak Pencarian */
    .search-box-dmg {
        padding: 5px;
        margin-bottom: 30px;
        flex-direction: column; /* Input di atas, tombol di bawah */
        border-radius: 20px; /* Sudut lebih kecil */
        background: #fff;
    }
    
    .search-box-dmg .form-control {
        height: 50px;
        font-size: 1rem;
        padding-left: 20px;
        margin-bottom: 10px;
        text-align: center; /* Teks input di tengah */
    }

    .search-box-dmg .btn-search {
        padding: 12px 0;
        width: 100%; /* Tombol full width */
        font-size: 1rem;
    }

    /* Susun Chips Harga agar Rapi */
    .domain-price-grid {
        gap: 10px;
    }
    
    .domain-chip {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .domain-ext { font-size: 1rem; }
    .domain-price { font-size: 0.8rem; padding: 2px 8px; }
}

/* ============================================ */
/* --- Humberger --- */
/* ============================================ */

/* --- PERBAIKAN TOTAL MOBILE NAV --- */
/* --- TAMPILAN MOBILE FINAL (SOLUSI KLIK MACET) --- */
/* --- TAMPILAN MOBILE FINAL (DROPDOWN FIX) --- */
@media (max-width: 1199px) {

    /* 1. HEADER KAPSUL */
    .header {
        position: fixed !important; z-index: 10001 !important; 
        left: 0 !important; right: 0 !important; margin: 0 auto !important;
        width: 92% !important; top: 15px !important;
        transform: none !important; 
        backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
        border-radius: 50px !important;
        background: #ffffff !important; 
        padding: 10px 15px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* 2. OVERLAY TRANSPARAN */
    body.mobile-nav-active::before {
        content: ""; position: fixed; inset: 0;
        background: transparent !important; 
        backdrop-filter: none !important; z-index: 10000 !important;
    }

    /* 3. WADAH MENU */
    .navmenu ul {
        display: none; flex-direction: column !important;
        position: fixed !important;
        inset: 95px 20px auto 20px !important; 
        padding: 10px 0 !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
        z-index: 10001 !important;
        list-style: none; overflow-y: auto; max-height: 80vh;
        border: 1px solid #eee;
    }

    body.mobile-nav-active .navmenu ul {
        display: flex !important;
        animation: popUp 0.3s ease-out forwards;
    }

    /* 4. ITEM MENU UTAMA */
    .navmenu ul li { width: 100% !important; display: block !important; }

    .navmenu ul li a {
        display: flex !important; justify-content: space-between; align-items: center;
        color: #333 !important; font-size: 16px !important; font-weight: 600 !important;
        padding: 15px 25px !important; border-bottom: 1px solid #f9f9f9 !important;
        pointer-events: auto !important;
    }
    
    .navmenu ul li a:hover { color: #106eea !important; background: #f0f8ff !important; }

    /* 5. SUB-MENU LAYANAN (LOGIKA FINAL) */
    
    /* Default: SEMBUNYI TOTAL */
    .navmenu .dropdown ul {
        display: none !important; /* WAJIB HIDDEN */
        position: static !important; margin: 0 !important; padding: 0 !important;
        background: #f8fbff !important; box-shadow: none !important;
        border-radius: 0 !important; transform: none !important;
        
        /* Reset Visibilitas (Biar tidak bocor) */
        opacity: 0 !important; 
        visibility: hidden !important;
        transition: none !important;
    }

    /* MATIKAN HOVER EFFECT DESKTOP DI MOBILE */
    .navmenu .dropdown:hover > ul {
        display: none !important;
    }

    /* HANYA MUNCUL JIKA ADA CLASS 'active' (DARI JS) */
    .navmenu .dropdown.active > ul {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: slideDown 0.3s ease forwards;
    }

    /* Style Link Submenu */
    .navmenu .dropdown ul a {
        padding-left: 40px !important; font-size: 14px !important;
        color: #666 !important; font-weight: 500 !important;
        border-bottom: 1px solid #eee !important;
        justify-content: flex-start !important; 
    }

    /* 6. TOMBOL CLIENT AREA */
    .navmenu .btn-client-area {
        margin: 20px !important; text-align: center !important; justify-content: center !important;
        background: linear-gradient(45deg, #106eea, #3b82f6) !important;
        color: #fff !important; border-radius: 50px !important; width: auto !important;
        box-shadow: 0 4px 15px rgba(16, 110, 234, 0.3);
    }

    /* 7. HAMBURGER ICON */
    .mobile-nav-toggle {
        display: block !important; position: relative !important;
        color: #106eea !important; font-size: 32px !important;
        z-index: 10002 !important; margin-right: 5px; 
    }

    /* 8. BADGE HOT (MOBILE) */
    .navmenu .promo-link { justify-content: flex-start !important; gap: 10px !important; }
    .badge-hot {
        background: #ff4d4d !important; color: white !important;
        font-size: 10px !important; font-weight: 800 !important;
        padding: 3px 8px !important; border-radius: 50px !important;
        text-transform: uppercase !important; display: inline-block !important;
        line-height: 1 !important; position: relative; top: -1px; 
        animation: badgePulse 2s infinite;
    }

    /* ICON PANAH DROPDOWN */
    .navmenu .toggle-dropdown {
        font-size: 18px; color: #106eea;
        padding: 10px 15px; /* Area klik diperluas */
        cursor: pointer; transition: 0.3s;
        border-left: 1px solid #eee; 
        margin-left: 10px;
        pointer-events: auto !important; /* Pastikan bisa diklik */
    }
    
    /* Putar panah saat aktif */
    .navmenu .dropdown.active .toggle-dropdown { transform: rotate(180deg); }

    @keyframes popUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes badgePulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
}

/* ============================================ */
/* --- FEATURE BOXES (Value Proposition) --- */
/* ============================================ */
.features-section {
    padding: 80px 0;
    position: relative;
    background: #fff; /* Tetap putih bersih */
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px; /* Rounded modern */
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Efek Hover: Naik sedikit + Shadow Biru halus */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 110, 234, 0.08);
    border-color: #106eea;
}

@keyframes dmgFloating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Naik 10px */
    100% { transform: translateY(0px); }
}

/* Icon Style */
.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #eef5ff; /* Biru sangat muda */
    color: #106eea; /* Biru DMG */
    font-size: 32px;
    border-radius: 50%; /* Bulat */
    margin-bottom: 25px;
    transition: 0.3s;
    display: inline-block; /* Pastikan bisa menerima animasi transform */
    animation: dmgFloating 3s ease-in-out infinite; /* Melayang halus setiap 3 detik */
}

.col-lg-4:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.col-lg-4:nth-child(3) .feature-icon { animation-delay: 1s; }

.feature-box:hover .feature-icon {
    animation-play-state: paused; /* Berhenti melayang saat fokus */
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(16, 110, 234, 0.3);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.feature-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================ */
/* --- DUAL CTA (MIGRATION & SUPPORT) --- */
/* ============================================ */
.call-to-action {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #106eea 0%, #0b499d 100%);
    color: #fff;
    overflow: hidden;
}

/* Background Pattern */
.call-to-action::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

/* Kotak Kaca (Glassmorphism) */
.cta-box {
    background: rgba(255, 255, 255, 0.1); /* Transparan */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-box:hover {
    background: rgba(255, 255, 255, 0.2); /* Lebih terang saat hover */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-box h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    color: rgba(255,255,255,0.8);
}

/* Tombol Putih */
.cta-btn-white {
    background: #fff;
    color: #106eea;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}

.cta-btn-white:hover {
    background: #f1f1f1;
    color: #0b499d;
    transform: scale(1.05);
}

/* ============================================ */
/* --- TESTIMONIALS (CLEAN TEXT ONLY) --- */
/* ============================================ */
.testimonials {
    padding: 80px 0;
    background: #f9fbfd;
}

.testimonial-item {
    background: #fff;
    padding: 40px 30px;
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eff2f5;
    text-align: center;
    transition: 0.3s;
    height: 100%; /* Agar tinggi seragam */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 110, 234, 0.1);
    border-color: #106eea;
}

/* Ganti Foto dengan Icon Quote Besar */
.testimonial-item .quote-icon-large {
    font-size: 40px;
    color: #106eea; /* Biru DMG */
    margin-bottom: 20px;
    opacity: 0.3; /* Agak transparan biar elegan */
}

.testimonial-item p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-item .stars {
    color: #ffc107;
    margin-bottom: 10px;
}

.profile h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.profile h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-weight: 500;
}

/* ============================================ */
/* --- TECH STACK (LOGO GRID) --- */
/* ============================================ */
.clients {
    padding: 60px 0;
    background-color: #fff;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #f0f2f5;
}

.clients .client-logo:hover {
    border-color: #106eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: scale(1.05);
}

.clients img {
    max-width: 80%;
    max-height: 60px;
    transition: 0.3s;
    filter: grayscale(100%); /* Hitam Putih */
    opacity: 0.6;
}

.clients .client-logo:hover img {
    filter: none; /* Balik ke Warna Asli */
    opacity: 1;
}

/* ============================================ */
/* --- STEPS & PAYMENT LOGOS --- */
/* ============================================ */
.steps-section {
    padding: 80px 0;
    background: #f9fbfd; /* Abu muda */
}

.step-item {
    text-align: center;
    padding: 20px;
    position: relative;
    margin-bottom: 40px;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 36px;
    color: #106eea;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.step-item:hover .step-icon {
    background: #106eea;
    color: #fff;
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #ffc107;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    border: 3px solid #fff;
}

/* Garis putus-putus penghubung (Desktop only) */
@media (min-width: 992px) {
    .step-item::after {
        content: "";
        position: absolute;
        top: 65px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #e0e0e0;
        z-index: 1;
        border-top: 2px dashed #ccc;
    }
    .col-lg-4:last-child .step-item::after { display: none; }
}

/* --- PAYMENT LOGOS GRID --- */
.payment-grid {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.payment-logo-box {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.payment-logo-box:hover {
    transform: translateY(-3px);
    border-color: #106eea;
}

.payment-logo-box img {
    height: 30px; /* Ukuran seragam */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.payment-logo-box:hover img {
    filter: none;
    opacity: 1;
}

/* ============================================ */
/* --- STATS / COUNTERS SECTION --- */
/* ============================================ */
.stats-section {
    padding: 60px 0;
    background: #fff; /* Putih selang-seling */
}

.stats-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    border: 1px solid #f0f2f5;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.stats-item:hover {
    transform: translateY(-5px);
    border-color: #106eea;
    box-shadow: 0 10px 30px rgba(16, 110, 234, 0.1);
}

.stats-item i {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: #106eea; /* Biru DMG */
}

.stats-info span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-info p {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================ */
/* --- MODERN SPLIT CONTACT SECTION --- */
/* ============================================ */
.contact .container {
    /* Optional: Max-width constraint for better look */
    max-width: 1200px; 
}

/* Wrapper Utama (Shadow Box Besar) */
.contact-wrapper {
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden; /* Biar sudut tumpul gak kepotong */
    display: flex;
    flex-wrap: wrap;
}

/* Kolom Kiri: Form */
.contact-form-col {
    padding: 40px;
    background: #fff;
}

.contact .php-email-form input, 
.contact .php-email-form textarea {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
}

.contact .php-email-form input:focus, 
.contact .php-email-form textarea:focus {
    border-color: #106eea;
}

.contact .php-email-form button[type="submit"] {
    background: #106eea;
    border: 0;
    padding: 12px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #0d58ba;
}

/* Kolom Kanan: Info & Map */
.contact-info-col {
    padding: 40px;
    background: #f9fbfd; /* Abu sangat muda biar kontras dikit */
    border-left: 1px solid #eff2f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Item Info (Alamat, dll) */
.info-item-v {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item-v i {
    font-size: 24px;
    color: #106eea;
    background: #e7f5ff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item-v h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-item-v p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Map Kecil di dalam kolom info */
.mini-map {
    width: 100%;
    height: 470px; /* Ukuran pas, tidak kegedean */
    border: 0;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsif untuk Mobile */
@media (max-width: 991px) {
    .contact-info-col {
        border-left: none;
        border-top: 1px solid #eff2f5;
    }
}

/* ============================================ */
/* --- PREMIUM DARK FOOTER (FINAL FIXED) --- */
/* ============================================ */
#footer {
    background: #0e1d34; /* Dark Navy Blue */
    color: #fff;
    font-size: 14px;
    padding: 60px 0 0 0;
}

#footer .footer-top {
    padding-bottom: 30px;
}

/* --- BAGIAN INI YANG DIPERBAIKI (BRAND NAME H3) --- */
#footer .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff !important; /* WAJIB PUTIH */
    font-family: var(--heading-font, sans-serif);
}

/* Judul Kolom Lain (Tautan Penting, Layanan, dll) */
#footer h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Garis kecil di bawah judul kolom */
#footer h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #106eea; /* Biru DMG */
    bottom: 0;
    left: 0;
}

/* Teks Alamat & Kontak */
#footer .footer-contact p {
    line-height: 26px;
    color: #a4b3ce; /* Abu kebiruan */
    margin-bottom: 0;
}

#footer .footer-contact p strong {
    color: #fff; /* Label Email jadi putih */
}

/* List Link (Tautan Penting & Layanan) */
#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links li i {
    padding-right: 10px;
    color: #106eea;
    font-size: 12px;
}

#footer .footer-links a {
    color: #a4b3ce;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

#footer .footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Social Media Icons */
#footer .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    margin-right: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    text-decoration: none;
}

#footer .social-links a:hover {
    background: #106eea;
    transform: translateY(-3px);
}

/* Copyright Bar */
#footer .footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: #0b1526;
}

#footer .copyright {
    color: #fff;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #a4b3ce;
}

/* ============================================ */
/* --- 1. STICKY NAVBAR STYLING --- */
/* ============================================ */
/* Saat discroll ke bawah, header berubah jadi putih */
.header.sticked {
    top: 15px !important; /* Menjaga jarak melayang dari atas layar */
    background-color: rgba(255, 255, 255, 0.75) !important; /* Efek Transparan */
    backdrop-filter: blur(15px); /* Efek Kaca Blur */
    -webkit-backdrop-filter: blur(15px); /* Support Safari/iOS */
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 !important; /* SOLUSI: Memaksa padding tetap 0 agar tidak melebar */
}

/* Pastikan logo dan teks menu tetap kelihatan saat background putih */
.header.sticked .logo h1 {
    color: #0e1d34; /* Warna gelap */
}
.header.sticked .navmenu a {
    color: #0e1d34;
}
.header.sticked .navmenu a:hover, 
.header.sticked .navmenu .active {
    color: #106eea;
}
.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    /* Hapus atau set padding ke 0 jika header sudah punya height */
    padding: 0; 
}

/* ============================================ */
/* --- FOOTER TRUST BADGES (FIXED SIZE) --- */
/* ============================================ */
.footer-badges {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 30px;
    text-align: center;
}

.footer-badges h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Jarak antar logo */
    flex-wrap: wrap;
}

.badge-item img {
    height: 30px !important; /* Ukuran diperkecil dikit agar elegan */
    width: auto !important;
    filter: grayscale(100%) opacity(0.6);
    transition: 0.3s;
    display: block;
}

.badge-item img:hover {
    filter: none;
    opacity: 1;
}

/* --- 4. REVEAL ON SCROLL ANIMATION --- */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px); /* Muncul dari bawah ke atas */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- TERMS OF SERVICE PREMIUM DESIGN --- */
.terms-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.terms-status-chip {
    display: inline-block;
    background: #eef5ff;
    color: var(--accent-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 110, 234, 0.1);
}

.terms-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.terms-article {
    margin-bottom: 45px;
}

.terms-article h3 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pasal-badge {
    background: var(--accent-color);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.pasal-badge.badge-danger { background: #ff4d4d; }

.alert-article {
    background: rgba(255, 77, 77, 0.03);
    border-left: 4px solid #ff4d4d;
    padding: 30px;
    border-radius: 15px;
}

.dmg-list {
    padding-left: 20px;
    margin-top: 15px;
}

.dmg-list li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.dmg-list li::before {
    content: "\F26E"; /* Bootstrap icon check */
    font-family: "bootstrap-icons";
    color: var(--accent-color);
    position: absolute;
    left: -25px;
}

.contact-box-legal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

