        /* ==================== CSS VARIABLES ==================== */
        :root {
            --primary-black: #0b0b0b;
            --secondary-black: #101010;
            --card-black: #181818;
            --primary-gold: #f6e27a;
            --secondary-gold: #c9a246;
            --text-white: #ffffff;
            --text-light: #eaeaea;
            --text-muted: #9a9a9a;
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 20px 60px rgba(246, 226, 122, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

/* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html {
            scroll-behavior: smooth;
        }

body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-black);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

/* ==================== TYPOGRAPHY ==================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-white);
        }

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 300;
        }

a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }

a:hover {
            color: var(--secondary-gold);
        }

/* ==================== CONTAINER ==================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* ==================== HEADER/NAVIGATION ==================== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 11, 11, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: var(--transition);
        }

nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

.logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

.nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

.nav-menu a {
            color: var(--text-light);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

.nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s;
        }

.nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

.mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

/* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(246, 226, 122, 0.05) 0%, transparent 50%),
                        linear-gradient(180deg, transparent 70%, rgba(11, 11, 11, 1) 100%),
                        url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2400&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

.hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 11, 11, 0.7);
        }

.hero-content {
            position: relative;
            z-index: 2;
            padding: 8rem 0 4rem;
        }

.badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(246, 226, 122, 0.1);
            border: 1px solid var(--primary-gold);
            border-radius: 50px;
            color: var(--primary-gold);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

.hero h1 {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.hero .lead {
            font-size: 1.25rem;
            max-width: 700px;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

.btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
        }

.btn-primary {
            background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
            color: var(--primary-black);
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(246, 226, 122, 0.3);
        }

.btn-outline {
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            background: transparent;
        }

.btn-outline:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
        }

/* ==================== STATS SECTION ==================== */
        .stats-section {
            padding: 4rem 0;
            background: var(--secondary-black);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

.stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--card-black);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

.stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
            box-shadow: var(--shadow-hover);
        }

.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.stat-label {
            color: var(--text-muted);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
        }

/* ==================== STORY SECTION ==================== */
        .story-section {
            padding: 6rem 0;
        }

.section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

.section-title {
            margin-bottom: 1rem;
        }

.section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

.story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

.story-text h3 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

.story-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

.story-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

.story-image:hover {
            transform: scale(1.05);
        }

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

.story-image:first-child {
            grid-column: span 2;
        }

/* ==================== TIMELINE SECTION ==================== */
        .timeline-section {
            padding: 6rem 0;
            background: var(--secondary-black);
        }

.timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

.timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
        }

.timeline-item {
            position: relative;
            padding: 2rem 0;
        }

.timeline-content {
            background: var(--card-black);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            width: calc(50% - 40px);
            transition: var(--transition);
        }

.timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

.timeline-content:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

.timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: var(--primary-gold);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--secondary-black), 0 0 0 8px rgba(246, 226, 122, 0.2);
        }

.timeline-date {
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }

/* ==================== VALUES SECTION ==================== */
        .values-section {
            padding: 6rem 0;
        }

.values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

.value-card {
            background: var(--card-black);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

.value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

.value-card:hover::before {
            transform: scaleX(1);
        }

.value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

.value-icon {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

.value-card h4 {
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }

/* ==================== TEAM SECTION ==================== */
        .team-section {
            padding: 6rem 0;
            background: var(--secondary-black);
        }

.team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

.team-card {
            background: var(--card-black);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            text-align: center;
        }

.team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

.team-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: var(--transition);
        }

.team-card:hover .team-image {
            filter: grayscale(0%);
        }

.team-info {
            padding: 1.5rem;
        }

.team-name {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--text-white);
        }

.team-role {
            color: var(--primary-gold);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

.team-social a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(246, 226, 122, 0.1);
            border-radius: 50%;
            color: var(--primary-gold);
            transition: var(--transition);
        }

.team-social a:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: scale(1.1);
        }

/* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(246, 226, 122, 0.1) 0%, rgba(201, 162, 70, 0.05) 100%);
            border-top: 1px solid var(--border-color);
        }

.cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

.cta-content h2 {
            margin-bottom: 1rem;
        }

.cta-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

/* ==================================== */
/* MOBILE: TEAM CARD - GAMBAR LEBIH TINGGI */
/* ==================================== */
@media (max-width: 768px) {
    .team-card {
        display: flex;
        flex-direction: column;
    }

.team-image {
        height: clamp(240px, 45vw, 320px) !important;
        object-position: center 20% !important;
    }

.team-info {
        padding: 1.5rem 1rem;
        text-align: center;
    }

.team-name {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

.team-role {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

.team-social {
        justify-content: center;
        gap: 1rem;
    }

.team-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(246, 226, 122, 0.1);
        border: 1px solid var(--primary-gold);
        border-radius: 50%;
        color: var(--primary-gold);
        transition: var(--transition);
    }

.team-social a:hover {
        background: var(--primary-gold);
        color: var(--primary-black);
        transform: translateY(-3px);
    }
}

/* ==================== FOOTER ==================== */
        footer {
            background: var(--primary-black);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
        }

.footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

.footer-brand h4 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

.footer-links h5 {
            color: var(--text-white);
            margin-bottom: 1rem;
        }

.footer-links ul {
            list-style: none;
        }

.footer-links li {
            margin-bottom: 0.5rem;
        }

.footer-links a {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

.footer-links a:hover {
            color: var(--primary-gold);
        }

.footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

.footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(246, 226, 122, 0.1);
            border-radius: 50%;
            color: var(--primary-gold);
            transition: var(--transition);
        }

.footer-social a:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
        }

.footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.875rem;
        }

/* ==================== ANIMATIONS ==================== */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.fade-in {
            animation: fadeIn 0.8s ease-out;
        }

/* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
            }

.container {
                padding: 0 15px;
            }

h1 { 
                font-size: 1.75rem; 
                word-wrap: break-word;
            }

h2 { 
                font-size: 1.5rem; 
                word-wrap: break-word;
            }

h3 { 
                font-size: 1.25rem; 
                word-wrap: break-word;
            }

header {
                padding: 0.5rem 0;
            }

.logo img {
                height: 35px;
            }

.nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: var(--primary-black);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                border-top: 1px solid var(--border-color);
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

.nav-menu.active {
                left: 0;
            }

.mobile-menu-toggle {
                display: block;
            }

.hero {
                min-height: 80vh;
                background-attachment: scroll;
            }

.hero-content {
                padding: 6rem 1 3rem;
            }

.hero h1 {
                font-size: 1.75rem;
                line-height: 1.3;
            }

.hero .lead {
                font-size: 1rem;
            }

.badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }

.btn-group {
                flex-direction: column;
                width: 100%;
            }

.btn {
                width: 100%;
                justify-content: center;
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
            }

.stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

.stat-card {
                padding: 1.5rem 1rem;
            }

.stat-number {
                font-size: 2rem;
            }

.stat-label {
                font-size: 0.75rem;
            }

.story-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

.story-text h3 {
                font-size: 1.25rem;
            }

.story-text p {
                font-size: 0.9rem;
            }

.story-images {
                grid-template-columns: 1fr;
            }

.story-image:first-child {
                grid-column: span 1;
            }

.timeline::before {
                left: 15px;
            }

.timeline-content {
                width: calc(100% - 45px);
                margin-left: 45px !important;
                padding: 1.5rem;
            }

.timeline-dot {
                left: 15px;
                width: 15px;
                height: 15px;
            }

.values-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

.value-card {
                padding: 1.5rem;
            }

.team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

.team-image {
                height: 200px;
            }

.cta-content h2 {
                font-size: 1.5rem;
            }

.cta-content p {
                font-size: 1rem;
            }

.footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

.footer-social {
                justify-content: center;
            }

.footer-bottom {
                font-size: 0.75rem;
                padding: 1.5rem 0.5rem 1rem;
            }

/* Prevent horizontal scroll */
            .section-header,
            .section-title,
            .section-subtitle {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

/* Adjust padding for all sections */
            .stats-section,
            .story-section,
            .timeline-section,
            .values-section,
            .team-section,
            .cta-section {
                padding: 3rem 0;
            }

/* Fix button group alignment */
            .btn-group {
                gap: 0.5rem;
            }
        }

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

.timeline-content {
                padding: 1rem;
                font-size: 0.875rem;
            }

.value-icon {
                font-size: 1.5rem;
            }
        }

/* ==================== LOADING ANIMATION ==================== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

.loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

.loader-circle {
            width: 50px;
            height: 50px;
            border: 3px solid var(--border-color);
            border-top: 3px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }