/* Tambahkan import ini di paling atas file CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Plus+Jakarta+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');

:root {
    /* Warna Utama dari Logo Royal Borneo */
    --primary-blue: #4178B8; /* Biru ring pesawat & teks Tour Travel */
    --dark-blue: #1A2844;    /* Biru pekat untuk judul biar elegan */
    
    /* Warna Aksen (Kuning Emas) */
    --accent-gold: #E8A331;  /* Kuning emas logo RB untuk tombol & highlight */
    
    /* Background & Glass (Tema Terang) */
    --bg-white: #ffffff;     /* Putih bersih utama */
    --bg-soft: #fafafa;      /* Abu-abu super tipis untuk section alternate */
    --glass: rgba(65, 120, 184, 0.08);  /* Glass effect tipis warna biru */
    --glass-border: rgba(65, 120, 184, 0.2);
    
    /* Typography */
    --text-heading: #1A2844; /* Judul pake biru gelap */
    --text-main: #64748b;    /* Paragraf pake abu-abu kalem (slate) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html { 
    scroll-behavior: smooth;
    overflow-x: hidden; 
}

/* Background web sekarang Putih, teksnya gelap */
body {
    background-color: var(--bg-white);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Selection: Pas teks di-block warnanya jadi Emas */
::selection {
    background: var(--accent-gold);
    color: var(--bg-white);
}

/* --- HERO SECTION TYPOGRAPHY --- */
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 25px;
    
    /* Warna teks jadi biru gelap biar kebaca di background putih */
    color: var(--text-heading); 
    
    /* Shadow tipis warna biru muda biar ada efek 3D dikit */
    text-shadow: 3px 3px 0px rgba(65, 120, 184, 0.15); 
}

.hero-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 600px;
    color: var(--text-main); /* Mengikuti warna paragraf default */
}

/* --- NAVIGASI --- */
header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1300px;
    z-index: 1000;
    transition: top 0.4s ease-in-out;
}

nav {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Styling untuk Logo Container */
.logo-container.jbj-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%; /* Sesuai tinggi navbar */
    padding: 0 10px;
}

/* Styling untuk SVG Logo agar responsif */
.main-logo-svg {
    height: 40px; /* Atur tinggi logo sesuai selera navbar lo */
    width: auto; /* Biar aspect ratio-nya nggak hancur */
    max-width: 250px; /* Batasi lebar maksimal */
    transition: transform 0.3s ease;
}

/* Efek Hover minimalis */
.logo-container.jbj-logo-link:hover .main-logo-svg {
    transform: scale(1.05); /* Sedikit membesar pas di-hover */
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #1A2844;
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 1;
    transition: 0.3s;
}

.nav-links a:hover { 
    color: var(--accent-gold); 
}

.btn-booking {
    background: transparent;
    color: #0d5c56;
    border: 2px solid #0d5c56;
    text-decoration: none;
    padding: 8px 20px; /* Padding dikurangi 2px untuk kompensasi ketebalan border */
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-booking:hover {
    background: #0d5c56;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- ANIMASI NAVBAR NGUMPET --- */
header.nav-hidden {
    top: -100px !important; 
}

/* --- SETTING HAMBURGER & DISPLAY --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; /* Biar ikon selalu di atas menu */
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-only { display: none; }

/* === MODE MOBILE (HP) === */
@media (max-width: 768px) {
    /* 1. BIKIN HEADER NEMPEL TEMBOK ATAS & KANAN KIRI */
    header {
        top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* 2. HILANGIN LENGKUNGAN BORDER BIAR RATA */
    nav {
        border-radius: 0 !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        justify-content: center; /* Kunci Logo di Tengah */
        position: relative;
        padding: 15px 20px;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: block; margin-top: 20px; }

    /* Posisi Hamburger di Kiri */
    .hamburger {
        display: flex;
        position: absolute;
        left: 20px;
    }

    /* 3. MENU SLIDE SEKARANG BENERAN FULL MENTOK */
    .nav-links {
        position: fixed;
        top: 0 !important; /* Pastiin mentok atas */
        left: -100%; 
        width: 75%;
        height: 100vh !important; /* Pastiin mentok bawah */
        margin: 0 !important; /* Hilangin semua margin bawaan */
        padding: 0 !important;
        background: #1b263b; /* FIXED: Biru Navy (Bukan ijo lagi) */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: none; 
        transition: 0.4s ease-in-out;
        box-shadow: 15px 0 30px rgba(0,0,0,0.6);
        z-index: 1000;
    }

    .nav-links.slide-active {
        left: 0 !important; /* Menu Masuk Mulus */
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff; /* Pastiin teks tetep putih terang */
    }

    /* Styling Tombol Booking di Menu HP */
    .btn-booking-mobile {
        background: #d4a017; /* FIXED: Ganti jadi Emas biar mewah */
        color: white;
        padding: 15px 30px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Animasi Hamburger jadi Silang (X) */
    .hamburger.toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}




/* =========================================
   HEADER KATALOG - BACKGROUND BLUR VERSION
   ========================================= */
.katalog-header {
    position: relative;
    text-align: center;
    height: 60vh;
    min-height: 400px;
    color: #ffffff; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Slider */
.katalog-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
}

.katalog-slide-wrapper {
    display: flex;
    width: 300%; /* 3 gambar = 300% ukuran layar */
    height: 100%;
}

.katalog-slide {
    width: 33.3333%; /* Tiap gambar ngambil 1/3 dari total wrapper */
    height: 100%;
    background-size: cover;
    background-position: center;
}


/* =========================================
   KONTEN HEADER (JUDUL & TEKS FILTER)
   ========================================= */
.katalog-content-header {
    text-align: center;
    margin-bottom: 90px; /* Jarak dilebarin biar tombol filter gak nempel sama kartu paket */
    padding: 0 20px;
}

.katalog-content-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--dark-blue); 
    text-transform: uppercase;
    margin-bottom: 0; /* Margin dipindah ke title-with-underline biar garis gak nabrak p */
    letter-spacing: -1px;
}

.katalog-content-header .highlight-gold {
    color: var(--accent-gold);
}

.katalog-content-header p {
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- WRAPPER & CORETAN KUAS EMAS LUSUH --- */
.title-with-underline {
    position: relative;
    display: inline-block;
    z-index: 2;
    margin-bottom: 110px; /* Jarak dilebarin lagi biar makin lega */
}

.brush-underline {
    position: absolute;
    bottom: -28px; /* Sesuaikan posisi garis di bawah teks */
    left: 0;
    width: 100%;
    height: 35px; /* Proporsi tinggi SVG */
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}

.brush-path {
    stroke: #b58933; /* Warna Emas Lusuh (Worn Gold) */
    stroke-linecap: round;
    fill: none;
}

/* Variasi helai kuas biar teksturnya lusuh dan gak rata */
.bristle-1 { stroke-width: 6; opacity: 0.9; stroke-dasharray: 320; stroke-dashoffset: 320; }
.bristle-2 { stroke-width: 4; opacity: 0.6; stroke-dasharray: 310; stroke-dashoffset: 310; }
.bristle-3 { stroke-width: 3; opacity: 0.7; stroke-dasharray: 300; stroke-dashoffset: 300; }
.bristle-4 { stroke-width: 2; opacity: 0.4; stroke-dasharray: 290; stroke-dashoffset: 290; }

/* Trigger animasi otomatis pas muncul di layar dari AOS di pembungkusnya */
.katalog-content-header.aos-animate .bristle-1 { animation: drawBrush 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s; }
.katalog-content-header.aos-animate .bristle-2 { animation: drawBrush 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.35s; }
.katalog-content-header.aos-animate .bristle-3 { animation: drawBrush 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s; }
.katalog-content-header.aos-animate .bristle-4 { animation: drawBrush 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.45s; }

@keyframes drawBrush {
    to { stroke-dashoffset: 0; }
}

/* =========================================
   GRUP TOMBOL FILTER (THUMBNAIL STYLE)
   ========================================= */
.filter-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background-color: #ffffff;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    border-radius: 50px; /* Bentuk lonjong / pill */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Ukuran Ikon */
.filter-btn .icon {
    font-size: 1.3rem;
}

/* Efek Klik / Active / Hover */
.filter-btn:hover, .filter-btn.active {
    transform: translateY(-3px);
    background-color: var(--dark-blue);
    color: #ffffff;
    border-color: var(--dark-blue);
    box-shadow: 0 10px 20px rgba(26, 40, 68, 0.15);
}



/* =========================================
   KARTU PAKET (FOTO BULAT NYEMBUL)
   ========================================= */
.katalog-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bg-soft, #f8f9fa); 
}

.katalog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Ini kunci biar kalo kartunya cuma 1 (kaya Thailand), otomatis pas di tengah! */
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; 
    padding-top: 60px; 
}

.paket-card {
    width: 330px; /* Kunci lebar kartu biar pas */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    padding: 0 30px 30px; 
    margin-top: 65px; /* Dorong kotak ke bawah ngasih tempat buat foto bulat */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.paket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- FOTO BULAT NYEMBUL --- */
.card-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff; 
    padding: 6px; /* Ketebalan frame putih */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: -65px auto 20px; /* Tarik 50% ke atas keluar dari batas kotak */
    position: relative;
    z-index: 2;
}

.paket-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* --- BADGE (Best Seller / Promo) --- */
.badge {
    position: absolute;
    top: 0;
    right: -15px;
    background: var(--accent-gold, #f39c12);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 3;
}

/* --- ISI KARTU --- */
.card-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.paket-kategori {
    color: var(--primary-blue, #007bff);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.card-content h3 {
    color: var(--dark-blue, #0b1c3d);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.4;
}

/* --- LIST FASILITAS --- */
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.features li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading, #444);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features li i {
    color: var(--accent-gold, #f39c12); 
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* --- HARGA & TOMBOL --- */
.paket-harga {
    color: var(--dark-blue, #0b1c3d);
    font-size: 1.3rem;
    font-weight: 900;
    border-top: 1px dashed #e0e0e0;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.btn-detail {
    background: var(--dark-blue, #0b1c3d);
    color: #fff;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
    display: block; /* Biar tombolnya full rapi di bawah */
}

.btn-detail:hover {
    background: var(--accent-gold, #f39c12);
    color: #fff;
}

/* =========================================
   RESPONSIVE MOBILE
   ========================================= */
@media (max-width: 768px) {
    .katalog-header {
        height: auto;
        min-height: 0; /* Mematikan min-height 400px dari bawaan desktop */
        aspect-ratio: 16 / 9; /* Maksa rasio gambar selalu 16:9 mirip di laptop */
    }

    .katalog-grid {
        display: grid;
        justify-content: flex-start; /* FIX: Paksa grid mulai dari kiri biar kartu pertama nggak terpotong di luar layar */
        grid-template-rows: auto; /* Bikin 1 baris menyamping aja biar rapi dan gampang diswipe */
        grid-auto-flow: column; /* Kartu mengalir bikin kolom baru ke samping otomatis */
        grid-auto-columns: 82vw; /* Tiap kolom lebarnya 82% dari layar HP */
        overflow-x: auto;
        gap: 20px; /* Cukup jarak horizontal, vertikal nggak butuh karena udah 1 baris */
        padding: 70px 25px 40px 45px; /* Padding kiri ditambahin jadi 45px biar ada jarak dari tembok kiri */
        margin: 0 -25px; 
        scroll-snap-type: x mandatory;
        scroll-padding-left: 45px; /* Ngeremnya ikut digeser biar pas sama padding kiri yang baru */
        scrollbar-width: none; 
    }
    .katalog-grid::-webkit-scrollbar {
        display: none; 
    }
    .title-with-underline {
        margin-bottom: 130px; /* Jarak dilebarin ekstra lagi buat garis pas di layar HP */
    }
    .brush-underline {
        bottom: -35px; /* Turunin posisi garis dikit pas di layar sempit */
    }

    .katalog-content-header p {
        font-size: 0.95rem; /* Dikecilin biar pas dan nyaman dibaca di layar HP */
        line-height: 1.5;
    }

    /* Bikin tombol filter sejajar dan bisa di-scroll ke samping di HP */
    .filter-group {
        flex-wrap: nowrap;
        justify-content: flex-start; /* Biar mulainya rata kiri pas di-scroll */
        overflow-x: auto;
        padding: 20px 25px 30px 25px; /* Padding atas (20px) dan bawah (30px) dilebarin banget biar aman */
        margin: 40px -20px 0 -20px; /* Margin atas dibikin 40px biar jarak ke teks lega, kiri-kanan tetep nembus */
        scrollbar-width: none; /* Sembunyiin scrollbar di Firefox */
    }
    .filter-group::-webkit-scrollbar {
        display: none; /* Sembunyiin scrollbar di Chrome & Safari */
    }
    .filter-btn {
        flex-shrink: 0; /* Biar ukuran tombolnya gak gepeng kepaksa mengecil */
        white-space: nowrap; /* Biar teks di dalem tombol gak pecah ke bawah */
    }

    /* Samain ukuran dan efek kartu kaya di halaman utama (Mobile) */
    .paket-card {
        width: 100%; 
        max-width: 310px; /* Disesuaikan agar proporsional di layar HP */
        margin: 0 auto; /* Tengahin kartu di dalam kolomnya & ilangin margin-top */
        scroll-snap-align: start; /* Ubah ke start biar kartu pertama ada di kiri layar */
        
        filter: blur(4px);
        opacity: 0.5;
        transform: scale(0.9);
        transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .paket-card.center-focus {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }

    .card-img {
        width: 110px;
        height: 110px;
        margin: -55px auto 15px;
    }
    
    .paket-harga {
        text-align: center;
    }
}



/* --- FOOTER LOGO TEXT --- */
.footer-logo-text {
    font-family: 'Rowdies', sans-serif;
    font-size: clamp(4rem, 15vw, 15rem); /* Teks Raksasa! Mengambil proporsi besar dari layar */
    font-weight: 900;
    text-align: center;
    color: #fafafa;
    letter-spacing: 5px; /* Spasi direnggangkan biar seimbang dengan ukuran besar */
    margin-bottom: 40px; /* Jarak ke bawah dilegakan */
    line-height: 1; /* Biar tinggi teks gak kelebihan */
    background: transparent !important; /* Paksa hilangin kotak warna (kuning/lainnya) di belakang logo */
}

/* --- FOOTER BAWAH (AREA GELAP: TAGLINE, SOSMED, MENU, CR) --- */

/* 1. Bungkus paling luar kita paksa PUTIH biar nutupin background body yang ijo */
.bottom-footer {
    background-color: #ffffff !important; /* Latar dasar dibikin putih */
    width: 100%;
    padding: 120px 20px 60px !important; /* Padding digedein biar kotaknya muat buat teks raksasa */
    margin-bottom: 0 !important; 
    display: flex;
    justify-content: center;
    position: relative; /* WAJIB ada biar layernya gak kabur */
    z-index: 1; 
}

/* 2. Ini triknya! Kita bikin layer ijo gelap melengkung di dalemnya */
.bottom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-blue); /* Warna ijo super gelap */
    
    /* Lengkungan ditaruh di layer ini */
    border-top-left-radius: 80px !important;
    border-top-right-radius: 80px !important;
    
    z-index: -1; /* Posisinya kita dorong ke paling belakang (di bawah teks) */
}

/* 3. Area container biarin transparan aja */
.bottom-footer .container {
    background-color: transparent !important; 
    width: 100%;
    max-width: 1200px !important; 
    padding: 0 !important; 
    margin: 0 auto;
    border-radius: 0 !important; 
    box-shadow: none !important; 
}

/* Responsif buat di HP */
@media (max-width: 768px) {
    .bottom-footer {
        padding: 80px 20px 40px !important; /* Kotak di HP juga dilebarin */
    }
    .bottom-footer::before {
        border-top-left-radius: 40px !important; /* Lengkungan dikecilin dikit di HP */
        border-top-right-radius: 40px !important;
    }
}

/* Tagline di Area Ijo (Warnanya dibikin putih transparan) */
.footer-tagline-ijo {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8); 
    line-height: 1.6;
    margin: 0 auto 25px;
    font-size: 1rem;
}

/* =========================================
    FOOTER AREA - ROYAL BORNEO (TRUE NAVY)
   ========================================= */

/* Latar Belakang Utama Footer - FIXED NAVY */
.bottom-footer {
    padding: 60px 0 30px;
    color: #ffffff;
}

/* Sosmed Area */
.footer-social-ijo {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
}

.footer-social-ijo a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05); 
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-ijo a:hover {
    background: #d4a017; /* Emas Royal */
    color: #ffffff;
    transform: translateY(-5px);
    border-color: #d4a017;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

/* Navigasi Link */
.footer-nav-rapi {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-rapi a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-nav-rapi a:hover {
    color: #d4a017; /* Hover Emas */
}

/* Garis Pembatas Tipis */
.footer-divider-rapi {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin: 0 auto 25px;
}

/* Copyright Area */
.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-copyright .highlight-orange {
    color: #d4a017; /* Brand jadi Emas */
    font-weight: 800;
}

.dev-signature {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .footer-nav-rapi {
        gap: 15px;
    }
    .footer-nav-rapi a {
        font-size: 0.8rem;
    }
    .bottom-footer {
        padding: 40px 0 20px;
    }
}