:root {
    --yellow: #f4c430; /* kuning katalog */
    --dark: #0b1c2d; /* biru tua / hitam katalog */
    --dark-2: #10263f;
    --gray: #f5f5f5;
    --text: #1f2933;
}
/* ================= LUXURY SIGNATURE SCROLLBAR ================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 18px;                /* BESAR & MEWAH */
}

::-webkit-scrollbar-track {
    background: transparent;    /* bersih & mahal */
}

/* HILANGKAN PANAH ATAS & BAWAH */
::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

/* THUMB */
::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            #ffb07a 0%,
            #ff8a50 45%,
            #ff6b3d 100%
        );
    border-radius: 24px;
    border: 5px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.6),
        inset 0 -1px 2px rgba(0,0,0,0.15),
        0 10px 22px rgba(0,0,0,0.18);
}

/* HOVER = LUXURY RESPONSE */
::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(
            180deg,
            #f4c430,
            #ff7a3c
        );
}

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #ff7a3c transparent;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #ffffff;
    color: var(--text);
}

a {
    text-decoration: none;
}

/* ================= HEADER ================= */
.header-unique {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* container utama — RAPAT seperti foto */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 4px; /* ⬅ INI KUNCI: kiri-kanan tipis */

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
    position: relative;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.4px;
    color: #ff6b4a;
    text-decoration: none;
    white-space: nowrap;
}

/* tooltip nama panjang */
.logo-tooltip {
    position: absolute;
    left: 0;
    top: 125%;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.logo-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 14px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #111827 transparent;
}

.logo:hover .logo-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ================= DESKTOP NAV ================= */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    position: relative;
    transition: 0.25s ease;
}

.nav-desktop a:hover {
    color: #ff6b4a;
}

/* active page */
.nav-desktop a.active {
    color: #ff6b4a;
    font-weight: 800;
}

.nav-desktop a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #ff6b4a;
    border-radius: 2px;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    width: 30px;
    cursor: pointer;
    display: none;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #111827;
    margin: 6px 0;
    transition: 0.35s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE MENU ================= */
.nav-sandwich {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0b1c2d, #081425);
    padding: 96px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: 0.4s ease;
    z-index: 999;
}

.nav-sandwich.active {
    right: 0;
}

.nav-sandwich a {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-sandwich .nav-cta {
    margin-top: 18px;
    padding: 14px 26px;
    border-radius: 30px;
    background: #ff6b4a;
    color: #000;
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-inner {
        padding: 10px 14px; /* mobile boleh lebih longgar */
    }
}

@media (min-width: 992px) {
    .menu-toggle,
    .nav-sandwich {
        display: none;
    }
}

/* ================= BRAND TEXT SWAP (FIX) ================= */
.brand-expand {
    position: relative;
    display: inline-flex;
    align-items: center;

    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.4px;
    color: #ff6b4a;
    text-decoration: none;
    white-space: nowrap;

    /* ⬅ PENTING: JANGAN hidden */
    overflow: visible;
}

/* teks pendek */
.brand-short {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* teks panjang */
.brand-long {
    position: absolute;
    left: 0;
    top: 0;

    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    font-weight: 900;
    letter-spacing: 0.2px;
    color: #ff6b4a;
}

/* hover swap */
.brand-expand:hover .brand-short {
    opacity: 0;
    transform: translateX(-10px);
}

.brand-expand:hover .brand-long {
    opacity: 1;
    transform: translateX(0);
}


.menu-toggle {
    width: 32px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #ff6b4a; 
    margin: 6px 0;
    transition: 0.3s;
}

/* ================= FOOTER ================= */
.site-footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #cbd5e1;
    font-size: 14px;
}

/* CTA SECTION */
.footer-cta {
    background: linear-gradient(135deg, #ff6a3d, #ff8f50);
    text-align: center;
    padding: 60px 20px;
}

.footer-cta p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #ff6a3d;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* MAIN FOOTER */
.footer-container {
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    color: #ff6a3d;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* SOCIAL */
.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #ff6a3d;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 60px 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
