:root {
    --gold: #c5a367;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --grey-text: #a5a5a5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0; width: 100%;
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
}

a {
    text-decoration: none;
    color: #fff;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    letter-spacing: 5px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

nav ul { display: flex; list-style: none; }
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin-left: 20px;
    letter-spacing: 1px;
    transition: 0.3s;
}
nav ul li a:hover { color: var(--gold); }

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay { background: rgba(0,0,0,0.6); position: absolute; width: 100%; height: 100%; }
.overlay-dark { background: rgba(0,0,0,0.8); position: absolute; width: 100%; height: 100%; }

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

h1, h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Info Bar */
.info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #111;
    padding: 60px 10%;
    text-align: center;
}

.info-item h3 { color: var(--gold); font-size: 14px; margin-bottom: 15px; letter-spacing: 2px; }
.info-item p { font-size: 13px; color: var(--grey-text); }
.border-x { border-left: 1px solid #333; border-right: 1px solid #333; }

/* About Section */
.about-section {
    display: flex;
    padding: 100px 10%;
    gap: 50px;
    align-items: center;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 32px; }
.gold-text { color: var(--gold); font-weight: bold; margin-bottom: 15px; }

.about-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.grid-label {
    border: 1px solid var(--gold);
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    background: rgba(0,0,0,0.4);
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 25px;
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Video Section */
.footer-section { height: 70vh; text-align: center; }
.footer-content { position: relative; }

/* --- New Sections CSS --- */

/* Services */
.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 10%;
    background: #151515;
}

.service-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #222;
    transition: 0.3s;
}

.service-card:hover { border-color: var(--gold); }
.service-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--gold); }
.price-tag { display: block; margin-top: 15px; font-weight: bold; color: var(--gold); font-size: 20px; }

/* Pricing Table */
.pricing-section { padding: 100px 10%; background: var(--dark-bg); }
.section-title { text-align: center; margin-bottom: 50px; }

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.price-item { display: flex; align-items: baseline; margin-bottom: 20px; }
.dots { flex: 1; border-bottom: 1px dotted #444; margin: 0 10px; }

/* Slideshow Style */
.slideshow-container {
    position: relative;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Efek fade 1 detik */
}

.slide.active {
    opacity: 1;
}

.lang-switcher {
    margin-left: 20px;
    font-size: 12px;
    color: var(--grey-text);
}
.lang-btn {
    cursor: pointer;
    transition: 0.3s;
}
.lang-btn.active {
    color: var(--gold);
    font-weight: bold;
}
.lang-btn:hover {
    color: var(--gold);
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 992px) {
    h1 { font-size: 48px; }
    .about-section { flex-direction: column; text-align: center; }
    .about-grid { width: 100%; }
    .pricing-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header { padding: 20px 5%; flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav ul li { margin: 0 10px; }
    
    .info-bar { grid-template-columns: 1fr; gap: 30px; }
    .border-x { border: none; border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 30px 0; }
    
    .parallax-bg { background-attachment: scroll; background-position: center center; } 
    
    h1 { font-size: 36px; }
    h2 { 
        font-size: 32px !important; 
        line-height: 1.2;
        margin-bottom: 15px; /* Memberi jarak ke paragraf di bawahnya */
    }
    
    .hero-content { padding: 0 20px; }

    /* Perbaikan Khusus Footer/Social Section */
    .footer-section {
        padding: 100px 5%; /* Padding kiri kanan lebih kecil agar teks punya ruang */
        height: auto; 
        min-height: 500px;
        display: flex; /* Memastikan konten tetap di tengah */
        align-items: center;
        justify-content: center;
    }

    .footer-content {
        width: 100%;
        max-width: 400px; /* Membatasi lebar teks agar tidak terlalu melebar */
        padding: 0 10px;
        text-align: center;
    }

    .footer-content p {
        font-size: 14px; /* Sedikit memperkecil teks caption di mobile */
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-grid { grid-template-columns: 1fr; }
    .grid-item { height: 300px; }
}

/* --- Apple-style Fade In Animation --- */

/* State awal: Transparan dan bergeser sedikit ke bawah */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1); /* Beziér curve ala Apple */
}

/* State saat muncul: Terlihat dan kembali ke posisi semula */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tambahkan class reveal ke section-section utama di HTML Anda */
.hero-content, .info-item, .about-text, .about-grid, .service-card, .price-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.active .hero-content, 
.active .info-item, 
.active .about-text, 
.active .about-grid, 
.active .service-card, 
.active .price-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delay agar muncul bergantian (stagger effect) */
.info-item:nth-child(2) { transition-delay: 0.2s; }
.info-item:nth-child(3) { transition-delay: 0.4s; }