/* Custom Properties / Variables */
:root {
    --color-dark: #0F0F0F; /* Even darker background */
    --color-darker: #0A0A0A; /* Section background */
    --color-card-bg: #1A1A1A; /* Card background */
    --color-gold: #C0A04C; /* Rich Metallic Gold */
    --color-light-gold: #E6CC80; /* Lighter Gold for highlights */
    --color-text-light: #EEEEEE; /* Light text on dark background */
    --font-primary: 'Montserrat', sans-serif;
	--color-darkest: #050505;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-light-gold);
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

h2 {
    font-size: 2.8rem; /* Slightly larger heading */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: -0.5rem auto 2.5rem;
    box-shadow: 0 0 10px rgba(192, 160, 76, 0.5); /* Subtle glow */
}

/* --- LOGO & HEADER ANIMATIONS --- */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(192, 160, 76, 0.5);
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.8; transform: scale(1); }
    to { opacity: 1; transform: scale(1.05); }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(15, 15, 15, 0.98); /* Less transparent dark background */
    z-index: 1000;
    border-bottom: 2px solid var(--color-gold);
    animation: border-pulse 4s infinite alternate;
}

@keyframes border-pulse {
    from { box-shadow: 0 0 5px rgba(192, 160, 76, 0.3); }
    to { box-shadow: 0 0 15px rgba(192, 160, 76, 0.6); }
}

.nav a {
    margin-left: 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-out;
}

.nav a:hover::after {
    width: 100%;
}

/* --- HERO SECTION WITH FUTURISTIC GRID & ANIMATIONS (OPTIMIZED) --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4); /* Gelap */
    z-index: 0;
    animation: zoom-in-bg 20s infinite alternate; /* Animasi Zoom lambat */
}

@keyframes zoom-in-bg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Efek Grid Overlay */
.overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(192, 160, 76, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(192, 160, 76, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.3;
    animation: grid-pan 60s linear infinite; 
}

@keyframes grid-pan {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

/* Aksen Cahaya/Partikel di Sudut */
.corner-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 160, 76, 0.5) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 0;
    animation: corner-move 10s ease-in-out infinite alternate;
}

.top-left { top: -50px; left: -50px; }
.bottom-right { bottom: -50px; right: -50px; animation-delay: 1s; }

@keyframes corner-move {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, 20px); }
}

.hero-content {
    z-index: 1;
/*    padding: 20% 10%;*/
/*    max-width: 1000px;*/
	padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {       
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    line-height: 1.2;
    max-width: 100%;
    text-shadow: 0 0 20px rgba(192, 160, 76, 1), 0 0 40px rgba(192, 160, 76, 0.5);
    animation: text-flicker 3s infinite alternate;
}

@keyframes text-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
    52% { opacity: 1; }
    54% { opacity: 0.9; }
    56% { opacity: 1; }
}

.hero-content p {
    font-size: 1.2rem; /* Lebih besar */
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.cta-button {
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 18px 40px; /* Tombol yang lebih besar */
    border-radius: 8px; 
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(192, 160, 76, 0.8);
}

.cta-button:hover {
    background-color: var(--color-light-gold);
    transform: translateY(-5px) scale(1.03); /* Hover yang lebih dinamis */
    box-shadow: 0 0 30px rgba(192, 160, 76, 1);
}

@media (max-width: 1024px) {
	.hero-section {
        overflow: visible !important;
    }
	.hero-content {
        padding: 0 16px !important;
        max-width: 100%;
    }
    .hero-content h1 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        text-align: center;
    }
}

/* Penyesuaian Responsif */
@media (max-width: 768px) {
    /* Mengurangi ukuran font untuk H1 agar tidak memakan terlalu banyak baris di mobile */
    .hero-section {
        display: block;          /* ❗ MATIKAN FLEX */
        height: auto;
        min-height: unset;       /* ❗ JANGAN svh */
        padding-top: 120px;      /* header offset */
        padding-bottom: 80px;
    }
	.hero-content {
        margin: 0 auto;
        padding: 0 16px !important;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        white-space: normal;
        word-break: normal;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
	.header {
        position: relative; /* ❗ jangan sticky di HP */
        display: block;      /* ⬅️ BUKAN FLEX */
        flex-direction: column;
        align-items: center;
        padding: 12px 16px;
        gap: 10px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .nav a {
        margin: 0;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 12px;
        white-space: normal !important;
        text-align: center;
    }
}

/* --- GENERAL SECTION STYLES --- */
.content-section {
    padding: 100px 10%; /* More vertical space */
    text-align: center;
}

.alternate-bg {
    background-color: var(--color-darker);
}

/* --- SECTION VISI & MISI (BARU: BACKGROUND IMAGE & PARALLAX) --- */
#vision {
    /* Gunakan properti umum content-section, tapi tambahkan background spesifik */
    padding: 100px 10%; 
    text-align: center;
    
    /* 1. Pengaturan Gambar Latar Belakang */
    background-image: url('assets/vm.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* EFEK PARALLAX */
    position: relative;
    overflow: hidden;
}

/* 2. Pseudo-element untuk Overlay Gelap (Agar Teks Terbaca) */
#vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gunakan warna gelap (hitam) dengan opacity 60% */
    background-color: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}

/* 3. Memastikan Semua Konten Utama berada di atas Overlay */
#vision h2, 
#vision .underline, 
#vision .vm-container, 
#vision .tagline {
    position: relative;
    z-index: 2;
}

/* 4. Penyesuaian Warna Teks untuk Kontras Maksimal */
.vision-box, .mission-box {
    /* Kembalikan background card ke warna gelap agar kontras dengan gambar */
    background-color: rgba(15, 15, 15, 0.85); /* Darker dengan sedikit transparansi */
}
.vm-container {
    display: flex;
    gap: 40px;
    text-align: left;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
}

.vision-box, .mission-box {
    flex: 1;
    min-width: 300px; /* Ensure boxes don't get too small */
    padding: 35px; /* More padding */
    border: 1px solid var(--color-light-gold);
    border-radius: 10px; /* More rounded corners */
    background-color: var(--color-card-bg);
    transition: box-shadow 0.3s, transform 0.3s;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(192, 160, 76, 0.5);
}

.vm-container h3 {
    color: var(--color-gold);
    text-transform: uppercase;
    border-bottom: 1px dashed var(--color-light-gold);
    padding-bottom: 15px; /* More padding */
    margin-bottom: 20px;
}

.mission-box ul {
    list-style-type: none;
    padding-left: 0;
}
.mission-box li {
    position: relative;
    margin-bottom: 12px; /* More space between list items */
    padding-left: 25px; /* Space for bullet */
    font-size: 1rem;
}
.mission-box li::before {
    content: '✧';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.tagline {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-gold);
    border-left: 5px solid var(--color-gold);
    padding-left: 25px;
    margin: 50px auto 0;
    max-width: 1100px;
    text-align: left;
    line-height: 1.5;
}

.tagline1 {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-gold);
    border-left: 5px solid var(--color-gold);
    padding-left: 25px;
    margin: 50px auto 0;
    max-width: 1100px;
    text-align: left;
    line-height: 1.5;
	text-align: center;
}

/* --- SERVICE AND VALUE CARDS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Min-width 320px */
    gap: 30px;
    margin-top: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Min-width 250px for values */
    gap: 20px;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.service-card, .value-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid rgba(192, 160, 76, 0.2); 
    transition: background-color 0.3s, border-left 0.3s, transform 0.3s, box-shadow 0.3s;
    text-align: left;
    min-height: 170px; /* Increased min-height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover, .value-item:hover {
    background-color: #252525;
    transform: translateY(-5px);
    border-left: 5px solid var(--color-gold); 
    box-shadow: 0 0 20px rgba(192, 160, 76, 0.5); 
}

.service-card h4, .value-item h4 {
    color: var(--color-text-light);
    font-size: 1.15rem; /* Slightly larger heading */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.icon-placeholder {
    font-size: 1.7rem; /* Larger icon */
    color: var(--color-gold);
    margin-right: 15px;
    animation: pulse-icon 2s infinite alternate; 
    text-shadow: 0 0 5px rgba(192, 160, 76, 0.5);
}

@keyframes pulse-icon {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.service-card p, .value-item p {
    font-size: 0.95rem; /* Slightly larger paragraph */
    color: #AAA;
    margin-top: 5px;
    line-height: 1.5;
}

/* --- SECTION 4 NILAI UTAMA (BARU: BACKGROUND IMAGE & PARALLAX) --- */
#values {
    /* Gunakan properti umum content-section */
    padding: 100px 10%; 
    text-align: center;
    
    /* 1. Pengaturan Gambar Latar Belakang */
    background-image: url('assets/pilar.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* EFEK PARALLAX */
    position: relative;
    overflow: hidden;
}

/* 2. Pseudo-element untuk Overlay Gelap (Agar Teks Terbaca) */
#values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer gelap 65% */
    background-color: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}

/* 3. Memastikan Semua Konten Utama berada di atas Overlay */
/* Ganti .values-grid dengan nama kelas wrapper konten Nilai Utama Anda */
#values h2, 
#values .underline, 
#values .values-grid { 
    position: relative;
    z-index: 2;
}

/* 4. Penyesuaian untuk Kotak Nilai */
/* Asumsikan kotak individual memiliki kelas .value-box */
.value-box { 
     /* Memberi background gelap pada card agar teks Nilai Utama kontras dengan gambar di belakangnya */
    background-color: rgba(15, 15, 15, 0.85); 
    /* Tambahkan efek glow/shadow jika diperlukan untuk konsistensi */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 160, 76, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* --- TEAM SECTION --- */
.team-section {
    margin-top: 3rem;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Min-width 250px */
    gap: 30px;
    margin-top: 2.5rem;
}

.team-member {
    background-color: var(--color-card-bg);
    padding: 25px; /* More padding */
    border-radius: 10px; /* More rounded */
    border-top: 5px solid var(--color-gold);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(192, 160, 76, 0.4);
}

.profile-pic {
    width: 120px; /* Larger profile pic */
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 18px; /* More margin */
    background-size: cover;
    background-position: center;
    border: 4px solid var(--color-gold); /* Thicker gold frame */
    box-shadow: 0 0 10px rgba(192, 160, 76, 0.6);
    filter: grayscale(100%); /* Desaturated */
    transition: filter 0.5s ease-in-out;
}

.team-member:hover .profile-pic {
    filter: grayscale(0%); /* Color on hover */
    box-shadow: 0 0 20px rgba(192, 160, 76, 0.8);
}

.team-member h4 {
    margin-bottom: 8px;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.team-member .role {
    font-size: 0.95rem;
    font-weight: 400;
    color: #AAA;
}

/* --- EXPERT TEAM NEW STYLING --- */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.expert-member {
    background-color: var(--color-card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(192, 160, 76, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.expert-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(192, 160, 76, 0.4);
}

.expert-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 10px rgba(192, 160, 76, 0.6);
    filter: grayscale(100%); 
    transition: filter 0.5s ease-in-out;
}

.expert-member:hover .expert-pic {
    filter: grayscale(0%);
}

.expert-member h4 {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.expert-member p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* --- IMPACT SHOWCASE SECTION (Di atas Klien) --- */
.impact-showcase {
    display: flex;
    justify-content: center; /* Pusatkan item */
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto; /* Tambah margin atas/bawah */
    text-align: left;
    gap: 50px; /* Jarak antar item lebih lebar */
    flex-wrap: wrap; /* Izinkan wrapping di layar kecil */
    padding: 0 5%; /* Padding agar tidak terlalu mepet tepi */
}

.showcase-text {
    flex: 1; /* Ambil sisa ruang */
    min-width: 380px; /* Lebar minimum agar teks tidak terlalu sempit */
    max-width: 50%; /* Batasi lebar teks di desktop */
    padding-right: 20px; /* Sedikit padding tambahan */
}

/* --- IMPACT SHOWCASE SECTION (Perbaikan Warna) --- */
/* ... Properti layout lainnya tetap sama ... */

.showcase-text h3 {
    color: var(--color-gold); 
    font-size: 2rem; 
    margin-bottom: 15px;
    line-height: 1.2;
    /* MENINGKATKAN GLOW: Membuat cahaya emas lebih kuat dan menyebar */
    text-shadow: 0 0 10px rgba(192, 160, 76, 0.8), 0 0 20px rgba(192, 160, 76, 0.4); 
}

.showcase-text p {
    /* MENGUBAH WARNA PARAGRAF: Dari abu-abu kaku menjadi Soft Blue-White */
    color: #C0C0FF; /* Warna putih yang memiliki sedikit tint biru muda */
    font-size: 1rem;
    line-height: 1.6;
}

.showcase-image:hover {
    transform: translateY(-5px) scale(1.01);
    /* Glow yang lebih intens saat di-hover */
    box-shadow: 0 0 45px rgba(192, 160, 76, 1), 0 0 20px rgba(0, 0, 0, 0.8) inset;
}

.showcase-image {
    flex: 1; /* Ambil sisa ruang */
    min-width: 450px; /* Lebar minimum gambar agar terlihat baik */
    height: 300px; /* Ketinggian tetap */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    /* ... Properti layout lainnya tetap sama ... */
    border: 2px solid var(--color-gold);
    /* MEMPERKUAT GLOW DAN INTEGRASI: Tambahkan inset shadow agar terlihat lebih menyatu ke dalam card */
    box-shadow: 0 0 30px rgba(192, 160, 76, 0.5), 0 0 15px rgba(0, 0, 0, 0.8) inset; 
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden; 
}

/* Styling untuk Paragraf Pengantar Klien */
.clients-intro-text {
    max-width: 900px; /* Batasi lebar agar mudah dibaca */
    margin: 5rem auto 3rem; /* Memberi jarak signifikan dari showcase, dan jarak ke grid */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #DDD;
}


/* --- Responsive Adjustments for Impact Showcase --- */
@media (max-width: 992px) {
    .impact-showcase {
        flex-direction: column; /* Tumpuk secara vertikal di tablet */
        text-align: center;
    }
    .showcase-text {
        max-width: 80%; /* Batasi lebar teks agar tidak terlalu panjang */
        min-width: unset; /* Hapus min-width agar fleksibel */
        padding-right: 0;
    }
    .showcase-image {
        min-width: 90%; /* Ambil lebar hampir penuh */
        height: 250px; /* Kurangi tinggi sedikit */
        margin-top: 30px; /* Jarak dari teks */
    }
    .showcase-text h3 {
        font-size: 1.8rem;
    }
    .clients-intro-text {
        margin: 4rem auto 2.5rem; /* Sesuaikan margin untuk mobile */
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .showcase-text h3 {
        font-size: 1.5rem;
    }
    .showcase-text p {
        font-size: 0.9rem;
    }
    .showcase-image {
        height: 200px;
    }
}

/* --- CLIENTS SECTION --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Adjust min-width for logos */
    gap: 30px;
    margin-top: 3rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo-placeholder {
    height: 90px; /* Slightly taller */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-card-bg);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px; /* More padding */
    opacity: 0.6; /* More subtle initially */
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden; /* Ensure images don't overflow */
}

.client-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(80%); /* Desaturated and slightly darker */
    transition: filter 0.3s;
}

.client-logo-placeholder:hover {
    opacity: 1;
    transform: scale(1.08); /* More pronounced zoom */
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(192, 160, 76, 0.5); /* Gold glow on hover */
}

.client-logo-placeholder:hover img {
    filter: grayscale(0%) brightness(100%); /* Color on hover */
}

/* --- SECTION CONTACT US --- */
#contact {
    /* Background sangat gelap untuk kontras maksimal */
    background-color: var(--color-darkest); 
    padding: 100px 10%;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.contact-motto {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

/* WhatsApp Button Styling (Kuat & Menyala) */
.wa-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* Warna Hijau WhatsApp */
    color: var(--color-darkest);
    padding: 18px 45px;
    border-radius: 50px; 
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8); /* Glow Hijau */
}

.wa-button i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.wa-button:hover {
    background-color: #1DA851;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 35px rgba(37, 211, 102, 1);
}

.contact-details {
    margin-top: 40px;
    color: var(--color-text-light);
    font-size: 1rem;
}

.contact-details a {
    color: var(--color-gold);
    transition: color 0.3s;
}
.contact-details a:hover {
    color: var(--color-light-gold);
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-darkest);
    padding: 20px 10%;
    text-align: center;
    border-top: 1px solid rgba(192, 160, 76, 0.1);
}
footer p {
    color: #666;
    font-size: 0.8rem;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-darker);
    color: #AAA;
    text-align: center;
    padding: 50px 10%; /* More padding */
    border-top: 2px solid var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer p {
    margin: 8px 0;
}

.social-handle {
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 15px;
}
.contact-info .gold-text {
    color: var(--color-gold);
    font-weight: 600;
}

/* --- REVEAL ON SCROLL ANIMATIONS (Requires JavaScript) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for cascade effect */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s