/* RESET & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* NAVIGASI PREMIUM */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* --- GAYA MENU NAVIGASI KANAN --- */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
    position: relative;
}

.nav-menu a:hover {
    opacity: 1;
}

/* Efek garis bawah saat hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Responsive: Sembunyikan menu di HP atau ubah jadi icon (opsional) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Sementara disembunyikan di HP agar tidak berantakan */
    }
}

.brand-name {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

.tagline {
    font-size: 12px;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* TESLA HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* KUNCI: Membuat video menutupi seluruh area tanpa gepeng */
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Menyesuaikan kegelapan video */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    /* Memastikan teks berada di atas video dan overlay */
    text-align: left;
    color: #fff;
}

/* MODULAR PORTFOLIO */
.portfolio-wrapper {
    background: #ffffff;
    color: #000;
    padding: 100px 0;
    width: 100%;
    min-height: 700px;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.portfolio-slider {
    display: flex;
    gap: 30px;
    padding: 20px 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #000;
    transform: scale(1.3);
}

/* CONTACT FORM */
#contact-section {
    background: #f9f9f9;
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.contact-box {
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-box input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .tagline {
        display: none;
    }

    .content h1 {
        font-size: 35px;
    }

    .portfolio-item {
        flex: 0 0 280px;
        height: 380px;
    }

    .cta-group {
        flex-direction: column;
        width: 80%;
    }
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --- NAVIGASI --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    opacity: 0.6;
    transition: 0.3s;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.3);
}

.nav-tagline {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HERO SECTIONS (TESLA STYLE) --- */
section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: 2s ease;
}

section.active .bg-image {
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.content {
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

section.active .content {
    opacity: 1;
    transform: translateY(0);
}

.content h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.cta-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 35px;
    border-radius: 90px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
}

/* --- Tambahkan kode ini --- */
.content p {
    font-size: 28px;
    /* Perbesar ukuran teks (sesuaikan angka ini) */
    font-weight: 300;
    /* Membuat teks agak tipis agar elegan */
    margin-bottom: 40px;
    /* Memberi jarak ke tombol di bawahnya */
    opacity: 0.9;
    /* Membuat teks tidak terlalu putih mencolok */
    line-height: 1.4;
    /* Memberi ruang antar baris */
}

/* --- PORTFOLIO SLIDER --- */
.portfolio-wrapper {
    background: #fff;
    color: #000;
    padding: 100px 0;
}

.portfolio-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.portfolio-slider {
    display: flex;
    gap: 30px;
    padding: 20px 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 20px;
    scroll-snap-align: center;
    transition: 0.4s;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #000;
    transform: scale(1.3);
}

/* --- CONTACT SECTION --- */
#contact-section {
    background-color: #f9f9f9;
    padding: 100px 0;
    height: auto;
    display: flex;
    justify-content: center;
}

.contact-box {
    margin-top: 50px;
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-box input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .content h1 {
        font-size: 35px;
    }

    .nav-tagline {
        display: none;
    }

    nav {
        padding: 15px 20px;
    }

    .portfolio-item {
        flex: 0 0 280px;
        height: 380px;
    }
}

/* --- FOOTER TEXT INFORMASI YANG KECIL2 --- */
.main-footer {
    background-color: #111;
    /* Latar belakang gelap premium */
    color: #bbb;
    /* Warna teks abu-abu terang agar mudah dibaca */
    padding: 80px 0 30px;
    font-size: 18px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Membuat 4 kolom dengan lebar proporsional */
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 50px;
}

.footer-col h3.footer-logo {
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.4;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-legal a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

/* Efek saat link disorot */
.footer-col ul li a:hover,
.footer-legal a:hover,
.footer-email:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 60px;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Sub-footer (Copyright) */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Garis pemisah tipis */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* RESPONSIF FOOTER (Untuk HP) */
@media (max-width: 900px) {
    .footer-container {
        /* Ubah jadi 2 kolom di tablet */
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        /* Ubah jadi 1 kolom tumpuk di HP */
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- SEKSI MITRA (LOGO SLIDER) --- */
.partners-wrapper {
    background-color: #fff;
    /* Latar belakang putih bersih */
    padding: 100px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.partners-label {
    font-size: 20px;
    letter-spacing: 5px;
    color: #330404;
    margin-bottom: 50px;
    font-weight: 600;
}

.partners-slider {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Jarak antar logo */
    overflow-x: auto;
    /* Memungkinkan geser kanan-kiri */
    padding: 0 50px 20px;
    scrollbar-width: none;
    /* Sembunyikan scrollbar di Firefox */
    -webkit-overflow-scrolling: touch;
}

/* Sembunyikan scrollbar di Chrome/Safari */
.partners-slider::-webkit-scrollbar {
    display: none;
}

.partners-slider img {
    height: 190px;
    /* Ukuran kecil tapi jelas */
    width: auto;
    filter: grayscale(20%);
    /* Efek hitam putih agar elegan */
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Logo berubah jadi warna/terang saat disentuh */
.partners-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .partners-slider {
        gap: 40px;
        padding: 0 30px;
    }

    .partners-slider img {
        height: 80px;
        /* Diperbesar agar jelas di HP */
    }
}

/* --- PERBAIKAN KHUSUS MOBILE (HP) --- */
@media (max-width: 600px) {

    /* Judul agar tidak terpotong */
    .content h1 {
        font-size: 32px !important;
        /* Perkecil ukuran dari 60px */
        line-height: 1.2;
        padding: 0 10px;
    }

    /* Teks paragraf agar tidak terlalu memenuhi layar */
    .content p {
        font-size: 16px !important;
        /* Perkecil dari 24px/28px */
        padding: 0 20px;
        margin-bottom: 30px;
    }

    /* Tombol agar pas di genggaman */
    .cta-group {
        flex-direction: column;
        /* Tombol menumpuk ke bawah */
        gap: 15px;
        width: 100%;
        padding: 0 40px;
    }

    .btn {
        width: 100%;
        /* Tombol melebar penuh di HP */
        padding: 12px 0 !important;
        font-size: 16px !important;
    }

    /* Navigasi agar tidak terlalu mepet pinggir */
    nav {
        padding: 15px 20px !important;
    }

    .brand-name {
        font-size: 16px !important;
    }
}

/* --- WHATSAPP FLOATING PREMIUM --- */
.wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Hijau WA */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.wa-tooltip {
    background: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Sembunyi dulu */
    transform: translateX(20px);
    transition: 0.4s;
    white-space: nowrap;
    pointer-events: none;
}

/* Animasi Hover */
.wa-container:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-container:hover .wa-button {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Animasi Pulse (Biar menarik perhatian) */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-button {
    animation: wa-pulse 2s infinite;
}

/* Responsif Mobile */
@media (max-width: 600px) {
    .wa-container {
        bottom: 20px;
        right: 20px;
    }

    .wa-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .wa-tooltip {
        display: none;
    }

    /* Sembunyikan teks di HP biar gak sempit */
}

/* --- MODERN MOBILE MENU DESIGN --- */

/* Hamburger Button (Lebih Minimalis) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #fff !important;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(0px, 0px);
    background: #fff !important;
    width: 30px;
}

/* Overlay Background */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(90, 0, 0, 0.949);
    backdrop-filter: blur(10px);
    /* Efek Kaca Modern */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    transform: translateY(-100%);
    /* Muncul dari atas */
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 10000;
}

.mobile-overlay.open {
    transform: translateY(0);
}

/* Teks Background Raksasa (Transparan) */
.overlay-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: -1;
}

/* Link Navigasi */
.mobile-links {
    display: flex;
    flex-direction: column;
}

.mobile-links a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.mobile-links a em {
    font-style: normal; /* Normal font, remove default italic from em */
}

.mobile-links a:hover,
.mobile-links a:active {
    color: #ffcd00;
    padding-left: 15px;
    border-bottom-color: rgba(255, 205, 0, 0.3);
    letter-spacing: 3px;
}

.mobile-links a:last-child {
    border-bottom: none;
}

/* Animasi muncul saat menu mobile terbuka */
.mobile-overlay.open .mobile-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.open .mobile-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-overlay.open .mobile-links a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-overlay.open .mobile-links a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-overlay.open .mobile-links a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-overlay.open .mobile-links a:nth-child(5) {
    transition-delay: 0.5s;
}

/* --- GENERAL CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* --- HOME NEWS HORIZONTAL STYLE --- */
.home-news-horizontal {
    padding: 50px 0;
    /* Padding ramping agar ga makan ruang */
    background: #f9f8f8;
    border-top: 1px solid #f9f9f9;
}

.news-h-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #3d0202;
    /* Kuning Minerium */
    padding-bottom: 10px;
}

.h-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #380404;
    margin: 0;
}

.y-text {
    color: #380404;
}

.h-btn-red {
    color: #cc0000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

/* Container untuk List Kartu */
.news-h-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* 2 kolom di desktop */
    gap: 20px;
}

/* KARTU HORIZONTAL (Kunci Sukses) */
.news-card-h {
    display: flex;
    /* Memaksa ke samping */
    background: #111;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: 0.3s ease;
    height: 180px;
    /* Tinggi ceper agar hemat ruang */
    overflow: hidden;
    margin-bottom: 15px;
}

.news-card-h:hover {
    border-color: #ffcd00;
    transform: translateX(10px);
    /* Efek goyang sedikit */
}

/* Wadah Gambar (di kiri) */
.nc-thumb {
    width: 180px;
    /* Lebar sama dengan tinggi agar kotak pas */
    min-width: 180px;
    height: 100%;
}

.nc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card-h:hover .nc-thumb img {
    transform: scale(1.1);
}

/* Wadah Teks (di kanan) */
.nc-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Teks rata tengah vertikal */
}

.nc-info .nc-date {
    color: #f7f3f3;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
}

.nc-info h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    /* Limit teks 2 baris agar rapi */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive (Mobile - Balik ke Vertikal) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .news-card-h {
        height: auto;
        flex-direction: column;
    }

    .nc-thumb {
        width: 100%;
        height: 160px;
    }

    .news-h-container {
        grid-template-columns: 1fr;
    }

    .home-news-horizontal {
        padding: 30px 0;
    }
}

/* Footer Menu */
.mobile-footer {
    position: absolute;
    bottom: 50px;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0;
    transition: 1s;
    transition-delay: 0.8s;
}

.mobile-overlay.open .mobile-footer {
    opacity: 1;
}

.footer-col p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 5px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    /* Fix hamburger menu layout agar semua konten terlihat */
    .mobile-overlay {
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 30px;
        overflow-y: auto;
    }

    .mobile-links a {
        font-size: 20px;
        padding: 12px 0;
    }

    .mobile-footer {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 30px;
    }
}

/* === LANGUAGE SWITCHER (NAVBAR) === */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.lang-flag {
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s all ease;
    display: inline-block;
    opacity: 0.5;
    padding: 2px 4px;
    border-radius: 4px;
}

.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 205, 0, 0.5));
}

.lang-flag.active {
    background: rgba(255, 205, 0, 0.15);
}

/* === MOBILE LANGUAGE SWITCHER === */
.mobile-lang-switcher {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
    transition-delay: 0.6s;
}

.mobile-overlay.open .mobile-lang-switcher {
    opacity: 1;
    transform: translateY(0);
}

.mobile-lang-switcher .lang-flag {
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s;
}

.mobile-lang-switcher .lang-flag:hover,
.mobile-lang-switcher .lang-flag.active {
    opacity: 1;
    background: rgba(255, 205, 0, 0.2);
    border-color: #ffcd00;
}

/* Transition for translated elements */
[data-i18n] {
    transition: opacity 0.2s ease;
}

/* --- COMING SOON SECTION --- */
.coming-soon-section {
    padding: 60px 0;
    background: #fafafa;
}
.cs-container {
    text-align: center;
    border: 2px dashed #ddd;
    padding: 50px 20px;
    border-radius: 12px;
    background: #fff;
    max-width: 800px;
    margin: 50px auto;
}
.cs-icon {
    font-size: 60px;
    color: #ffcd00;
    margin-bottom: 20px;
}
.coming-soon-section h2 {
    font-size: 28px;
    font-weight: 900;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.coming-soon-section p {
    color: #666;
    margin-bottom: 20px;
}
.cs-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #222;
    color: #ffcd00;
    font-size: 12px;
    font-weight: bold;
    border-radius: 30px;
    letter-spacing: 2px;
}

/* Responsive adjustment for Coming Soon Section */
@media (max-width: 768px) {
    .cs-container {
        margin: 30px 20px;
        padding: 40px 15px;
    }
    .coming-soon-section h2 {
        font-size: 22px;
    }
}