/* 1. IMPORT FONT & RESET */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
    --primary-orange: #ff6600;
    --primary-orange-hover: #e65c00;
    --dark-slate: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* 2. GLOBAL BRANDING (Non-Body Content) */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* 3. HEADER & NAVIGATION SYSTEM */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link.active {
    color: var(--primary-orange);
}

/* Tombol Utama di Navigasi */
.btn-nav-client {
    background-color: var(--dark-slate);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav-client:hover {
    background-color: var(--primary-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* 4. MOBILE MENU SYSTEM (Hidden by default) */
#mobile-menu-list {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    z-index: 999;
}

#mobile-menu-list.hidden {
    display: none;
}

/* 5. FOOTER GLOBAL SYSTEM */
footer {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 64px 0 32px 0;
}

.footer-title {
    font-weight: 900;
    font-size: 18px;
    color: var(--dark-slate);
    margin-bottom: 24px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.copyright-bar {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}
/* =========================================
   FOOTER GLOBAL STYLES (FIXED ALIGNMENT)
   ========================================= */

.footer-global {
    background-color: #f8fafc; /* Abu-abu sangat muda */
    border-top: 1px solid #e2e8f0;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

/* Container ini harus sama lebarnya dengan container di Header */
.footer-container {
    max-width: 1280px; 
    margin: 0 auto;
    padding: 0 2rem; /* Standar px-8 di Tailwind */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
}

@media (min-width: 1024px) {
    .footer-grid {
        /* Kolom 1 Branding, Kolom 2 & 3 Navigasi, Kolom 4 Kontak */
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

/* Kolom 1: Branding */
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.05em;
    display: block;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-logo .text-orange {
    color: #ff6600;
}

.footer-tagline {
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.footer-features {
    list-style: none;
    padding: 0;
}

.footer-features li {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-features .check {
    color: #ff6600;
    font-weight: bold;
}

/* Kolom 2 & 3: Navigasi */
.footer-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ff6600;
}

/* Kolom 4: Kontak */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    flex-shrink: 0;
}

.contact-text .label {
    font-size: 13px;
    font-weight: 900;
    color: #0f172a;
    display: block;
}

.contact-text .value {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}