/* RESET & BASE */
.hero-master {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* BACKGROUND FULL SCREEN SLIDESHOW */
.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-slides .bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 3s ease;
    transform: scale(1.1);
}
.hero-bg-slides .bg-slide.is-active {
    opacity: 0.5;
    transform: scale(1);
}
.hero-bg-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY GRADIENT */
.hero-master::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
}

/* BREADCRUMB */
.hero-nav-top {
    position: relative;
    z-index: 10;
    padding: 30px 5%;
}
.breadcrumb-minimal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.breadcrumb-minimal a { color: #ff6b00; text-decoration: none; font-weight: 800; }
.breadcrumb-minimal span { color: #fff; opacity: 0.6; }

/* CONTENT LAYOUT */
.hero-container {
    position: relative;
    z-index: 10;
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    padding: 0 5% 50px;
    align-items: center;
}

.hero-text-content {
    padding-right: 50px;
}

/* PERBAIKAN: H1 DIPERKECIL SECARA SIGNIFIKAN */
.hero-text-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem); /* Ukuran jauh lebih kecil & proporsional */
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.hero-desc-wrapper {
    max-width: 550px;
    padding-left: 25px;
    border-left: 5px solid #ff6b00; /* Orange Solid */
}
.hero-desc-wrapper p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}
.hero-desc-wrapper p b, .hero-desc-wrapper p a { color: #ff6b00; }

/* INFO CARD - GLASSMORPHISM */
.hero-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px); /* Selaras Hero */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
}
.card-stat { margin-bottom: 30px; }
.stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b00;
    margin-bottom: 10px;
    font-weight: 800;
}
.stat-value { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-sub { font-size: 12px; color: #94a3b8; margin-top: 5px; }

/* SLIDE NAV */
.hero-slide-nav {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-line-wrapper { width: 120px; height: 2px; background: rgba(255,255,255,0.2); }
.nav-line-progress { height: 100%; background: #ff6b00; width: 0%; }
.btn-nav {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-nav:hover { background: #ff6b00; border-color: #ff6b00; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; padding-top: 50px; }
    .hero-text-content h1 { font-size: 2rem; }
    .hero-info-card { display: none; }
}