/*
Theme Name: Antarbintang Internusa PT
Theme URI: https://antarbintang.co.id
Author: Antarbintang Team
Author URI: https://antarbintang.co.id
Description: A clean, lightweight, corporate and futuristic theme for Antarbintang Internusa holding company. Features dynamic constellation animation and custom brand logos.
Version: 3.0.0
License: GPL v2 or later
*/

/* ========== VARIABLES & RESET ========== */
:root {
    --accent-color: #00d4c0;
    --star-color: #dcebff;
    --main-font: 'Inter', sans-serif;
    --bg-dark: #050510;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--main-font);
    line-height: 1.6;
}

/* ========== SCROLL LOCK SAAT MENU MOBILE TERBUKA ========== */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== CANVAS (STARFIELD) ========== */
#starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ========== TYPOGRAPHY & BUTTONS ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: 1px solid var(--accent-color);
    transition: 0.3s;
}

.button-primary {
    background: var(--accent-color);
    color: #000;
}

.button-primary:hover {
    box-shadow: 0 0 20px var(--accent-color);
    transform: translateY(-3px);
}

.button-outline {
    background: transparent;
    color: var(--accent-color);
}

.button-outline:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-color);
}

/* ========== SECTION GLOBAL ========== */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title-alt {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title-alt span {
    color: var(--accent-color);
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ========== HERO SUBPAGE ========== */
.hero-subpage {
    padding: 150px 0 80px;
    text-align: center;
}

.hero-subpage h1 {
    font-size: 4rem;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

/* ========== NAVBAR  ========== */
.navbar-capsule-wrapper {
    position: sticky !important;
    top: 20px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 100000 !important;
    margin-bottom: 0 !important;
}

.navbar-capsule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transition: all 0.3s ease !important;
}

.capsule-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 25, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 100px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    width: 100%;
    box-sizing: border-box;
}

.nav-brand-mobile {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
}

.nav-brand-mobile a {
    color: #fff;
    text-decoration: none;
}

.nav-brand-mobile span {
    color: var(--accent-color);
}

.capsule-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.capsule-menu > li > a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.capsule-menu > li > a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 15px;
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    font-size: 14px;
    transition: 0.2s;
}

.sub-menu li a:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-color);
    padding-left: 30px;
}

.contact-button a {
    background: var(--accent-color) !important;
    color: #000 !important;
    font-weight: 800 !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    margin-left: 10px;
}

.contact-button a:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    pointer-events: auto;
}

.nav-overlay.active {
    display: block;
}

/* ========== ANIMASI ========== */
@keyframes zeroGravity {
    0% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 242, 255, 0.1);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 255, 0.4);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 242, 255, 0.1);
    }
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 991px) {
    .nav-overlay {
        display: none !important;
    }

    .navbar-capsule-wrapper {
    position: sticky !important;
    top: 20px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 100000 !important;
    margin-bottom: 0 !important;
    }

    .navbar-capsule-container {
        width: 100% !important;
        height: 60px !important;
        padding: 0 5px 0 20px !important;
        border-radius: 40px !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        transition: all 0.3s ease !important;
    }

    .capsule-navbar {
        height: 60px;
        padding: 0 20px;
        border-radius: 40px;
    }

    .nav-brand-mobile {
        font-size: 1.2rem;
        white-space: nowrap;
        flex-shrink: 1;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        z-index: 99999 !important;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .menu-toggle.active span {
        background: var(--accent-color, #00f2ff) !important;
        box-shadow: 0 0 10px var(--accent-color, #00f2ff) !important;
    }

    .capsule-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #050510 !important;
        border-left: 2px solid var(--accent-color, #00f2ff) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 80px 0 30px 0 !important;
        margin: 0 !important;
        transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1) !important;
        z-index: 99998 !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.9) !important;
        overflow-y: auto !important;
    }

    .capsule-menu.active {
        right: 0 !important;
    }

    .capsule-menu li {
        width: 100% !important;
        text-align: center !important;
        margin: 12px 0 !important;
        list-style: none !important;
    }

    .capsule-menu li a {
        color: #ffffff !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        font-family: 'Orbitron', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        display: block !important;
        padding: 12px 20px !important;
        transition: 0.3s !important;
    }

    .capsule-menu li a:hover {
        color: var(--accent-color, #00f2ff) !important;
        background: rgba(255,255,255,0.05) !important;
    }

    .capsule-menu .contact-button a {
        background: var(--accent-color, #00f2ff) !important;
        color: #000 !important;
        margin: 20px 30px 0 30px !important;
        border-radius: 50px !important;
        padding: 14px 20px !important;
        font-weight: 800 !important;
        box-shadow: 0 0 15px var(--accent-color, #00f2ff) !important;
    }

    .capsule-menu .contact-button a:hover {
        background: #fff !important;
        color: #000 !important;
    }

    .sub-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(0, 242, 255, 0.2) !important;
        border-radius: 10px !important;
        padding: 10px 0 !important;
        margin: 10px 25px 0 25px !important;
        width: auto !important;
        min-width: auto !important;
        box-shadow: none !important;
    }

    .menu-item-has-children.active .sub-menu {
        display: block !important;
    }

    .sub-menu li {
        margin: 5px 0 !important;
    }

    .sub-menu li a {
        font-size: 1rem !important;
        padding: 10px 20px !important;
        text-transform: none !important;
    }
    
    /* Hero subpage padding untuk mobile */
    .hero-subpage {
        padding-top: 110px !important;
    }
    
    .subpage-logo {
        max-height: 50px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .brand-title {
        font-size: 2rem !important;
        letter-spacing: 3px !important;
    }
    
    .tagline {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
    }
}

/* ========== BRANDS GRID ========== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.brand-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
}

.brand-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ========== SERVICES GRID ========== */
.services-grid,
.services-grid-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-grid-sub {
    padding-bottom: 100px;
}

.service-card,
.service-card-sub {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

.service-card-sub {
    background: rgba(255, 255, 255, 0.02);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.service-card-sub:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 212, 192, 0.1);
}

.service-card-sub:hover {
    background: rgba(255, 255, 255, 0.04);
}

.service-image,
.service-img-wrapper {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
    display: block !important;
}

.service-image img,
.service-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: 0.5s;
    filter: brightness(0.7) grayscale(30%);
}

.service-card:hover .service-image img,
.service-card-sub:hover .service-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0%);
}

.service-card-sub:hover .service-img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.service-content img,
.service-desc img {
    display: none !important;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #050510, var(--accent-color));
    opacity: 0.2;
}

/* ========== EXPERTISE BADGES ========== */
.expertise-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.expertise-item {
    background: rgba(0, 212, 192, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
}

/* ========== PARTNER SLIDER ========== */
.partners-section {
    padding: 80px 0;
    overflow: hidden;
}

.partner-slider {
    padding: 20px 10px !important;
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 242, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0.6;
}

.partner-item img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.4s;
}

.swiper-slide-active .partner-item {
    border-color: var(--accent-color);
    background: rgba(0, 212, 192, 0.08);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 212, 192, 0.15);
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
    transform: translateY(-5px) scale(1.05);
}

.partner-name-fallback {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
}

.no-partners {
    text-align: center;
    opacity: 0.5;
    color: #fff;
    width: 100%;
}

/* ========== CONTACT SECTION ========== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.contact-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 212, 192, 0.03);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
}

.contact-item a:hover {
    color: #fff;
}

/* ========== FOOTER ========== */
.site-footer {
    position: relative;
    background: rgba(3, 3, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 212, 192, 0.1);
    color: #fff;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 192, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-text {
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo-text span {
    color: var(--accent-color);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 350px;
}

.footer-status {
    margin-top: 25px;
    font-size: 12px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.footer-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-social-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.social-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 212, 192, 0.05);
    transform: translateX(5px);
}

.social-card .icon {
    font-weight: bold;
    color: var(--accent-color);
}

.footer-copyright {
    text-align: left;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.copyright-flex {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

/* ========== ABOUT SECTION ========== */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-visual,
.about-info {
    flex: 1;
}

.about-visual img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.expertise-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.exp-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.exp-item span {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

.about-placeholder {
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed var(--accent-color);
}

/* ========== TIMELINE ========== */
.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        #00f2ff 15%, 
        #bc00ff 50%, 
        #00f2ff 85%, 
        transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    box-sizing: border-box;
    clear: both;
    margin-bottom: 60px;
}

.timeline-item.left { float: left; }
.timeline-item.right { float: right; }

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #050505;
    border: 3px solid #00f2ff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px #00f2ff, inset 0 0 10px #00f2ff;
    transition: 0.3s;
}

.left .timeline-dot { right: -10px; }
.right .timeline-dot { left: -10px; }

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 40px;
    height: 2px;
    background: #00f2ff;
    box-shadow: 0 0 10px #00f2ff;
}

.left .timeline-content::after { right: -40px; }
.right .timeline-content::after { left: -40px; }

.timeline-item:hover .timeline-content {
    background: rgba(0, 242, 255, 0.05);
    border-color: #00f2ff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}

.timeline-item:hover .timeline-dot {
    background: #00f2ff;
    transform: scale(1.5);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00f2ff, #bc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.timeline-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.timeline-wrapper::after { content: ""; display: table; clear: both; }

/* ========== TEAM SECTION ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
}

.team-card img,
.dummy-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.dummy-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.founder-image-wrapper,
.member-image-wrapper {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #111;
}

.founder-card:hover .founder-image-wrapper,
.team-card:hover .member-image-wrapper {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
}

.badge-founder {
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* ========== BRANDS SECTION (LOGO) ========== */
.brands-section {
    padding: 120px 0;
    position: relative;
    background: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto;
}

.brand-logo-container {
    width: 100% !important;
    max-width: 250px !important;
    height: 120px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    overflow: hidden !important;
}

.brand-logo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.5s ease;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.brand-episat:hover {
    border-color: #00f2ff !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2) !important;
}

.brand-nivelva:hover {
    border-color: #bc00ff !important;
    box-shadow: 0 0 40px rgba(188, 0, 255, 0.2) !important;
}

.brand-link {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 25px;
}

.btn-episat {
    background: #00f2ff;
    color: #000;
}

.btn-nivelva {
    background: #bc00ff;
    color: #fff;
}

.brand-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px currentColor;
}

.btn-brand {
    background: var(--accent-color) !important;
    color: #000 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--accent-color);
}

/* ========== MEMBER CARD ========== */
.member-card {
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 40px;
}

.circle-frame {
    margin: 0 auto 20px;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #111;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 1 / 1 !important;
}

.founder-card .circle-frame {
    width: 280px !important;
    height: 280px !important;
    border: 5px solid var(--accent-color, #00f2ff) !important;
}

.team-card .circle-frame,
.team-grid .circle-frame {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto 20px !important;
}

.circle-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.member-card:hover .circle-frame {
    filter: grayscale(0%);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
    border-color: var(--accent-color, #00f2ff) !important;
}

.member-card:hover .circle-frame img {
    transform: scale(1.1);
}

.member-info h3,
.team-card h3 {
    margin: 10px 0;
    color: #fff;
    font-size: 1.5rem;
}

.member-bio,
.member-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-page-theme .attachment-post-thumbnail,
.about-page-theme .entry-header img,
.about-page-theme .post-thumbnail img {
    display: none !important;
}

.about-content .circle-frame img {
    display: block !important;
}

.team-card:hover .circle-frame {
    filter: grayscale(0%);
    border-color: #00f2ff !important;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

/* ========== 404 ERROR PAGE ========== */
.error-404-container {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-color);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -5px;
    animation: glitch 3s infinite;
    text-shadow: 0 0 30px rgba(0, 212, 192, 0.3);
}

.not-found h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.page-content p {
    max-width: 500px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.6);
}

.radar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 50px auto 0;
    border: 1px solid rgba(0, 212, 192, 0.2);
    border-radius: 50%;
}

.radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
}

.radar-beam {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-left: 2px solid var(--accent-color);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* ========== NIVELVA THEME OVERRIDE ========== */
.nivelva-theme {
    --accent-color: #7000ff;
    padding-top: 100px;
    background: radial-gradient(circle at top right, rgba(112, 0, 255, 0.05), transparent);
}

/* ========== VISION & MISSION ========== */
.vision-mission {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}

.vision-box,
.mission-box {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
}

.about-hero {
    text-align: center;
    padding: 80px 0;
}

.about-hero h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-color);
}

/* ========== MEDIA QUERIES UMUM ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .partner-item {
        height: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .expertise-row {
        justify-content: center;
    }

    .vision-mission {
        flex-direction: column;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .circle-frame {
        width: 180px !important;
        height: 180px !important;
    }

    .founder-card .circle-frame {
        width: 220px !important;
        height: 220px !important;
    }

    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
        float: none;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-content::after {
        left: -40px !important;
        width: 40px !important;
    }
    
    .hero-subpage {
        padding-top: 140px;
    }
    
    .subpage-logo {
        max-width: 100%;
        height: auto;
        max-height: 100px;
        object-fit: contain;
    }
}

/* ========== UTILITY ========== */
.hidden {
    display: none !important;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}