/* ============================================
   BALIGEN ADVERTISING - Creative & Bold Theme
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --accent-1: #7C3AED;
    --accent-2: #F97316;
    --accent-3: #06B6D4;
    --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --gradient-cool: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255,255,255,0.08);
    --glow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
    --glow-orange: 0 0 30px rgba(249, 115, 22, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 3px;
}

::selection {
    background: var(--accent-1);
    color: #fff;
}

/* ============================================
   NAVBAR
   ============================================ */

#mainNav {
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
}

#mainNav.home-transparent {
    background: transparent;
    backdrop-filter: none;
}

#mainNav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

#mainNav .navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#mainNav .brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#mainNav .navbar-logo {
    height: 40px;
    width: auto;
}

#mainNav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 4px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--text-primary) !important;
}

#mainNav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-1);
    border-radius: 2px;
}

.navbar-toggler {
    border: none !important;
    padding: 10px 6px;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none;
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    position: relative;
}

.hamburger-box .bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* DROPDOWN */
#mainNav .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 8px;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

#mainNav .dropdown-item {
    color: var(--text-secondary);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item.active {
    background: rgba(124, 58, 237, 0.15);
    color: var(--text-primary);
}

#mainNav .dropdown-item i {
    font-size: 0.95rem;
    color: var(--accent-1);
}

#mainNav .dropdown-divider {
    border-color: var(--border-color);
    margin: 4px 0;
}

#mainNav .dropdown-toggle::after {
    border-top-color: var(--text-muted);
    vertical-align: 0.1em;
}

@media (max-width: 991px) {
    #mainNav .navbar-nav {
        text-align: center;
        align-items: center;
    }
    #mainNav .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    #mainNav .dropdown-item {
        color: var(--text-secondary);
        font-size: 1.1rem;
        padding: 10px 16px;
    }
}

@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    #mainNav .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    #mainNav .navbar-nav {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    #mainNav .nav-link {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        padding: 14px 24px !important;
        margin: 0 !important;
        color: var(--text-secondary) !important;
        transition: all 0.3s ease;
    }

    #mainNav .nav-link:hover,
    #mainNav .nav-link.active {
        color: var(--text-primary) !important;
        transform: scale(1.05);
    }

    #mainNav .nav-link.active::after {
        bottom: 8px;
        width: 30px;
        height: 3px;
    }

    #mainNav .navbar-toggler {
        z-index: 1001;
        position: relative;
    }
}

/* ============================================
   HERO / VIDEO BACKGROUND
   ============================================ */

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 15, 0.85) 0%,
        rgba(124, 58, 237, 0.4) 50%,
        rgba(249, 115, 22, 0.3) 100%);
    z-index: 1;
}

.hero-video .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
}

.hero-scroll i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
    color: #fff;
}

.btn-outline-glow {
    background: rgba(0,0,0,0.35);
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    border-color: var(--accent-1);
    box-shadow: var(--glow-purple);
    color: #fff;
    background: rgba(124, 58, 237, 0.1);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ============================================
   LAYANAN CARDS
   ============================================ */

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--glow-purple);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(249, 115, 22, 0.1));
    color: var(--accent-1);
}

.service-card h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   PORTFOLIO / PROJECT CARDS
   ============================================ */

.project-item {
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-purple);
}

.project-card .project-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.project-card .project-img-placeholder {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.project-card .project-info {
    padding: 20px;
}

.project-card .project-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 8px;
}

.project-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.project-card .project-client {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: #fff;
}

/* ============================================
   KLIEN LOGO SLIDER
   ============================================ */

.logo-slider-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-slider-wrap::before,
.logo-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.logo-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.logo-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: logoScroll 100s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
}

.logo-slide img {
    height: 100%;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    opacity: 1;
}

.klien-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all 0.3s;
}

.klien-text:hover {
    color: var(--accent-1);
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .logo-track { gap: 32px; animation-duration: 100s; }
    .logo-slide { height: 40px; min-width: 90px; }
    .logo-slide img { max-width: 100px; }
    .klien-text { font-size: 0.9rem; }
}

/* ============================================
   TESTIMONI CARDS
   ============================================ */

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--glow-orange);
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card .quote {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.testimonial-author h6 {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-purple);
}

.blog-card .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .blog-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-muted);
}

.blog-card .blog-body {
    padding: 20px;
}

.blog-card .blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h5 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h5 a:hover {
    color: var(--accent-1);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-card .read-more {
    color: var(--accent-1);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card .read-more:hover {
    color: var(--accent-2);
}

.blog-card .read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.blog-card .read-more:hover i {
    transform: translateX(4px);
}

/* ============================================
   COUNTER / STATS
   ============================================ */

.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-1);
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-control-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control-dark:focus {
    background: var(--bg-card);
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    color: var(--text-primary);
}

.form-control-dark::placeholder {
    color: var(--text-muted);
}

textarea.form-control-dark {
    min-height: 140px;
    resize: vertical;
}

/* ============================================
   TEAM CARDS
   ============================================ */

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 20px 28px;
    transition: all 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--glow-purple);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 2px solid var(--accent-1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-avatar .team-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    color: #fff;
}

.team-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1.3;
}

.team-role {
    color: var(--accent-1);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .team-avatar {
        width: 75px;
        height: 75px;
        margin-bottom: 14px;
    }
    .team-card {
        padding: 24px 12px 20px;
    }
    .team-card h5 {
        font-size: 0.9rem;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-img-wrapper::after {
    content: none;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-1);
}

.about-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.about-feature i {
    color: var(--accent-1);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    background: var(--bg-secondary);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-hero .breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.page-hero .breadcrumb .active {
    color: var(--accent-1);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.site-footer .footer-brand {
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-footer .footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-1);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   ALERT
   ============================================ */

.alert-custom {
    border-radius: 12px;
    padding: 14px 18px;
    border: none;
}

.alert-success-custom {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-danger-custom {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   BLOG DETAIL
   ============================================ */

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-detail-content ol,
.blog-detail-content ul {
    margin-bottom: 20px;
    color: var(--text-secondary);
    padding-left: 20px;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

.blog-detail-content strong {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    #mainNav .nav-link.active::after {
        display: none;
    }
    section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .page-hero {
        padding: 120px 0 50px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   LIGHTBOX GALLERY
   ============================================ */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}

.lightbox-close:hover { color: var(--accent-1); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2;
    padding: 10px 20px;
    user-select: none;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--accent-1); }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.map-nearby-filters {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
    justify-content: start;
}

.map-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 7px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.2s;
    user-select: none;
    white-space: nowrap;
}

.map-filter-check:hover {
    border-color: var(--accent-1);
    color: var(--text-primary);
}

.map-filter-check input[type="checkbox"] {
    accent-color: var(--accent-1);
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin: 0;
}

.map-filter-check:has(input:checked) {
    border-color: var(--accent-1);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

@media (max-width: 767px) {
    .map-nearby-filters {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .map-filter-check {
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

.map-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.82rem;
    color: var(--accent-1);
}

.map-loading .spinner-border {
    width: 14px;
    height: 14px;
    border-width: 2px;
}

.spec-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2px 14px;
}

.spec-cols-2 { grid-template-columns: repeat(2, 1fr); }
.spec-cols-3 { grid-template-columns: repeat(3, 1fr); }

.spec-checklist li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spec-checklist li i {
    color: var(--accent-1);
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .spec-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .lightbox-close { top: 10px; right: 15px; font-size: 2rem; }
    .lightbox-prev, .lightbox-next { font-size: 2rem; padding: 5px 10px; }
}

.goog-te-banner-frame, .goog-te-gadget, .goog-logo-link, .skiptranslate { display: none !important; }
body { top: 0 !important; }

.lang-switch-wrapper { position: relative; }
.lang-switch-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid var(--border-color); border-radius: 20px;
    color: var(--text-secondary); font-size: 0.8rem; font-weight: 600; padding: 6px 14px;
    cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
}
.lang-switch-btn:hover { border-color: var(--accent-1); color: var(--text-primary); }
.lang-arrow { font-size: 0.7rem; transition: transform 0.2s; }

.lang-dropdown {
    display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px;
    min-width: 170px; padding: 6px; z-index: 1100; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.lang-dropdown.show { display: block; }

.lang-option {
    padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 0.85rem;
    color: var(--text-secondary); transition: all 0.15s;
}
.lang-option:hover { background: rgba(124,58,237,0.1); color: var(--text-primary); }
.lang-option.active { background: rgba(124,58,237,0.15); color: var(--text-primary); font-weight: 600; }

@media (max-width: 991px) {
    .lang-dropdown { right: auto; left: 0; }
}

.misi-list {
    text-align: left;
    padding-left: 20px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.misi-list li {
    padding: 3px 0;
}

.misi-list li::marker {
    color: var(--accent-1);
    font-weight: 700;
}

/* Skeleton shimmer */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(255,255,255,0.03) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.project-img {
    background: var(--bg-card);
}

.project-img-placeholder {
    background: var(--bg-card);
    animation: shimmer 1.5s infinite;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 40px 0;
}

/* Pagination */
.pagination {
    gap: 4px;
}

.pagination .page-link {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background: var(--accent-1) !important;
    border-color: var(--accent-1) !important;
    color: #fff !important;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-secondary) !important;
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: waPulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.4rem; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent-1);
    z-index: 998;
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cookie-accept {
    background: var(--accent-1);
    color: #fff;
}

.cookie-accept:hover {
    background: #6928d4;
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.cookie-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { justify-content: center; }
}

/* Blog Content Styling */
.blog-detail-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-detail-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--accent-1);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 16px;
    line-height: 1.9;
}

.blog-detail-content li {
    margin-bottom: 6px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.blog-detail-content a {
    color: var(--accent-1);
    text-decoration: underline;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--accent-1);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 0 12px 12px 0;
    color: var(--text-secondary);
    font-style: italic;
}

.blog-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.blog-detail-content th,
.blog-detail-content td {
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    color: var(--text-secondary);
}

.blog-detail-content th {
    background: var(--bg-card);
    color: var(--accent-1);
    font-weight: 700;
}

.blog-detail-content strong,
.blog-detail-content b {
    color: var(--text-primary);
}
