/* ===== Loading Screen ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Single panel — slides up on open */
.loader-panel {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
}

/* Slide the panel up to reveal page */
.loader.open .loader-panel {
    transform: translateY(-100%);
}

/* Logo */
.loader-logo {
    opacity: 0;
    transform: scale(0.92);
    animation: loaderFadeIn 0.6s ease forwards 0.3s;
}

.loader-logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.loader.done {
    visibility: hidden;
}

@keyframes loaderFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* --- Top bar (brand centered) --- */
.navbar-top {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Bottom bar (menu centered) --- */
.navbar-bottom {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand */
.navbar-brand a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #ffffff;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 28px;
    width: auto;
    transition: opacity 0.3s ease;
}

.brand-bold {
    font-weight: 700;
}

.brand-light {
    font-weight: 300;
}

/* Menu */
.navbar-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-menu ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.navbar-menu ul li a:hover::after {
    width: 100%;
}

.navbar-menu ul li a:hover {
    color: #ffffff;
}

/* Contact Us link */
.nav-link-contact {
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-link-contact::after {
    display: none !important;
}

.nav-link-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ===== Scrolled State ===== */
.navbar.scrolled .navbar-top {
    padding: 14px 0;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.navbar.scrolled .navbar-bottom {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .navbar-brand a {
    color: #1a1a1a;
}

.navbar.scrolled .navbar-menu ul li a {
    color: #555555;
}

.navbar.scrolled .navbar-menu ul li a:hover {
    color: #1a1a1a;
}

.navbar.scrolled .nav-link-contact {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.navbar.scrolled .nav-link-contact:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background slides */
.hero-backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide video,
.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 60px;
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero bottom (description + buttons) */
.hero-bottom {
    position: absolute;
    bottom: 80px;
    left: 120px;
    z-index: 2;
    max-width: 520px;
}

/* Heading slider */
.hero-heading-slider {
    position: relative;
    width: 100%;
    min-height: 80px;
    margin-bottom: 32px;
    align-self: center;
    text-align: center;
}

.hero-slide {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-slide em {
    font-style: italic;
    color: #c9a96e;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-line-italic {
    font-style: italic;
    font-weight: 400;
    color: #c9a96e;
}

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

/* Description */
.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.7s;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn-text {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
}

.btn-text:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

/* Slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

/* Hero bottom right */
.hero-bottom-right {
    position: absolute;
    bottom: 100px;
    right: 100px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.7s;
}

.hero-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    border-color: #ffffff;
}

.indicator:hover {
    border-color: #ffffff;
}

/* ===== Entities Section (Container 2) ===== */
.entities-section {
    background: #ffffff;
    padding: 80px 120px 0;
}

/* Banner */
.entities-banner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
}

.entities-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entities-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 15, 20, 0.85) 0%, rgba(15, 15, 20, 0.4) 100%);
}

.entities-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 100px;
    max-width: 700px;
}

.entities-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 20px;
}

.entities-headline em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.entities-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

/* Container below banner */
.entities-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0 100px;
}

/* Grid */
.entities-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: stretch;
}

/* Divider */
.entities-divider {
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    margin: 0 auto;
}

/* Entity card */
.entity-card {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
}

.entity-tagline {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 14px;
}

.entity-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.entity-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.entity-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 14px 32px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    transition: all 0.3s ease;
}

.entity-btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
}

/* ===== Advisory Services (Container 3) ===== */
.advisory-services {
    background: #14452F;
    padding: 100px 120px;
    position: relative;
    overflow: hidden;
}

/* Radial rays - top right corner */
.advisory-services::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: repeating-conic-gradient(
        from 180deg at 0% 100%,
        transparent 0deg,
        transparent 4deg,
        rgba(255, 255, 255, 0.08) 4deg,
        rgba(255, 255, 255, 0.08) 4.5deg
    );
    pointer-events: none;
    z-index: 0;
}

/* Radial rays - bottom left corner */
.advisory-services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: repeating-conic-gradient(
        from 0deg at 100% 0%,
        transparent 0deg,
        transparent 4deg,
        rgba(255, 255, 255, 0.08) 4deg,
        rgba(255, 255, 255, 0.08) 4.5deg
    );
    pointer-events: none;
    z-index: 0;
}

.advisory-services-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.advisory-services-header {
    text-align: center;
    margin-bottom: 64px;
}

.advisory-services-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.35;
}

.advisory-services-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.advisory-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.advisory-service-card {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advisory-service-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.advisory-service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.4;
    transition: margin-bottom 0.3s ease;
}

.advisory-service-card:hover .advisory-service-title {
    margin-bottom: 12px;
}

.advisory-service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.advisory-service-card:hover .advisory-service-desc {
    max-height: 200px;
    opacity: 1;
}

/* ===== Kapital Section (Container 4) ===== */
.kapital-section {
    background: #ffffff;
    padding: 100px 120px;
}

.kapital-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.kapital-header {
    text-align: center;
    margin-bottom: 60px;
}

.kapital-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 14px;
}

.kapital-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
    max-width: 650px;
    margin: 0 auto;
}

.kapital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.kapital-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.kapital-card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kapital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kapital-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a6b5a;
    padding: 28px 24px;
    z-index: 1;
    transition: top 0.4s ease;
    top: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.kapital-card:hover .kapital-card-content {
    top: 35%;
}

.kapital-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.kapital-card:hover .kapital-card-title {
    margin-bottom: 12px;
}

.kapital-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.kapital-card:hover .kapital-card-desc {
    max-height: 150px;
    opacity: 1;
}

.kapital-notes {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.kapital-notes p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: #777777;
    font-style: italic;
}

/* ===== Key Person Section (Container 5) ===== */
.key-person-section {
    background: #0A3B28;
    padding: 80px 120px;
    overflow: hidden;
}

.key-person-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.key-person-header {
    text-align: center;
    margin-bottom: 40px;
}

.key-person-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.5);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.key-person-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.key-person-image {
    flex-shrink: 0;
    width: 280px;
    height: 360px;
    position: relative;
}

.key-person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.key-person-info {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.key-person-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.key-person-role {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.75;
}

.key-person-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== Network Section (Container 6) ===== */
.network-section {
    background: #ffffff;
    padding: 100px 120px;
}

.network-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.network-header {
    margin-bottom: 60px;
    text-align: center;
}

.network-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.network-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #888888;
    line-height: 1.8;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.network-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: #efefef;
}

.network-card--disabled {
    cursor: default;
}

/* Background image — hidden by default */
.network-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
    transition: opacity 0.1s ease, clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
    transform: scale(1.06);
}

.network-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-card:hover .network-card-bg {
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    transform: scale(1);
}

/* Dark overlay on top of image */
.network-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-card:hover .network-card-overlay {
    clip-path: circle(150% at 50% 50%);
}

/* Card content */
.network-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    gap: 24px;
}

/* Logo */
.network-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-card-logo img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

/* On hover: invert logo to white */
.network-card:hover .network-card-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Noka: logo hitam by default, putih saat hover */
.network-card--noka .network-card-logo img {
    filter: brightness(0);
    opacity: 0.85;
}

.network-card--noka:hover .network-card-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Visit button — hidden by default */
.network-card-visit {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.network-card:hover .network-card-visit {
    opacity: 1;
    transform: translateY(0);
}

/* Coming soon badge */
.network-card-soon {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.network-card:hover .network-card-soon {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Sections ===== */
.section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.section:nth-child(even) {
    background: #f9f9f9;
}

.section-inner {
    max-width: 800px;
    text-align: center;
}

.section-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-inner p {
    font-size: 1rem;
    color: #666;
}

/* ===== Scroll Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(-60px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(60px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-animate="zoom-in"].animated {
    opacity: 1;
    transform: scale(1);
}

[data-animate="fade-up"].animated,
[data-animate="fade-left"].animated,
[data-animate="fade-right"].animated,
[data-animate="zoom-in"].animated {
    opacity: 1;
}

/* Delay utility classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-top {
        padding: 12px 0;
    }

    .navbar-top-container,
    .navbar-bottom-container {
        padding: 0 16px;
    }

    .navbar-menu ul {
        gap: 16px;
        flex-wrap: nowrap;
    }

    .navbar-menu ul li a {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .navbar-brand a {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .nav-link-contact {
        padding: 4px 10px;
    }

    /* Hero */
    .hero {
        height: 100vh;
    }

    .hero-content {
        padding: 0 24px;
        margin-top: -80px;
    }

    .hero-heading-slider {
        min-height: 60px;
        margin-bottom: 0;
    }

    .hero-slide {
        font-size: 1.5rem;
    }

    /* Hero bottom left */
    .hero-bottom {
        bottom: 140px;
        left: 24px;
        max-width: calc(100% - 48px);
    }

    .hero-description {
        font-size: 0.72rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .btn-outline,
    .btn-text {
        padding: 10px 20px;
    }

    /* Hero bottom right */
    .hero-bottom-right {
        bottom: 60px;
        right: 24px;
        gap: 12px;
    }

    .hero-bottom-right .btn-text {
        display: none;
    }

    .arrow-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    /* Hero indicators */
    .hero-indicators {
        bottom: 24px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Entities section */
    .entities-section {
        padding: 20px 20px 0;
    }

    .entities-banner {
        height: 280px;
    }

    .entities-banner-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .entities-headline {
        font-size: 1.2rem;
    }

    .entities-subheadline {
        font-size: 0.75rem;
    }

    .entities-container {
        padding: 30px 24px;
    }

    .entities-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .entities-divider {
        width: 40%;
        height: 1px;
        margin: 16px auto;
        background: #e5e5e5;
    }

    .entity-card {
        padding: 24px 0;
    }

    .entity-name {
        font-size: 1rem;
    }

    .entity-description {
        font-size: 0.8rem;
    }

    /* Sections */
    .section {
        padding: 60px 24px;
    }

    .section-inner h2 {
        font-size: 1.8rem;
    }

    /* Advisory Services (Container 3) */
    .advisory-services {
        padding: 60px 20px;
    }

    .advisory-services-header {
        margin-bottom: 40px;
    }

    .advisory-services-headline {
        font-size: 1.4rem;
    }

    .advisory-services-subheadline {
        font-size: 0.8rem;
    }

    .advisory-services-grid {
        grid-template-columns: 1fr;
    }

    .advisory-service-card {
        padding: 28px 24px;
    }

    .advisory-service-desc {
        max-height: none;
        opacity: 1;
    }

    .advisory-service-title {
        margin-bottom: 12px;
    }

    /* Kapital Section (Container 4) */
    .kapital-section {
        padding: 60px 20px;
    }

    .kapital-header {
        margin-bottom: 40px;
    }

    .kapital-headline {
        font-size: 1.4rem;
    }

    .kapital-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kapital-card-image {
        height: 100%;
    }

    .kapital-card {
        height: 320px;
    }

    .kapital-card-desc {
        max-height: none;
        opacity: 1;
    }

    .kapital-card-title {
        margin-bottom: 12px;
    }

    .kapital-card-content {
        top: 45%;
    }

    .kapital-notes {
        padding-top: 30px;
    }

    /* Key Person Section (Container 5) */
    .key-person-section {
        padding: 40px 20px;
    }

    .key-person-header {
        margin-bottom: 28px;
    }

    .key-person-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .key-person-info {
        align-items: center;
    }

    .key-person-desc {
        text-align: left;
    }

    .key-person-silhouette,
    .key-person-image {
        width: 180px;
        height: 240px;
    }

    .key-person-name {
        font-size: 1.3rem;
    }

    .key-person-role {
        font-size: 0.78rem;
    }

    .key-person-desc {
        font-size: 0.82rem;
    }

    /* Network Section (Container 6) */
    .network-section {
        padding: 60px 20px;
    }

    .network-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .network-card {
        aspect-ratio: 3 / 2;
        border-radius: 16px;
    }

    .network-headline {
        font-size: 1.5rem;
    }

    /* Mobile: langsung tampilkan state hover */
    .network-card .network-card-bg {
        opacity: 1;
        clip-path: circle(150% at 50% 50%);
        transform: scale(1);
    }

    .network-card .network-card-overlay {
        clip-path: circle(150% at 50% 50%);
    }

    .network-card .network-card-logo img {
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    .network-card--noka .network-card-logo img {
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    .network-card .network-card-visit {
        opacity: 1;
        transform: translateY(0);
    }

    .network-card .network-card-soon {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Contact Section (Container 7) ===== */
.contact-section {
    background: #0A3B28;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.contact-quote {
    position: relative;
}

.contact-quote-mark {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    color: #c9a96e;
    line-height: 0.5;
    margin-bottom: 24px;
    opacity: 0.6;
}

.contact-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0A3B28;
    background: #c9a96e;
    padding: 16px 48px;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background: #b8965a;
    color: #0A3B28;
}

.contact-email {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* ===== Footer ===== */
.footer {
    background: #f0efed;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 90px;
    padding: 24px 0;
}

/* Left: logo stacked above address */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.footer-logo img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.85;
}

.footer-address {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.45);
    font-style: normal;
    max-width: 300px;
}

/* Center: nav links */
.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #1a1a1a;
}

/* Footer responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 24px;
    }

    .contact-quote-mark {
        font-size: 5rem;
    }

    .contact-quote-text {
        font-size: 1.35rem;
    }

    .contact-btn {
        padding: 14px 36px;
    }

    .footer {
        padding: 0 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 0;
        gap: 24px;
        min-height: unset;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 24px;
        justify-content: flex-start;
    }

    .footer-address {
        max-width: 100%;
    }
}
