/* === VARIABLES & RESET === */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #6b7280;
    --secondary-dark: #374151;
    --secondary-light: #9ca3af;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --dark: #1f2937;
    --light: #f8fafc;
    --text: #374151;
    --text-light: #6b7280;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
   
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER & NAVIGATION === */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 50px; /* TINGGI MINIMAL */
    display: flex;
    align-items: center;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important; /* HAPUS SEMUA PADDING */
    width: 100%;
    position: relative;
    height: 50px; /* SAMA DENGAN HEADER */
    margin: 0; /* HAPUS MARGIN */
}


/* === LOGO - FULLY CUSTOMIZABLE === */
.nav-brand {
    flex-shrink: 0;
    margin-right: auto;
    
    /* === KONTROL POSISI LOGO === */
    /* Untuk geser ke KIRI: gunakan nilai NEGATIF */
    /* Untuk geser ke KANAN: gunakan nilai POSITIF */
    transform: translateX(var(--logo-position, -220px));
    
    /* === KONTROL UKURAN LOGO === */
    --logo-width: 180px;  /* Default width */
    --logo-height: 50px;  /* Default height */
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand .logo img {
    width: var(--logo-width, 180px);
    height: var(--logo-height, 50px);
    object-fit: contain;
    transition: all 0.3s ease;
}

/* PRESET UKURAN LOGO - PILIH SALAH SATU */
.logo-small {
    --logo-width: 120px;
    --logo-height: 35px;
}

.logo-medium {
    --logo-width: 160px;
    --logo-height: 45px;
}

.logo-large {
    --logo-width: 200px;
    --logo-height: 55px;
}

/* PRESET POSISI LOGO - PILIH SALAH SATU */
.logo-left {
    --logo-position: -15px;
}

.logo-center-left {
    --logo-position: -5px;
}

.logo-center {
    --logo-position: 0px;
}

.logo-center-right {
    --logo-position: 5px;
}

.logo-right {
    --logo-position: 15px;
}

/* Main Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1000;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--primary);
    color: white;
}

.nav-link i {
    font-size: 0.9rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(231, 227, 227);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
    border-left-color: var(--primary);
}

.dropdown-menu li a i {
    width: 16px;
    text-align: center;
}

/* Tracking Button Special Style */
.track-btn {
    background:#f30505;
    color: white !important;
    font-weight: 600;
    margin-right: 10px;
}

.track-btn:hover {
    background:#2505f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

/* CTA Buttons */
.nav-cta {
    flex-shrink: 0;
    margin-left: auto;
}

.book-now-btn {
    background:#f29b05;
    color: white !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.book-now-btn:hover {
    background:#44e413;
    transform: translateY(-2px);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === NEWS TICKER / RUNNING TEXT === */
.news-ticker {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    font-size: 0.9rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    z-index: 999;
    margin-top: 0px !important; /* SESUAIKAN DENGAN HEADER */
}

.ticker-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 0 20px 0px 20px; /* BOTTOM: 5px (dikurangi) */
    height: 100%;
    width: 100%;
    
    
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 6px;
    border-radius: 20px;
    white-space: nowrap;
    margin-right: 20px;
    height: 30px;
    align-items: center;
    flex-shrink: 0;
    
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    
}

.ticker-item {
    position: absolute;
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0;
    animation: ticker 40s linear infinite;
    line-height: 1.4;
    padding: 2px 0;
    font-weight: 500;
}

.ticker-item:nth-child(1) { animation-delay: 0s; }
.ticker-item:nth-child(2) { animation-delay: 8s; }
.ticker-item:nth-child(3) { animation-delay: 16s; }
.ticker-item:nth-child(4) { animation-delay: 24s; }
.ticker-item:nth-child(5) { animation-delay: 32s; }

@keyframes ticker {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    3% {
        opacity: 1;
        transform: translateX(0);
    }
    17% {
        opacity: 1;
        transform: translateX(0);
    }
    20% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #070707f4 0%, #030303 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    margin-top: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: #fbbf24;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.badge {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Before-After Section */
.before-after {
    position: relative;
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.before,
.after {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.before img,
.after img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before:hover img,
.after:hover img {
    transform: scale(1.05);
}

.before .label,
.after .label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.result-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transform: rotate(5deg);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    font-size: 0.8rem;
}

/* === PROBLEM SOLUTION SECTION === */
.problem-solution {
    padding: 60px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.solution {
    display: block;
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: var(--light);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    border-left: 4px solid var(--accent);
}

/* === WHY US SECTION === */
.why-us {
    padding: 60px 0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-call {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-call:hover {
    background: white;
    color: var(--primary);
}

.cta-note {
    font-size: 0.9rem !important;
    margin-top: 1rem;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* === FOOTER STYLES === */
footer {
    background:#000000;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.footer-logo i {
    color: var(--accent);
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.newsletter p {
    color: #9ca3af;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 0.6rem 0.8rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.8rem;
}

.footer-legals {
    display: flex;
    gap: 1.5rem;
}

.footer-legals a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-legals a:hover {
    color: var(--accent);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.2rem;
    }
    
    .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Adjust logo for tablet */
    .nav-brand .logo img {
        width: calc(var(--logo-width, 180px) * 0.9);
        height: calc(var(--logo-height, 50px) * 0.9);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        overflow-y: auto;
        left: auto;
        transform: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        padding: 1rem 0;
        justify-content: flex-start;
        border-radius: 0;
        width: 100%;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light);
        width: 100%;
        display: none;
        margin: 0.5rem 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Reset logo position di mobile */
    .nav-brand {
        transform: none !important;
        position: static;
    }
    
    .nav-brand .logo img {
        width: 120px !important;
        height: 35px !important;
    }
    
    .nav-cta {
        display: none;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* News Ticker Mobile */
    .news-ticker {
        margin-top: 70px;
        padding: 10px 0;
        min-height: auto;
    }
    
    .ticker-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .ticker-label {
        margin-right: 0;
        font-size: 0.7rem;
        height: 25px;
        padding: 4px 10px;
    }
    
    .ticker-content {
        height: auto;
    }
    
    .ticker-item {
        position: static;
        animation: none;
        opacity: 1;
        white-space: normal;
        font-size: 0.8rem;
        margin-bottom: 3px;
        line-height: 1.3;
        padding: 1px 0;
    }
    
    .ticker-item:last-child {
        margin-bottom: 0;
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-container {
        grid-template-columns: 1fr;
    }

    .result-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Problems grid menjadi 1 kolom di mobile */
    .problems-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Sticky Navigation Effect */
.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* === NOTIFICATION STYLES === */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--success);
}

.notification-error {
    border-left-color: var(--error);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    color: var(--text-light);
}

/* === LIGHTBOX STYLES === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.btn-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* --- Styling untuk Status Badges --- */
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #fff;
    margin: 2px 0;
}

/* Warna-warna status */
.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-info {
    background-color: #17a2b8;
}

.badge-success {
    background-color: #28a745;
}

.badge-secondary {
    background-color: #6c757d;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-light {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
}

/* === QUICK FIX LOGO 400x120 & RUNNING TEXT === */
.nav-brand .logo img {
    width: 400px !important;
    height: 120px !important;
    object-fit: contain !important;
}

header {
    min-height: 130px !important;
}

.navbar {
    min-height: 120px !important;
    padding: 1rem 0 !important;
}

.news-ticker {
    margin-top: 130px !important;
    z-index: 999 !important;
    position: relative !important;
    background: linear-gradient(135deg, #dc2626, #ea580c) !important;
}