/* ============================================
   GLOBAL CSS — Shared across all pages
   Base reset, fonts, navbar, contact, footer,
   reveal animation, dan responsive navbar.
   ============================================ */

/* ---- Reset & Base ---- */
* {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-weight: 400;
    line-height: 1.6;
    background: #111;
    color: #1a1a1a;
}
h1, h2, h3, h4, .logo, .btn, .nav-cta {
    font-weight: 700;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR (transparan)
   ============================================ */
.navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 18px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.navbar.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 18px 0;
}
.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo img {
    height: 32px;
    width: auto;
    margin-right: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    transition: 0.3s ease;
}
.nav-links a:hover {
    color: #ddd;
}
.nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    background: #FFE500;
    color: #1a1a1a !important;
    font-weight: 700;
    transition: 0.3s ease;
}
.nav-cta:hover {
    background: #e6cf00;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s ease;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    padding: 80px 0;
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        url('../images/Asset/asset-13.webp') center/cover no-repeat;
    color: #fff;
}
.contact-content {
    max-width: 700px;
}
.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFE500;
    margin-bottom: 16px;
}
.contact-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}
.customer-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFE500;
    margin-bottom: 24px;
}
#contact .contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
}
#contact .contact-details .detail {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
#contact .contact-details .detail:last-child {
    align-items: flex-start;
}
#contact .contact-details .detail i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}
#contact .contact-details .detail .text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0a0a0a;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
footer .footer-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
footer .footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: 0.3s ease;
    text-decoration: none;
}
footer .footer-icon:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}
footer .footer-right .copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ============================================
   REVEAL ANIMATION (Shared)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — Navbar & Footer (Shared)
   ============================================ */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: 0.3s ease;
        padding: 40px;
        align-items: center;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 1.2rem;
        color: #fff;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 600px) {
    footer .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
