/* ==========================================================================
   GILANG BARBER - REWRITE 100% MATCH PROTOTYPE (ISOLATED CLASSES)
========================================================================== */

:root {
    --bg-dark: #0A0A0A;
    --accent-gold: #C5A059;
    --text-primary: #F5F5F5;
    --text-secondary: #A3A3A3;
    --border-color: #2A2A2A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease-in-out;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL RESET 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-primary); font-family: var(--font-body); }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* PUSH CONTENT DOWN SO IT DOESNT HIDE BEHIND HEADER */
.gb-site-main { padding-top: 130px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GB-CONTAINER SYSTEM (ISOLATED FROM ELEMENTOR)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gb-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important; 
    /* Ditingkatkan dari 20px menjadi 30px untuk lebih lega di mobile */
    padding: 0 30px !important; 
}

.gb-flex-between {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GB-HEADER STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.gb-top-bar {
    background-color: #000000;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.gb-top-left { display: none; }

.gb-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gb-social-icons svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.gb-social-icons a:hover svg { color: var(--accent-gold); }

.gb-main-header { padding: 15px 0; }

.gb-logo-img { height: 35px; width: auto; display: block; }

.gb-nav { display: none; } /* Hidden on mobile */
.nav-list { display: flex; flex-direction: column; gap: 15px; }
.nav-link { color: var(--text-primary); font-weight: 500; font-size: 0.95rem; }
.nav-link:hover { color: var(--accent-gold); }

.gb-action { display: flex; align-items: center; gap: 15px; }

.gb-btn-wa {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 8px;
    transition: var(--transition-fast);
}

.gb-btn-wa:hover { background-color: var(--accent-gold); color: #000000; }

.mobile-menu-toggle {
    background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 5px; display: block;
}

/* MOBILE MENU ACTIVE STATE */
.gb-nav.active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GB-FOOTER STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gb-site-footer {
    background-color: #050505;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.gb-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gb-footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.gb-footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

.gb-footer-contact h4, .gb-footer-social h4 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.gb-footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.gb-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gb-social-link {
    color: var(--text-secondary);
    display: inline-block;
}

.gb-social-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.gb-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

.gb-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE LAYOUT (TABLET & DESKTOP)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 768px) {
    /* Header Container */
    .gb-container { padding: 0 30px !important; }
    .gb-top-left { display: block; }
    
    /* Footer Grid: 2 Columns */
    .gb-footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
    /* Header Nav */
    .gb-nav { display: block; }
    .nav-list { flex-direction: row; gap: 30px; }
    .mobile-menu-toggle { display: none; }
    
    /* Footer Grid: 3 Columns (Brand: 2 fraction, Contact: 1, Social: 1) */
    .gb-footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FIX: SEMBUNYIKAN HAMBURGER DI MOBILE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
    .gb-hide-mobile {
        display: none !important;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FIX: PENCEGAH WIDGET TENGGELAM OLEH ELEMENTOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.test-hero-section,
.gb-about-section,
.gb-services-section,
.gb-why-section,
.gb-gallery-section,
.gb-steps-section,
.gb-testimonials-section,
.gb-cta-section {
    position: relative !important;
    z-index: 10 !important;
}