:root {
    --bg-dark: #252f4d;
    --white: #FFFFFF;
    --pink: #ec4899;
    --yellow: #facc15;
    --brown: #a8a29e;
}

html {
    scroll-behavior: smooth;
}

body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: white;
    min-height: 100vh;
    font-family: Jost;
    overflow-x: hidden;
}

.offcanvas-backdrop.show {
    opacity: 0.5 !important;
    background-color: #000 !important;
}

.promo-bar {
    background-color: #F6F4E8;
    padding: 10px 0;
    font-weight: 500;
    color: #252F4D;
    letter-spacing: 3px;
    height: 40px;
    margin: 0;
    font-family: jost;
    text-align: center;
    justify-content: center;
}

.promo-bar h6 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    transform: translateY(20%);
}

.header.sticky-top {
    position: sticky;
    /* atau relative */
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 7%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: jost;
}

/* Logo */
.logo-container {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    margin: 0 15px 0;
    display: flex;
    align-items: center;
}

.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    font-family: jost;
    z-index: 2000;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.navbar a {
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 30px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.navbar a.active {
    background-color: #FFFFFF;
    color: #2D336B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.navbar a:hover:not(.active) {
    color: #f7cc5f;
}

.nav-right {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 20px;
    margin: 0 15px 0;
    justify-content: flex-end;
    min-width: 60px;
}

/* Language Switcher */
.lang-switcher {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.lang-inactive {
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 5px;
    opacity: 0.5;
}

.lang-active {
    background: white;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #2D336B;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: bold;
}



/* Contact Button */
.btn-contact {
    background-color: #ffc107;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #2D336B;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #f7cc5f;
    transform: translateY(-2px);
}

.btn-contact.active {
    background-color: #ffffff !important;
    color: var(--bg-dark) !important;
    border: 2px solid #252F4D;
    /* Opsional: beri border agar tetap terlihat tegas */
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    /* Menghilangkan padding bawaan agar ukuran presisi */
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggler-icon-custom {
    color: white !important;
    /* Memastikan warna putih */
    font-size: 40px !important;
    /* Ukuran sesuai permintaan */
    line-height: 1;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
    /* Sedikit efek saat ditekan */
}

.navbar-toggler:active .toggler-icon-custom {
    transform: scale(0.9);
}


/* Container Dropdown Utama */
.nav-links,
.nav-item-dropdown {
    position: static;
}

.nav-item-dropdown {
    display: flex;
    align-items: center;
    height: 100%;
    /* Agar area hover mengikuti tinggi header */
    cursor: pointer;
}

/* Mega Menu Container (Hidden by default) */
.mega-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    /* Tinggi celah antara tombol dan menu */
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    /* Tidak terlihat tapi bisa mendeteksi mouse */
}

.mega-menu {
    display: none;
    position: absolute;
    top: 150%;
    left: 50%;
    right: 0;
    width: 110vw;
    padding-top: 20px;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 40px 75px;
    /* Menyesuaikan padding header Anda */
    border-top: 1px solid #ddd;
}

/* Hover Effect */
.nav-item-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu-container {
    padding: 0 7%;
    display: flex;
    gap: 40px;
    margin: 0 auto;
    width: 100%;
}

/* Sidebar Menu (Kiri) */
.mega-menu-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
}

.mega-menu-sidebar a {
    color: #333 !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    border-radius: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
}

.mega-menu-sidebar a:hover {
    color: #ffc107 !important;
    background: transparent !important;
    text-decoration: none !important;
}

/* Content Area (Kanan - Grid Gambar) */
.mega-menu-content {
    flex: 1;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-content.active {
    display: grid;
}

.sidebar-item.active {
    color: #ffc107 !important;
    /* Warna kuning saat aktif/hover */
    padding-left: 10px !important;
    border-left: 3px solid #ffc107;
}

.mega-menu-content-wrapper {
    flex: 1;
}

.mega-card {
    text-align: center;
    cursor: pointer;
}

.mega-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: transform 0.4s ease, color 0.4s ease;
}

.mega-card h6 {
    font-size: 13px;
    color: #2D336B;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.mega-card span {
    font-size: 12px;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
}

.mega-card:hover img {
    transform: scale(1.1);
}

.mega-card:hover h6 {
    text-decoration: none;
    color: #ffc107;
}

/* Penyesuaian navbar agar dropdown rapi */
.nav-links {
    position: relative;
}



/* --- BTN UP --- */
#btnBackToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: white;
    color: #252F4D;
    cursor: pointer;
    padding: 0;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    /* Menggunakan inline-flex agar tombol tetap pada aliran teks */
    align-items: center;
    /* Tengah secara Vertikal */
    justify-content: center;
}

#btnBackToTop:hover {
    background-color: #ffc107;
    color: #1f2b4a;
    transform: translateY(-3px);
}

/* --- Trust Brand --- */
.partner-section {
    background-color: #FFFFFF;
    padding: 20px 10px;
    text-align: center;
}

.partner-title {
    color: #333;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.logo-partner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-partner img {
    height: auto;
    width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-partner img:hover {
    opacity: 1;
}


/* Container Utama */
.quotes {
    background-color: white;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Keadaan Awal (Tersembunyi) */
.fade-in-text,
.slide-up-text {
    color: var(--bg-dark);
    text-align: center;
    font-family: 'Jost', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    /* Mulai sedikit dari bawah */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    /* Kecepatan animasi */

    /* Perbaikan padding agar tidak hilang di layar kecil */
    max-width: 900px;
    padding: 10px 20px;
}

.fade-in-text {
    font-size: clamp(40px, 8vw, 80px);
    /* Ukuran font fleksibel */
    font-weight: bold;
    line-height: 1.1;
}

.slide-up-text {
    font-size: 20px;
    transition-delay: 0.3s;
    /* Memberikan jeda muncul setelah judul */
}

/* Keadaan Saat Terlihat (Aktif) */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* Product Page */
.product-page {
    background-color: #1a2542;

    /* Membuat beberapa titik cahaya (glow) menggunakan radial gradient */
    background-image:
        radial-gradient(circle at 15% 85%, rgba(55, 84, 133, 0.6) 0%, transparent 40%),
        /* Glow kiri bawah */
        radial-gradient(circle at 25% 45%, rgba(63, 94, 149, 0.5) 0%, transparent 35%),
        /* Glow tengah kiri */
        radial-gradient(circle at 50% 30%, rgba(58, 88, 141, 0.6) 0%, transparent 30%),
        /* Glow tengah atas */
        radial-gradient(circle at 90% 85%, rgba(50, 77, 122, 0.7) 0%, transparent 45%);
    /* Glow kanan bawah besar */

    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    min-height: 90vh;
    font-family: jost;
}

.product-header-area {
    height: 150px;
    /* Tentukan tinggi area "bermain" judul */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Judul mulai dari atas area ini */
}

.product-title-container {
    position: sticky;
    top: 90px;
    /* Jarak judul dari atas layar saat sudah kecil */
    z-index: 10;
    margin-bottom: 50px;
}

#product-shrinking-title {
    font-size: 120px;
    /* Ukuran default saat masih di bawah */
    font-weight: 800;
    font-family: jost;
    color: white;
    transition: font-size 0.05s ease-out;
    /* Transisi sangat cepat agar responsif */
    margin: 0;
}

.main-desc {
    font-family: jost;
    font-size: 1rem;
    color: #fff;
    margin-top: 10px;
}

.product-cards-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.product-card {
    background: white;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    max-width: 530px;
    height: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sisi Kiri (Grid) */
.card-left {
    flex: 1.4;
    padding: 30px;
    display: flex;
    align-items: center;
}

/* Sisi Kanan (Info) */
.card-right {
    flex: 1;
    background-color: #F6F4E8;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    color: #1a2433;
}

/* Struktur Grid Selang-seling */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.grid-box {
    background: #cbd5e1;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.grid-box.small {
    height: 80px;
}

.grid-box.tall {
    height: 130px;
}

.grid-box.full-tall {
    height: 220px;
}

/* Menaikkan kotak kiri bawah agar asimetris */
.card-grid .grid-box:nth-child(3) {
    margin-top: -50px;
}

/* Efek Hover Zoom & Teks */
.grid-box:hover {
    transform: scale(1.1);
    z-index: 2;
}

.hover-text {
    opacity: 0;
    font-size: 10px;
    font-weight: 700;
    transition: 0.3s;
    color: #334155;
}

.grid-box:hover .hover-text {
    opacity: 1;
}

/* Teks Info Produk */
.card-info h3 {
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Tombol See More */
.btn-card-more {
    display: inline-block;
    padding: 10px 25px;
    background: #ffc107;
    color: #1a2433;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-card-more:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.product-benefit-skyrail {
    background-color: white;
    height: 550px;
}

.img-wrapper {
    position: relative;
    top: 80px;
    left: 150px;
}

.img-base {
    position: relative;
    z-index: 1;
    width: 300px;
}

.img-top {
    position: absolute;
    top: -140px;
    left: -50px;
    z-index: 2;
    width: 380px;
}

.benefit-title {
    font-family: jost;
    font-weight: bold;
    margin-top: 50px;
    width: 90%;
    color: #333;
}

.highlight {
    color: #2B328A;
}

.benefit-list {
    font-family: jost;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.benefit-list h6 {
    margin: 0;
    line-height: 1.4;
    width: 80%;
    font-size: 16px;
    font-weight: 300;
}

/* Bagian Tombol */
.button-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-see-more {
    background-color: #2c364c;
    /* Warna biru gelap sesuai gambar */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: jost;
}

.arrow-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #2c364c;
    font-size: 18px;
}

/* Efek Hover Sederhana */
.btn-see-more:hover {
    background-color: #3e4b69;
}


/* SKYTECH BENEFIT */
.product-benefit-skytech {
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1)), 
                url(../img/background.png) no-repeat center center;
    background-size: cover;
    padding: 100px 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: jost;
}

.grid-containerp {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cardp {
    background: white;
    width: calc(50% - 20px); /* Dua kolom */
    min-width: 300px;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-boxp {
    width: 80px;
    height: 80px;
    background-color: #ffc131;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px; 
    color: white;   
    padding: 10px;
}

.contentp h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.contentp p {
    font-size: 15px;
    color: #333;
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .cardp {
        width: 100%;
    }

    .product-benefit-skytech {
        padding: 50px 40px;
    }

}







.container-skytech h1 {
    font-family: jost;
    font-weight: bold;
    text-align: center;
    margin-bottom: 70px;
    color: #333;
}

.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    /* Kolom tengah tetap 300px */
    gap: 20px;
    align-items: start;
    max-width: 1100px;
    margin: 80px auto;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.col-left {
    margin-top: 20px;
}

.col-center {
    margin-top: 80px;
}

.col-right {
    margin-top: -40px;
}

/* Styling Visual Kartu */
.card1 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 330px;
    padding: 15px 30px;
    margin-left: -50px;
}

.card1 h5 {
    font-size: 18px;
    font-family: jost;
    font-weight: 500;
}

.card1 h6 {
    font-size: 14px;
    font-family: jost;
    font-weight: 200;
    text-align: justify;
}

.card2 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 330px;
    padding: 15px 30px;
    margin-left: 40px;
}

.card2 h5 {
    font-size: 18px;
    font-family: jost;
    font-weight: 500;
}

.card2 h6 {
    font-size: 14px;
    font-family: jost;
    font-weight: 200;
    text-align: justify;
}

.card3 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 330px;
    padding: 15px 30px;
    margin-left: 100px;
}

.card3 h5 {
    font-size: 18px;
    font-family: jost;
    font-weight: 500;
}

.card3 h6 {
    font-size: 14px;
    font-family: jost;
    font-weight: 200;
    text-align: justify;
}

.card4 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 330px;
    padding: 15px 30px;
    margin-left: 20px;
}

.card4 h5 {
    font-size: 18px;
    font-family: jost;
    font-weight: 500;
}

.card4 h6 {
    font-size: 14px;
    font-family: jost;
    font-weight: 200;
    text-align: justify;
}

.card5 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 330px;
    padding: 15px 30px;
    margin-left: -300px;
    margin-top: 10px;
}

.card5 h5 {
    font-size: 18px;
    font-family: jost;
    font-weight: 500;
}

.card5 h6 {
    font-size: 14px;
    font-family: jost;
    font-weight: 200;
    text-align: justify;
}

.num {
    font-weight: bold;
    font-style: italic;
    font-size: 23px;
    display: block;
    margin-bottom: 10px;
}


/* Mengatur ukuran gambar */
.center-image {
    width: 350px;
    height: auto;
    object-fit: cover;
    margin-top: -100px;
    margin-left: -20px;
}



/* Trust Bar */

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2b4a;
    color: white;
    margin-top: -50px;
    padding: 30px 70px 20px;
    gap: 80px;
}

.stat {
    flex: 1;
}

.left p {
    font-size: 20px;
    line-height: 1.4;
    font-family: jost;
}

.center,
.right {
    text-align: center;
}

.center h3,
.right h3 {
    font-size: 28px;
    margin: 0;
    font-family: jost;
}

.center span,
.right span {
    font-size: 14px;
    opacity: 0.85;
    font-family: jost;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}



.key-values-section {
    position: relative;
    min-height: 100vh;
    background-image: url(../img/keyv.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efek Parallax tipis */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* Overlay agar teks lebih mudah dibaca */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Gelapkan gambar sedikit */
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* Styling Judul */
.title {
    font-size: 70px;
    font-weight: 700;
    font-family: jost;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Grid Kolom */
.values-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.value-item {
    flex: 1;
    padding: 0 20px;
}

.value-item p {
    font-size: 16px;
    font-family: jost;
    line-height: 1.6;
    opacity: 0.9;
}

/* Garis Pembatas Vertikal */
.divider {
    width: 2px;
    height: 150px;
    background-color: white;
    opacity: 0.8;
}

/* --- LOGIKA ANIMASI SCROLL --- */
.animate-scroll {
    opacity: 0;
    transform: translateY(50px);
    /* Mulai dari bawah */
    transition: all 1s ease-out;
}

.animate-scroll.show {
    opacity: 1;
    transform: translateY(0);
    /* Kembali ke posisi asli */
}

/* --- NEWS OF THE YEAR --- */
.news {
    background-color: white;
    min-height: 100vh;
    margin-bottom: 70px;
    font-family: jost;
}

.news-title h1 {
    font-family: jost;
    font-size: 50px;
    font-weight: 700;
    color: #333;
    text-align: center;
    justify-content: center;
    padding: 80px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 85%;
    margin: 0 auto 20px;
    padding: 0 40px;
}

.container-card {
    display: flex;
    flex-wrap: nowrap; /* Mencegah kartu turun ke bawah */
    overflow-x: hidden; /* Sembunyikan scrollbar manual */
    scroll-behavior: smooth; /* Efek geser halus */
    gap: 20px;
    width: 100%;
}

.card {
    flex: 0 0 calc((100% / 4) - (60px / 4));
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    color: #333;
}

.card-text {
    font-size: 15px;
    color: #333;
}

.btn-news {
    display: inline-block;
    padding: 10px 20px;
    background-color: #252F4D;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
}

/* Tombol Navigasi */
.btn-nyu {
    background-color: #FFC436;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 20px;
    position: absolute;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}

.btn-nyu:hover {
    background-color: #FFC436;
    transform: scale(1.05);
}

.prev { left: 0; }
.next { right: 0; }

@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc((100% / 2) - (20px / 2));
    }
}

/* Responsif: Jika layar HP, tampilkan 1 kartu saja */
@media (max-width: 600px) {
    .container-card {
        overflow-x: auto; /* Biarkan bisa di-swipe jari */
    }
    .card {
        flex: 0 0 100%;
    }
    .nav-btn { display: none; }
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 50px 10% 10px 10%;
    font-family: jost;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
}

/* Branding & Form */
.footer-logo {
    width: 50%;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--text-gray);
}

.footer-tagline {
    max-width: 350px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 17px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 20px;
    color: white;
    width: 250px;
}

.newsletter-form button {
    background-color: #ffc107;
    color: var(--bg-dark);
    border-radius: 20px;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Navigasi */
.footer-nav {
    display: flex;
    gap: 60px;
}

.nav-column h3 {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: bold;
}

.nav-column ul {
    list-style: none;
    padding: 0;
}

.nav-column ul li {
    margin-bottom: 12px;
}

.nav-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-column ul li a:hover {
    color: #ffc107;
}

.nav-column ul li a:active {
    color: #ffc107;
}

.line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    /* Garis putih transparan tipis */
}

.fontsky {
    margin-top: 50px;
    width: 100%;
    justify-content: center;
}


/* Bagian Bawah */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 12px;
    margin-top: 50px;
    font-family: jost;
}

.footer-bottom h6 {
    font-size: 14px;
}


.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: opacity 0.3s;
}


/* COMPANY PROFILE */
.profile-container {
    padding: 130px 10%;
    background-color: #ffffff;
    font-family: jost;
}

.profile-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sisi Kiri */
.profile-left {
    flex: 1;
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Membuat gambar kotak sempurna */
    margin-bottom: 10px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
    /* Gambar membesar sedikit saat di-hover */
}

.caption {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-left: 30px;
    font-weight: 300;
}

/* Garis Putus-putus Vertikal */
.vertical-divider {
    width: 1px;
    border-left: 2px dashed #ccc;
    align-self: stretch;
    /* Membuat garis setinggi konten */
}

/* Sisi Kanan */
.profile-right {
    flex: 1.15;
    /* Sedikit lebih lebar untuk menampung teks */
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 13px;
    color: #999;
    font-weight: bold;
    letter-spacing: 1px;
}

.data-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.highlights {
    font-weight: bold;
    color: #333;
}

/* INDICATOR */
.indicator {
    padding-bottom: 70px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    font-family: jost;
}

.indic-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
    border: 2px solid #707070;
    /* Warna border luar sesuai gambar */
    border-radius: 20px;
    /* Membuat sudut melengkung */
    padding: 30px 50px;
    width: 100%;
    max-width: 1030px;
    gap: 20px;
}

.indic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.indic-number {
    font-size: 42px;
    font-weight: 600;
    color: #333;
}

.indic-label {
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    font-weight: 500;
}

/* Garis Vertikal Pembatas */
.divider2 {
    width: 2px;
    height: 60px;
    background-color: #707070;
}





/* VISIMISI */
.vision-mission-section {
    background-color: var(--bg-dark);
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: jost;
}

.vm-container {
    display: flex;
    gap: 30px;
    max-width: 1025px;
    width: 100%;
    flex-direction: column;
}

/* Styling Kartu */
.vm-card {
    background-color: #F6F4E8;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* Judul */
.vm-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Garis Putus-putus */
.vm-divider {
    border-top: 2px dashed #999;
    margin-bottom: 20px;
    width: 100%;
}

/* Teks Deskripsi */
.vm-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    text-align: justify;
}


/* founder section */
.founder-section {
    background-color: #ffffff;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: jost;
}

.founder-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    gap: 60px;
    /* Jarak antara foto dan teks */
}

/* Styling Foto */
.founder-image {
    flex: 1;
    text-align: right;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

/* Styling Konten Teks */
.founder-content {
    flex: 1.2;
    text-align: left;
    margin-bottom: 50px;
}

.founder-content h1 {
    font-family: 'Jost', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.founder-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Styling Nama & Jabatan */
.founder-signature .company-name {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.founder-signature .founder-name {
    font-size: 20px;
    font-weight: 800;
    color: #333;
}


/* HISTORY */
.history-section {
    padding: 90px 10%;
    text-align: center;
    overflow: hidden;
    background-color: white;
}

.history-title {
    font-family: jost;
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 50px;
    text-transform: uppercase;
}

.timeline-container {
    position: relative;
}

/* Garis horizontal */
.timeline-line {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(37, 47, 77, 0.5);
    z-index: 1;
}

.timeline-wrapper {
    display: flex;
    align-items: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 80px;
    z-index: 2;
    position: relative;
}

.timeline-item {
    min-width: 300px;
    flex: 1;
    text-align: left;
    opacity: 0.4;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.timeline-item.active {
    opacity: 1;
}

/* Titik di garis */
.dot {
    width: 12px;
    height: 12px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    margin-bottom: 30px;
    /* Jarak tetap ke angka tahun */
    position: relative;
    z-index: 2;
    /* Menumpuk di atas garis */

    /* Gunakan flex alignment untuk memastikan sejajar horizontal */
    flex-shrink: 0;
}

.year {
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--bg-dark);
    font-family: jost;
    font-weight: 500;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bg-dark);
    font-family: jost;
}

/* Ikon mengambang di atas garis */
.icon-floating {
    height: 60px;
    margin-bottom: 20px;
}

.icon-floating img {
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Area Tombol */
.navigation-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Jarak antara tombol kiri dan kanan */
    margin-top: 40px;
    position: relative;
    z-index: 100;
}

.nav-btn {
    background-color: #FFC436;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: #FFC436;
    transform: scale(1.05);
}

/* LOCATIONS */
.location {
    background-color: var(--bg-dark);
    width: 100%;
    height: auto;
    padding: 80px 20px;
    font-family: jost;
}

.location h1 {
    font-family: jost;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin: 40px;
    color: white;
}

.maps {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 450px;
    border-radius: 15px;
}

.map-container {
    text-align: center;
    border-radius: 15px;
}

.location h6 {
    font-family: jost;
    font-size: 16px;
    text-align: left;
    margin: 20px 170px;
    color: white;
}




/* CONTACT US */
.contact-section {
    background: linear-gradient(to right,
            #F8FAFF 60%,
            /* Sisi kiri polos (60% lebar) */
            transparent 60%),
        url(../img/keyvalues.png);
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 80px;
    align-items: flex-start;
}

/* Kolom Kiri */
.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 50px;
    font-family: jost;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-item {
    font-family: jost;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.info-item p {
    margin-top: 10px;
}

.info-icon {
    font-weight: bold;
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.follow-text {
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

.social-icon a {
    color: black;
    text-decoration: none;
    font-size: 25px;
    margin-right: 15px;
}

/* Kolom Kanan (Formulir) */
.contact-form-card {
    flex: 1;
    background: #fff;
    padding: 50px;
    box-shadow: -12px 26px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: jost;
}

.form-title {
    font-size: 24px;
    font-family: jost;
    margin-bottom: 30px;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: jost;
    background-color: transparent;
    color: #333;
    padding: 1px 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    font-size: 14px;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

.btn-full {
    width: 100%;
    height: 50px;
    background-color: var(--bg-dark);
    /* Warna Navy sesuai brand Anda */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    /* Membuat sudut melengkung */
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.btn-full:hover {
    background-color: #1a2238;
}


/* Sembunyikan pesan error secara default */
.error-message {
    display: none;
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
}

/* Style saat input salah/kosong setelah di-submit */
.was-validated input:invalid, 
.was-validated textarea:invalid {
    border: 1px solid #ff4d4d !important;
    background-color: #fff5f5;
}

/* Munculkan pesan error hanya jika input di dalamnya invalid */
.was-validated input:invalid ~ .error-message,
.was-validated textarea:invalid ~ .error-message {
    display: block;
}

/* Berikan sedikit efek transisi agar smooth */
input {
    transition: border-color 0.3s ease;
}

/* Styling Animasi Sukses */
.success-overlay {
    display: none;
    /* Sembunyi */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: popUp 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn-close-modal {
    margin-top: 25px;
    padding: 10px 30px;
    background-color: #252F4D;
    /* Warna Navy yang sama dengan tombol utama */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    /* Agar mudah diklik di HP */
}

.btn-close-modal:hover {
    background-color: var(--bg-dark);
    transform: translateY(-2px);
    /* Efek sedikit terangkat */
}

.btn-close-modal:active {
    transform: translateY(0);
}

.about-anchor-bar {
    background-color: #ffffff;
    /* Warna kontras dengan Navy */
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 80px;
    /* Sesuaikan dengan tinggi navbar utama Anda */
    z-index: 90;
    text-align: center;
}

.anchor-links a {
    text-decoration: none;
    color: #666;
    /* Warna abu-abu agar tidak menonjol berlebihan */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.anchor-links a:hover {
    color: #252F4D;
    /* Kembali ke Navy saat di-hover */
}

.divider {
    color: #ddd;
    margin: 0 25px;
}



.exhibition-section {
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.exhibition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 0;
}

.sub-label {
    font-family: jost;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.main-year {
    font-size: 35px;
    font-weight: 700;
    font-family: jost;
    margin: 0;
    letter-spacing: -2px;
}

.main-year.past {
    color: #ccc;
    /* Sesuai gambar, tahun lalu warnanya pudar */
}

/* TABLE STYLING */
.exhibition-title h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    font-family: jost;
}

.container-exhibition {
    width: 90%;
    /* Mengambil 90% lebar layar di perangkat kecil */
    max-width: 1200px;
    /* Lebar maksimal konten di layar besar (Desktop) */
    margin: 0 auto;
    /* Membuat konten otomatis berada di tengah */
    padding: 50px 50px;
}

.event-table {
    width: 100%;
}

.event-row {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
    transition: background 0.3s ease;
}

.event-row:hover {
    background-color: #fcfcfc;
}

.event-col {
    padding: 0 15px;
}

/* Column Sizes */
.col-img {
    width: 15%;
}

.col-date {
    width: 15%;
    text-align: left;
    border-left: 1px solid #eee;
}

.col-title {
    width: 30%;
    border-left: 1px solid #eee;
}

.col-desc {
    width: 40%;
    border-left: 1px solid #eee;
}

/* Image Styling */
.col-img img {
    width: 125px;
    height: 80px;
    object-fit: cover;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Typography inside Table */
.col-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: jost;
}

.col-date .year {
    color: #aaa;
    font-size: 18px;
}

.col-title h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: jost;
}

.col-desc p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-family: jost;
}

.locatione {
    font-size: 13px;
    font-family: jost;
    color: #888;
    display: block;
}

.exhibition-header {
    margin-top: 50px;
}



/* Gallery */
.hero-container {
    display: flex;
    min-height: 70vh;
    width: 100%;
    padding-top: 120px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #F6F4E8;
}

.text-wrapper {
    max-width: 500px;
    text-align: center;
}

.text-wrapper h1 {
    font-family: jost;
    font-size: 50px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-wrapper p {
    font-family: jost;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

/* Link More About */
.more-about {
    font-family: jost;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.more-about span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.more-about:hover span {
    transform: translateX(10px);
}

/* Pengaturan Sisi Kanan (Gambar) */
.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Memastikan gambar memenuhi area tanpa gepeng */
    display: block;
}

/* COLLECTION */
/* Container Utama */
.collection-section {
    padding: 130px 10%;
    background-color: white;
    font-family: jost;
}

/* Header Styling */
.collection-header {
    padding-top: 20px;
    margin-bottom: 50px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-top h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.view-all {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-desc {
    max-width: 600px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.garis {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    margin-bottom: 50px;
}

/* Grid Layout (Masonry-like) */
.collection-grid {
    column-count: 4;
    /* Membagi menjadi 4 kolom */
    column-gap: 30px;
}

.grid-item {
    display: inline-block;
    /* Penting untuk column-count agar tidak terpotong */
    width: 100%;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.grid-item p {
    font-size: 0.85rem;
    color: #888;
}

/* Tombol Load More */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-load-more {
    background-color: var(--bg-dark);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-load-more:hover {
    background-color: #333;
}

/* ABOUT SKYRAIL */
.basic-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(../img/keyvalues.png);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: jost;
}

.hero-content-basic h1 {
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero-content-basic p {
    max-width: 650px;
    font-size: 16px;
    padding: 0 20px;
}

/* Section 2: Intro */
.section-intro {
    padding: 60px 20px 20px;
    text-align: center;
    background-color: #ffffff;
}

.section-intro h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.section-intro h2 span {
    color: #484c7f;
}

.main-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
}

/* Section 3: Grid Cards */
.section-cards {
    background-color: var(--bg-dark);
    /* Warna biru navy tua */
    padding: 80px 20px;
    margin-top: 40px;
    font-family: jost;
}

.cards-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cards {
    background-color: #F6F4E8;
    padding: 25px;
    border-radius: 12px;
}

.cards-header {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #bbb;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.icon-number {
    width: 35px;
    height: 35px;
    background-color: var(--bg-color, #726DA8);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.cards h3 {
    color: var(--bg-color, #726DA8);
    margin-top: 9px;
    font-weight: 600;
}

.cards p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    text-align: justify;
}

/* Menengahkan kartu terakhir */
.cards-center {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 50%;
}

/* SKYRAIL INSIGHTS */
.skyrail-insights-section {
    min-height: 100vh;
    background-color: #f0f7ff;

    /* Cahaya putih yang kuat dikombinasikan dengan biru es */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 1) 0%, transparent 50%),
        /* Putih murni di sudut */
        radial-gradient(circle at 100% 0%, rgba(224, 240, 255, 0.9) 0%, transparent 60%),
        /* Biru es segar */
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        /* Pantulan bawah */
        radial-gradient(circle at 80% 80%, rgba(204, 229, 255, 0.6) 0%, transparent 40%);
    /* Aksen biru paling gelap tapi tetap light */

    background-attachment: fixed;
    width: 100%;
    /* Full width horizontal */
    padding: 20px 0;
    /* Jarak atas bawah */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skyrail-insights-container h1 {
    font-family: jost;
    font-size: 50px;
    font-weight: bold;
    color: #252F4D;
    text-align: center;
    padding-top: 120px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Sembunyikan Input Radio */
input[type="radio"] {
    display: none;
}

/* Styling Label (Header Tab) */
.tabs label {
    padding: 10px 30px;
    background-color: #bcbcbc;
    /* Abu-abu tab tidak aktif */
    color: #444;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    margin-right: 4px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s;
    font-family: jost;
}

/* Efek saat Tab Dipilih (Checked) */
input[type="radio"]:checked+label {
    background-color: #ffffff;
    /* Putih saat aktif */
    color: var(--bg-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Container Konten Putih di Bawah Tab */
.tab-content-wrapper {
    width: 1000px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 0 8px 8px 8px;
    min-height: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    justify-content: center;
}

/* Sembunyikan semua konten secara default */
.content {
    display: none;
    font-family: jost;
    padding: 30px 20px;
}

/* Tampilkan konten yang sesuai dengan radio button yang aktif */
#tab1:checked~.tab-content-wrapper #content1,
#tab2:checked~.tab-content-wrapper #content2,
#tab3:checked~.tab-content-wrapper #content3,
#tab4:checked~.tab-content-wrapper #content4 {
    display: block;
}

/* Styling Teks Konten */
.content h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
    font-family: jost;
    font-weight: 500;
}

.skyrail-insights-container {
    width: 90%;
    /* Lebar fleksibel di layar kecil */
    max-width: 1000px;
    /* Lebar MAKSIMAL tetap di layar besar */
    margin: 0 auto;
}

.content-header h3 {
    font-weight: 600;
    font-size: 23px;
}

.content-header p {
    text-align: justify;
    margin-bottom: 30px;
}

.content-image {
    display: flex;
    gap: 100px;
    text-align: center;
    justify-content: center;
}

.content-image img {
    width: 44.3%;
    margin-top: 20px;
}

.content-kinds {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 41px;
}

.content-kinds-item img{
    max-width: 430px;
}

.content-kinds-item h4 {
    font-weight: 600;
    margin-top: 15px;
    color: #333;
    font-size: 20px;
}

.content-kinds-item p {
    text-align: justify;
}

.content-title2 {
    background-color: var(--bg-dark);
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 15px 20px 2px;
}

.content-title2 h3 {
    font-weight: 600;
    font-size: 23px;
    color: white;
    justify-content: center;
}



/* RESOURCES */
.resources-section {
    padding: 100px 0 100px;
    font-family: jost;
    background-color: #fff;
    overflow: hidden;
    /* Mencegah judul berjalan keluar layar */
}

/* --- Animasi Judul Berjalan --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 120px;
    z-index: 10;
    pointer-events: none;
}

.marquee-content {
    display: inline-block;
    animation: marquee 70s linear infinite;
}

.marquee-content span {
    font-size: 100px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    /* Gunakan warna transparan agar gambar tetap terlihat sedikit */
    -webkit-text-stroke: 2px #333;
    font-family: Jost;
    margin-right: 50px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Grid & Card Styles --- */
.resources-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    position: relative;
    z-index: 5;
}

.resource-card {
    position: relative;
    flex: 1;
    max-width: 1500px;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

/* Efek Zoom Out saat Hover */
.resource-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    /* Default lebih besar untuk efek zoom out */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.8;
}

.resource-card:hover img {
    transform: scale(1);
    /* Mengecil (Zoom Out) saat kursor masuk */
}

/* Konten di dalam Kartu */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.card-overlay h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-learn {
    background-color: #ffc107;
    /* Warna kuning sesuai gambar */
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    text-decoration: none;
}

.resource-card:hover .btn-learn {
    background-color: #e0a800;
    transform: translateY(-5px);
}



/* USAGE GUIDE */
.dream-section {
    padding: 0 0 80px;
    background-color: #ffffff;
    overflow: hidden;
}

.dream-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 40px;
}

/* Styling Gambar */
.dream-image {
    flex: 1;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.dream-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lengkungan Gambar (Sesuai Referensi) */
.left-img {
    border-radius: 80px;
    /* Lengkung kanan atas saja */
    transform: translateX(-80px);
    /* Sedikit menonjol ke luar */
    margin-top: -150px;
}

.right-img {
    border-radius: 80px;
    /* Lengkung kiri atas saja */
    transform: translateX(80px);
    margin-top: 150px;
}

.dream-image:hover {
    transform: translateX(0) scale(1.02);
}

/* Konten Teks Tengah */
.dream-content {
    flex: 1.5;
    text-align: center;
    padding: 0 40px;
    max-width: 600px;
}

.star-icon {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.dream-content h2 {
    font-family: jost;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.dream-content h2 i {
    font-style: italic;
}

.dream-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-family: jost;
}

/* Tombol Black */
.btn-touch {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 20px;
    transition: 0.3s;
    font-family: jost;
}

.btn-touch:hover {
    background-color: #333;
    letter-spacing: 1px;
}




/* PRODUCTS SECTION */
.products-slide {
    font-family: jost;
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fffef2;
    /* Ganti URL di bawah dengan gambar sabun Anda */
    background: url(../img/fotobgs.jpeg) no-repeat center center/cover;
    background-attachment: fixed;
    object-position: bottom;
}

/* Overlay Gelap Transparan */
.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Menghitamkan gambar sedikit agar teks terbaca */
    z-index: 1;
}


.products-slide-content {
    position: relative;
    z-index: 2;
}

.products-slide h1 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
}

.products-slide h6 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

.btn-shop {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-shop:hover {
    background-color: #fff;
    color: #333;
}

/* Product Section */
.products {
    padding: 80px 10%;
    text-align: center;
    font-family: jost;
}

.products h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

/* --- TAMPILAN DESKTOP (Grid Tetap) --- */
.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.products-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    /* Kita ganti wrap menjadi nowrap agar kartu berjejer menyamping */
    flex-wrap: nowrap; 
    width: 100%;
    transition: all 0.3s ease;
}

.products-card {
    /* Kita bagi 4 secara presisi di desktop */
    flex: 0 0 calc(25% - 30px); 
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.products-card:hover {
    transform: translateY(-5px);
}

.products-img {
    background-color: #E2E7FF;
    border-radius: 15px;
    padding: 90px 25px;
    position: relative;
    margin-bottom: 15px;
    /* Tambahan agar gambar tetap rapi di dalam kotak */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.05), 
                inset -3px -3px 5px rgba(255, 255, 255, 0.03);
}

.products-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Menggunakan contain agar produk utuh terlihat */
    mix-blend-mode: multiply;
}

/* Sembunyikan Tombol Navigasi di Desktop */
.btn-pro {
    display: none;
}



.solar-banner {
    /* Ganti URL image di bawah dengan path gambar Anda */
    background: linear-gradient(rgba(255, 255, 0, 0.2), rgba(255, 255, 0, 0.2)), 
                url(../img/r4.jfif) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #7a8a4d; /* Fallback color */
    padding: 20px 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: jost;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Batas lebar maksimal konten */
}

.text-section h1 {
    color: white;
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.text-section p {
    color: white;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 400;
}

.btn-touch {
    background-color: white;
    color: #333;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px; /* Membuat bentuk oval */
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-touch:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsif untuk layar kecil/HP */
@media (max-width: 768px) {
    .solar-banner {
        padding: 20px 50px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .button-section {
        margin-bottom: 20px;
    }
    
    .text-section h1 {
        font-size: 25px;
        margin-top: 20px;
    }

    .text-section p {
        font-size: 15px;
    }

    .btn-touch {
        font-size: 15px;
    }
}

/* --- TAMPILAN MOBILE (Berubah Jadi Carousel) --- */
@media (max-width: 768px) {
    .products-grid {
        justify-content: flex-start; /* Kartu mulai dari kiri */
        overflow-x: auto; /* Aktifkan scroll horizontal */
        scroll-snap-type: x mandatory; /* Efek "magnet" saat swipe */
        scroll-behavior: smooth;
        gap: 20px; /* Jarak lebih kecil di HP */
        padding: 20px 0;
    }

    /* Sembunyikan scrollbar bawaan browser agar estetik */
    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .products-card {
        /* Di HP kartu melebar (85% layar) agar sisa kartu sebelah terlihat sedikit */
        flex: 0 0 85%; 
        scroll-snap-align: center;
        max-width: none; /* Hapus limit max-width desktop */
    }

    /* Munculkan tombol navigasi di HP */
    .btn-pro {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        background: #252F4D;
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        opacity: 0.8;
    }

    .prev { left: 0px; }
    .next { right: 0px; }

    .products-img {
        padding: 50px 20px; /* Padding lebih kecil agar gambar tidak kekecilan di layar HP */
        height: 200px;
    }
}

/* Badge & Text tetap menggunakan style awalmu */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #333;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 10px;
}

.products-card h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.products-card p {
    font-size: 0.9rem;
    color: #777;
}



/* PRODUCT SOLAR */
.product-solar {
    background: radial-gradient(ellipse at top left, #F6F4E8, #E2E7FF);
    background-attachment: fixed;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px 8%;
    font-family: jost;
}

.solar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.solar-text {
    transform: translateX(-50px);
}

.solar-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: bold;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    width: 500px;
}

.solar-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

.btn-dark {
    display: inline-block;
    padding: 12px 35px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #ffc107;
    color: #fff;
}

.solar-image {
    opacity: 0;
    transition: all 1s ease;
    transform: translateX(50px);
}

.solar-image img {
    width: 100%;
    border-radius: 15px;
    /* Sesuai gambar asli */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solar-text.show {
    opacity: 1;
    transform: translateX(0);
}

.solar-image.show {
    opacity: 1;
    transform: translateX(0);
}

.solar-text.active,
.solar-image.active {
    opacity: 1;
    transform: translateX(0);
}



/* --- Collections Section --- */
.collections-solar {
    padding: 80px 5%;
    text-align: center;
    font-family: jost;
}

.collections-solar h2 {
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.collection-grid-solar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card-solar {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.collection-card-solar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-overlay-solar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Overlay gelap tipis */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background 0.3s ease;
}

.collection-overlay-solar h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.collection-overlay-solar span {
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
}

/* Hover Effects */
.collection-card-solar:hover img {
    transform: scale(1.1);
}

.collection-card-solar:hover .collection-overlay-solar {
    background: rgba(0, 0, 0, 0.4);
}



/* PRODUCT CATALOG */

/* Tabs */

.tabsc {
    display: flex;
    justify-content: center;
    gap: 2px;
    background: #ddd;
    padding: 10px;
    font-family: jost;
}

.tabc {
    padding: 12px 30px;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
}

.tabc.active {
    background: white;
    font-weight: bold;
}

/* Layout */
.layout {
    display: flex;
    font-family: jost;
    background-color: white;
}


/* Sidebar */
.sidebar {
    width: 270px;
    background-color: white;
    padding: 30px;
    transition: 0.4s;
}

.sidebar.collapsed {
    width: 0;
    padding: 0;
    overflow: hidden;
}

.sidebar h3 {
    margin-bottom: 30px;
}

.filter {
    margin-bottom: 15px;
}

.search-btn {
    margin-top: 10px;
    padding: 8px 15px;
    background: #ffc107;
    border: none;
    cursor: pointer;
    width: 240px;
}

/* Content */
.contentc {
    flex: 1;
    padding: 30px 30px;
}

/* Banner */
.banner {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.toggle-btn {
    padding: 8px 15px;
    background: #ffc107;
    border: none;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #aaa;
    padding: 5px 10px;
}

.search-box input {
    border: none;
    outline: none;
}

.light-section {
    padding: 0 170px;
}

/* Cards */
.cardsc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cardc img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.cardc h5 {
    margin: 10px 0;
}

.btn-details {
    display: inline-block;
    padding: 6px 18px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-details:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
}

.cardc button {
    padding: 6px 15px;
    border: 1px solid #333;
    background: white;
    cursor: pointer;
}


.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 100px 0 40px;
    font-family: sans-serif;
}

.page-btn {
    padding: 8px 12px;
    background: #f1f1f1;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.page-btn:hover {
    background: #ddd;
}

.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.page-box {
    padding: 8px 14px;
    background: #333;
    color: white;
    border-radius: 6px;
    font-weight: bold;
}

.total-box {
    padding: 8px 14px;
    background: #f1f1f1;
    border-radius: 6px;
    font-weight: bold;
}

.of-text {
    font-weight: 600;
    color: #555;
}


.cardcd img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}





/* Catalog visibility */
.catalog {
    display: none;
}

.catalog.active {
    display: block;
}


.cardc .h5{
    text-align: left;
}


/* Sembunyikan semua catalog */
.catalog-anchor-bar {
    background-color: #ffffff;
    /* Warna kontras dengan Navy */
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 80px;
    /* Sesuaikan dengan tinggi navbar utama Anda */
    z-index: 90;
    text-align: center;
}

.catalog {
    display: none;
}

/* Tampilkan yang active */
.catalog.active {
    display: block;
}

/* Warna default anchor */
.anchor-link a {
    text-decoration: none;
    font-family: jost;
    padding: 6px 10px;
    cursor: pointer;
    display: inline-block;
    color: #666;
    /* Warna abu-abu agar tidak menonjol berlebihan */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    user-select: none;
}

/* Saat aktif → biru */
.anchor-link a.active {
    color: #ffc107;
    font-weight: 600;
}



/* detail product */
.detail-slide {
    max-width: 1080px;
    margin: 70px auto;
    font-family: jost;
}

/* Header Area */
.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #777;
    margin-bottom: 30px;
}

/* Product Area */
.productd-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.product-gallery {
    max-width: 550px;
}

.main-imaged {
    width: 100%;
    border: 1px solid #eee;
    overflow: hidden;
}

.main-imaged img {
    width: 100%;
    display: block;
    transition: 0.3s ease;
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-arrow:hover { background: rgba(0,0,0,0.8); }
.prev { left: 10px; }
.next { right: 10px; }

.thumbnail {
    width: 90px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: 0.2s;
}

.thumbnail:hover {
    border-color: #f1c40f;
}

.thumbnail.active {
    border-color: #f1c40f;
}




.productd-image img {
    width: 500px;
    display: block;
}

.productd-info {
    flex: 1;
}

.productd-info h1{
    font-weight: bold;
    margin-bottom: 40px;
}

.productd-title h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
}

.short-text h6{
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: justify;
}

/* Accordion Style */
.accordion-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.accordion-row:last-child {
    border-bottom: 1px solid #ccc;
}

/* Tabs Section */
.bottom-section {
    margin-top: 20px;
}

.tab-menu {
    display: flex;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 20px 0;
    font-size: 15px;
    color: #555;
    cursor: default;
    /* Kursor jadi tangan */
    transition: 0.2s;
}

.tab-item:hover {
    background-color: #f9f9f9;
    color: #000;
}

.tab-item.active {
    font-weight: bold;
    color: #000;
    background-color: #f0f0f0;
    /* Memberi tanda tab mana yang aktif */
}

.tab-content {
    padding: 30px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    min-height: 100px;
    display: block;
}

.tab-detail {
    padding: 30px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.bottom-line {
    border-bottom: 1px solid #ccc;
    margin-top: 20px;
}





.accordions {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.accordions-item {
    border-top: 1px solid #ddd;
}

.accordions-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    background: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordions-header:hover {
    background: #ececec;
}

.accordions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    background: #fff;
}

.accordions-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.icon {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordions-item.active .icon {
    transform: rotate(45deg);
}

.accordions-item.active .accordion-content {
    max-height: 200px;
    padding: 15px;
}


.icons8-plus {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNIDExIDIgTCAxMSAxMSBMIDIgMTEgTCAyIDEzIEwgMTEgMTMgTCAxMSAyMiBMIDEzIDIyIEwgMTMgMTMgTCAyMiAxMyBMIDIyIDExIEwgMTMgMTEgTCAxMyAyIFoiLz48L3N2Zz4=') 50% 50% no-repeat;
    background-size: 100%;
}


/* Container Utama Pop-up */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    /* Muncul saat load */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    font-family: jost;
}

.modal-card {
    background: #fff;
    width: 900px;
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-body {
    display: flex;
    width: 100%;
}

/* Sisi Kiri */
.modal-content-left {
    flex: 1;
    padding: 60px 45px;
    text-align: center;
}

.subtitle {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.titlep {
    font-size: 35px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.1;
    letter-spacing: 0px;
    padding: 0 20px;
    font-weight: bold;
}

.separator {
    margin-bottom: -30px;
    font-weight: bold;
}

/* Timer Styling */
.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 30px;
}

.digits span {
    background: #e0e7ff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 24px;
    color: #2d3748;
    margin: 0 2px;
}

.labelh {
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    color: #777;
}

/* Tombol */
.reserve-btn {
    display: inline-block;
    background: #28334d;
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
}

/* Sisi Kanan */
.modal-image-right {
    flex: 0.9;
    background-size: cover;
    background-position: center;
}

/* Tombol Close */
.close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Tombol Bulat di Kanan Bawah */
.floating-btn {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #28334d;
    border-radius: 50%;
    display: none;
    /* Awalnya sembunyi */
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: bounce 2s infinite;
}

.recommend-section{
    text-align:center;
    font-family: jost;
    margin-bottom: 80px;
}

.recommend-title h2{
    font-size: 30px;
    font-weight: bold;
}

.recommend-grid{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}


/* ARTIKEL */
.ar912 {
    font-family: "Poppins", sans-serif;
}


.category-section {
    padding: 20px 80px;
    text-align: center;
    font-family: jost;
    background-color: white;
    height: auto;
}

.section-header .titleb {
    font-family: jost;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 50px;
    color: #333;
}

/* Grid Layout */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.category-item {
    flex: 0 0 18%;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Efek Oval dengan Garis Putus-putus */
.image-containerb {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 2 / 3; /* Membuat bentuk portrait memanjang */
    border-radius: 100px; /* Membuat bentuk oval/pill */
    border: 1px dashed #bbb; /* Garis putus-putus di luar */
    padding: 8px; /* Jarak antara garis dan gambar */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.image-containerb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 90px; /* Harus sedikit lebih kecil dari kontainer agar rapi */
}

/* Hover Effect */
.category-item:hover .image-containerb {
    transform: translateY(-10px);
}

/* Teks di bawah gambar */
.category-item h3 {
    font-family: jost;
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;    
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }
}




/* --- Animations --- */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}




/* Responsif */
@media (max-width: 1024px) {
    .collection-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .collection-grid {
        column-count: 2;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        column-count: 1;
    }
}




/* Responsif Mobile */
@media (max-width: 991px) {
    .product-cards-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-card {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .card-right {
        text-align: center;
        justify-content: center;
    }

    .product-title-container {
        position: relative !important;
        /* Matikan sticky di HP agar judul tetap di atas */
        top: 0 !important;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    #product-shrinking-title {
        /* Kunci ukuran judul di HP agar tidak terlalu ekstrem besarnya */
        font-size: 32px !important;
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
    }

    .main-desc {
        font-size: 14px !important;
        max-width: 280px;
        margin: 10px auto 0 auto;
    }

    .product-cards-row {
        gap: 20px;
        padding: 0 10px;
    }

    .product-card {
        max-width: 320px;
        /* Kecilkan lebar kartu agar tidak memenuhi layar */
        border-radius: 20px;
        /* Sudut lebih kecil agar proporsional */
    }

    .card-left {
        padding: 15px;
        /* Kurangi padding dalam */
    }

    .grid-box.small {
        height: 50px;
    }

    .grid-box.tall {
        height: 80px;
    }

    .grid-box.full-tall {
        height: 140px;
    }

    /* Sesuaikan margin asimetris untuk skala kecil */
    .card-grid .grid-box:nth-child(3) {
        margin-top: -30px;
    }

    .card-right {
        padding: 20px 15px;
    }

    .card-info h3 {
        font-size: 1.1rem;
    }

    .card-info p {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .btn-card-more {
        padding: 8px 20px;
        font-size: 0.7rem;
    }

    .footer-top {
        flex-direction: column;
        padding-bottom: 40px;
    }

    .footer-tagline h3{
        font-size: 16px;
    }

    .footer-top h3 {
        font-size: 14px;
    }

    .footer-top li {
        font-size: 11px;
    }

    .footer-nav {
        gap: 60px;
        flex-wrap: wrap;
    }

    .footer-bottom h6 {
        font-size: 11px;
    }

    .newsletter-form button {
        padding: 8px 16px;
    }

}


@media (max-width: 768px) {
    .header.sticky-top {
        padding: 15px 4%;
    }

    .promo-bar {
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .promo-bar h6 {
        max-width: 90%;
        transform: translateY(5%);
        font-size: 9px;
    }

    .logo-container {
        gap: 12px;
    }

    .logo-image img{
        width: 40px;
        margin: 0 5px 0 0;
    }

    .brand-name img{
        height: 20px;
        margin-left: -15px;
    }

    .offcanvas {
        background-color: var(--bg-dark) !important;
        /* Warna biru sidebar */
        width: 55% !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .offcanvas-title {
        color: white !important;
        font-weight: bold;
    }

    /* Ubah tombol close X jadi putih */
    .btn-close {
        filter: invert(1) brightness(200%);
    }

    .offcanvas .nav-item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        /* Gunakan 100% agar pas di dalam container */
    }

    .offcanvas .nav-link {
        color: white !important;
        padding: 1.2rem !important;
        display: block;
        text-align: left;
        text-decoration: none;
    }

    .offcanvas .nav-link.active {
        color: #FFC436 !important;
        font-weight: 700;
    }

    .offcanvas .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFC436 !important;
    }


    /* --- Penyesuaian Accordion (Baru) --- */

    .offcanvas .accordion-item {
        background-color: transparent !important;
        border: none !important;
    }

    /* Menyamakan gaya tombol Resources dengan nav-link lainnya */
    .offcanvas .accordion-button {
        background-color: transparent !important;
        color: white !important;
        padding: 1.2rem !important;
        /* Sama dengan .nav-link */
        font-size: 1rem;
        box-shadow: none !important;
        font-weight: 400 !important;
    }

    /* Warna saat accordion terbuka atau di-hover */
    .offcanvas .accordion-button:not(.collapsed),
    .offcanvas .accordion-button:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #FFC436 !important;
    }

    /* Mengubah warna icon panah (arrow) menjadi putih */
    .offcanvas .accordion-button::after {
        filter: invert(1) brightness(200%);
    }

    /* Styling isi di dalam accordion (sub-menu) */
    .offcanvas .accordion-body {
        padding: 0 0 1rem 1.5rem;
        /* Memberi indentasi ke kanan */
        background-color: rgba(0, 0, 0, 0.1);
        /* Sedikit lebih gelap agar terlihat seperti level 2 */
    }

    /* Warna untuk Button Utama (Level 1) & Sub-Button (Level 2) saat aktif */
    .offcanvas .accordion-button.active {
        color: #FFC436 !important; /* Kuning emas */
        background-color: rgba(255, 255, 255, 0.05) !important;
    }

    /* Pastikan icon panah (arrow) juga ikut berubah warna saat aktif */
    .offcanvas .accordion-button.active::after {
        filter: invert(75%) sepia(80%) saturate(1000%) hue-rotate(360deg) brightness(105%) contrast(105%) !important;
    }

    /* Warna untuk link anak (Level 3) saat aktif */
    .offcanvas .sub-link.active {
        color: #FFC436 !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-mega-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-mega-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-mega-menu li:last-child {
        border-bottom: none;
    }

    .mobile-mega-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.8rem 1rem !important;
        display: block;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .mobile-mega-menu a:hover {
        color: #FFC436 !important;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .logo-partner {
        gap: 25px;
    }

    .logo-partner img {
        width: 80px;
    }

    .partner-title {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .fade-in-text {
        font-size: clamp(40px, 8vw, 80px);
    }

    .slide-up-text {
        font-size: 13px;
    }

    .product-benefit-skyrail {
        min-height: 800px;
    }

    .benefit-title {
        margin-top: -250px;
    }

    .img-wrapper {
        top: 200px;
        justify-content: center;
    }

    .img-base {
        position: relative;
        z-index: 1;
        width: 200px;
    }

    .img-top {
        position: absolute;
        top: -100px;
        z-index: 2;
        width: 280px;
    }

    .benefit {
        margin: 50px;
    }

    .benefit-list {
        font-family: jost;
        list-style: none;
        margin-top: 320px;
        margin-bottom: 30px;
    }

    .benefit-list li {
        display: flex;
        /* Membuat ikon dan p berjejer ke samping */
        align-items: flex-start;
        /* Menjaga ikon tetap di atas jika teks sangat panjang */
        gap: 12px;
        /* Memberi jarak antara ikon dan teks */
        margin-bottom: 15px;
        /* Jarak antar baris list */
        font-size: 15px;
        text-align: justify;
    }

    .btn-see-more {
        font-size: 15px;
        width: 140px;
    }


    .skytech-title {
        font-family: jost;
        font-weight: bold;
        padding-left: 50px;
        padding-right: 50px;
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    .layout-wrapper {
        display: flex;
        flex-direction: column;
        /* Mengunci alur ke bawah */
        align-items: center;
        /* Menyejajarkan semua konten ke tengah horizontal */
        margin: 20px auto 100px;
        gap: 10px !important;
        /* Jarak antar elemen (gambar dan kartu) */
        width: 100%;
    }

    .col-left,
    .col-center,
    .col-right {
        display: contents;
        /* Menghilangkan pengaruh kontainer kolom agar kartu langsung diatur oleh .layout-wrapper */
    }

    .card1 {
        order: 1;
    }

    .card2 {
        order: 2;
    }

    .center-image {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 65%;
        margin: 10px 10px;
    }

    .card3 {
        order: 4;
    }

    .card4 {
        order: 5;
    }

    .card1,
    .card2,
    .card3,
    .card4 {
        margin-left: 0 !important;
        /* Menghapus semua margin zig-zag */
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        /* Jarak antar kartu ke bawah */
        width: 90% !important;
        /* Lebar kartu mengikuti layar HP */
        max-width: 350px;
        /* Batas lebar agar tidak terlalu besar */
        position: static !important;
        transform: none !important;
        box-sizing: border-box;
    }

    .card1 p,
    .card2 p,
    .card3 p,
    .card4 p {
        padding-right: 15px;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        width: 100px;
        height: 2px;
        margin: 20px 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .stats-bar {
        flex-direction: row;
        /* Tetap sejajar horizontal */
        justify-content: space-between;
        padding: 15px 15px;
        /* Padding sangat tipis agar muat */
        gap: 20px;
        /* Jarak antar kolom dipersempit */
        margin-top: -30px;
        /* Margin negatif dikurangi agar tidak terlalu ekstrem */
        overflow: hidden;
        /* Mencegah elemen keluar batas */
    }

    .left p {
        font-size: 13px;
        line-height: 1.2;
        max-width: 211px;
    }

    .center h3,
    .right h3 {
        font-size: 16px;
        /* Ukuran angka/judul diperkecil */
    }

    .center span,
    .right span {
        font-size: 10px;
        /* Keterangan di bawah angka dibuat sangat kecil */
        display: block;
        line-height: 1;
    }

    .stars {
        font-size: 10px;
        /* Ukuran bintang diperkecil */
        margin: 2px 0;
    }


    .main-wrapper {
        grid-template-columns: 1fr;
        /* Menjadi satu kolom saja */
    }

    .left-side {
        padding: 20px 0;
        border-bottom: 2px dashed #ccc;
        /* Tambah garis pembatas bawah di HP */
    }

    .left-side img {
        display: block;
        /* Mengubah gambar dari inline menjadi block */
        margin: 0 auto;
        /* Memberikan jarak otomatis di kiri dan kanan */
        max-width: 80%;
    }

    .right-side {
        padding: 30px 0;
        border-left: none;
        /* Hilangkan garis samping di HP */
    }

    .caption {
        text-align: justify;
        max-width: 90%;
        /* Batasi lebar agar ada ruang untuk bergeser */
        margin-left: auto;
        /* Dorong dari kiri */
        margin-right: auto;
        /* Dorong dari kanan */
        display: block;
    }

    .top-text {
        text-align: justify;
        max-width: 90%;
        /* Batasi lebar agar ada ruang untuk bergeser */
        margin-left: auto;
        /* Dorong dari kiri */
        margin-right: auto;
        /* Dorong dari kanan */
        display: block;
    }

    .right-side .bottom-image img {
        margin-top: 70px;
        width: 90%;
        margin-left: auto;
        /* Dorong dari kiri */
        margin-right: auto;
        /* Dorong dari kanan */
        display: block;
    }


    .indic-bar {
        /* Mengurangi padding agar lebih compact di HP */
        padding: 15px 10px;
        gap: 10px;
        width: 95%;
        /* Menggunakan hampir seluruh lebar layar */
        border-radius: 12px;
        /* Melengkung sedikit dikecilkan */
    }

    .indic-item {
        gap: 5px;
        /* Jarak antara angka dan teks dipersempit */
    }

    .indic-number {
        /* Angka mengecil otomatis: min 20px, ideal 5% lebar layar, max 32px */
        font-size: clamp(20px, 5vw, 32px);
    }

    .indic-label {
        /* Teks label mengecil otomatis: min 10px, max 14px */
        font-size: clamp(10px, 2.5vw, 14px);
        line-height: 1.1;
    }

    .divider2 {
        /* Garis pembatas juga dikecilkan tingginya */
        height: 30px;
        width: 1.5px;
    }

    .vm-container {
        flex-direction: column;
        /* Kotak bertumpuk di HP */
    }

    .vm-card {
        padding: 30px;
    }

    .founder-container {
        flex-direction: column;
        /* Foto di atas, teks di bawah */
        gap: 40px;
        text-align: center;
        padding: 30px;
    }

    .founder-image {
        text-align: center;
    }

    .founder-image img {
        margin: 0 auto;
    }

    .founder-content {
        text-align: center;
    }

    .founder-content h1 {
        font-size: 32px;
    }

    .founder-content p {
        text-align: justify;
        /* Teks di dalam tetap rata kiri */
        max-width: 90%;
        /* Batasi lebar agar ada ruang untuk bergeser */
        margin-left: auto;
        /* Dorong dari kiri */
        margin-right: auto;
        /* Dorong dari kanan */
        display: block;
    }

    .timeline-wrapper {
        gap: 50px;
    }

    .year {
        font-size: 23px;
    }

    .history-title {
        font-size: 36px;
    }

    .description {
        font-size: 15px;
        line-height: 1.6;
        font-weight: 100;
    }

    .location-title {
        font-size: 30px;
    }

    .map-container {
        width: 30%;
    }

    .location h6 {
        font-size: 15px;
        text-align: justify;
        margin-left: 10px;
        margin-right: 10px;
        display: block;
    }

    #btnBackToTop {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .contact-section {
        /* Mengubah background menjadi satu warna polos agar teks di HP mudah dibaca */
        background: #F8FAFF;
        padding: 80px 50px;
    }

    .contact-wrapper,
    .contact-content {
        /* Mengubah arah dari samping (row) menjadi ke bawah (column) */
        flex-direction: column;
        gap: 40px;
        align-items: center;
        /* Mengetengahkan konten di layar HP */
    }

    .info-column,
    .contact-info {
        width: 100%;
        text-align: justify;
        /* Membuat judul dan deskripsi ke tengah saat di HP */
        padding-right: 0;
    }

    .contact-title {
        font-size: 36px;
        /* Mengecilkan ukuran judul agar muat di HP */
    }

    .form-column,
    .contact-form-card {
        width: 100%;
        display: block;
    }

    .contact-form-card {
        max-width: 100%;
        /* Form mengambil lebar penuh layar HP */
        padding: 30px 20px;
        box-shadow: none;
        /* Opsional: Menghilangkan shadow agar terlihat lebih clean di layar kecil */
        border: 1px solid #eee;
        /* Memberi batas tipis sebagai pengganti shadow */
    }

    .name-row {
        flex-direction: column;
        /* Input Nama Depan & Belakang jadi atas-bawah di HP */
        gap: 0;
    }

    .event-row {
        flex-direction: column;
        gap: 20px;
    }

    .event-col {
        width: 100% !important;
        border-left: none !important;
        padding: 0;
    }

    .main-year {
        font-size: 32px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-image {
        height: 400px;
    }

    .text-wrapper h1 {
        font-size: 30px;
    }

    .text-wrapper p {
        font-size: 16px;
    }

    .profile-content {
        flex-direction: column;
    }

    .vertical-divider {
        display: none;
        /* Sembunyikan garis di mobile */
    }

    .profile-left {
        width: 100%;
    }

    .profile-right {
        padding: 0;
        width: 90%;
        /* Memberikan margin otomatis kiri-kanan agar center di layar */
        margin: 0 auto;
    }

    .event-row {
        flex-direction: column;
        gap: 15px;
    }

    .event-col {
        width: 100% !important;
        border-left: none !important;
        padding: 0;
    }

    .main-year {
        font-size: 25px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-center {
        grid-column: 1;
        width: 100%;
    }

    .hero-content-basic h1 {
        font-size: 30px;
    }

    .hero-content-basic p {
        font-size: 13px;
    }

    .section-intro h2 {
        font-size: 30px;
    }

    .resources-grid {
        flex-direction: column;
        align-items: center;
    }

    .resource-card {
        width: 100%;
        height: 350px;
    }

    .marquee-content span {
        font-size: 60px;
    }

    .dream-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .dream-image {
        max-width: 100%;
        transform: none;
    }

    .left-img {
        border-radius: 80px;
        /* Lengkung kanan atas saja */
        transform: translateX(-200px);
        /* Sedikit menonjol ke luar */
        margin-top: -150px;
    }

    .right-img {
        border-radius: 80px;
        /* Lengkung kiri atas saja */
        transform: translateX(200px);
        margin-top: 150px;
    }

    .dream-content h2 {
        font-size: 2rem;
    }


    /* PRODUCT SECTION */
    .products-slide {
        height: 60vh;
        /* Mengurangi tinggi hero di layar kecil agar tidak terlalu panjang */
        background-attachment: scroll;
        /* Opsional: Matikan parallax di HP agar performa lebih ringan */
    }

    .products-slide h1 {
        font-size: 4.3rem;
        /* Ukuran teks lebih kecil agar tidak pecah */
    }

    .products-slide p {
        font-size: 0.8rem;
        padding: 0 20px;
    }

    .products {
        padding: 50px 3%;
    }

    /* Membuat kartu produk tampil 2 kolom di tablet */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5px;
        /* Jarak antar kartu */
        padding: 0 8px !important;
        justify-content: stretch !important;
    }

    .product-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .product-img {
        width: 100% !important;
        aspect-ratio: 1 / 1;
        /* Pastikan gambar di dalamnya juga ikut melebar */
        padding: 10px;
    }

    .product-card h3 {
        font-size: 0.85rem;
    }


    .modal-card {
        width: 80%;
        max-height: 120vh;
        overflow-y: auto;
        border-radius: 20px;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image-right {
        order: 1;
        width: 100%;
        height: 170px;
        min-height: 170px;
    }

    .modal-content-left {
        order: 2;
        padding: 20px 30px;
    }

    .subtitle {
        font-size: 12px;
    }

    .titlep {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .timer-container {
        gap: 5px;
    }

    .digits span {
        padding: 8px 10px;
        font-size: 18px;
    }

    .reserve-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .close-btn {
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .floating-btn {
        right: 30px;
    }

    .news-title h1{
        font-size: 40px;
    }



    .product-solar {
        padding: 40px 5%; /* Mengurangi padding di layar kecil */
        text-align: center; /* Membuat teks rata tengah agar lebih rapi */
    }

    .solar-container {
        grid-template-columns: 1fr; /* Mengubah dari 2 kolom menjadi 1 kolom */
        gap: 30px;
    }

    .solar-image {
        order: 1; /* Memaksa gambar naik ke urutan pertama (atas) */
        transform: translateY(30px); /* Ubah arah animasi dari bawah ke atas */
        margin-top: 0;
    }

    .solar-text {
        order: 2; /* Memaksa teks turun ke urutan kedua (bawah) */
        transform: translateY(30px); /* Samakan arah animasi dengan gambar */
        padding: 0 10px;
    }

    /* Menghilangkan transform horizontal agar tidak menyebabkan horizontal scroll di HP */
    .solar-text, .solar-image {
        transform: translateX(0); 
    }

    /* Memastikan animasi berjalan mulus di mobile */
    .solar-text.active,
    .solar-image.active {
        transform: translateY(0);
    }


    .cardsc {
        grid-template-columns: repeat(2, 1fr); /* Menjadi 2 kotak per baris */
        gap: 20px;
    }

    .cardsc img {
        height: 170px;
    }

    .btn-details {
        padding: 5px 15px;
        font-size: 13px;
    }

    .recommend-title h2{
        font-size: 25px;
        font-weight: bold;
    }


   
}




/* 1. Definisi Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Terapkan pada Class */
/* Keadaan awal: Sembunyi dan agak ke bawah */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Keadaan setelah class 'active' muncul (dipicu JS) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Jeda urutan kemunculan (Staggered) */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.5s;
}

.delay-4 {
    transition-delay: 0.7s;
}

@keyframes popUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Definisi Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Terapkan pada container utama */
.profile-content {
    animation: fadeInUp 1s ease-out forwards;
}

/* Variasi: Muncul satu per satu (Staggered Effect) */
.profile-left {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.vertical-divider {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.profile-right {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Animasi untuk baris data agar muncul berurutan */
.data-row {
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Delay berbeda untuk tiap baris data (opsional tapi keren) */
.data-row:nth-child(1) {
    animation-delay: 0.7s;
}

.data-row:nth-child(2) {
    animation-delay: 0.8s;
}

.data-row:nth-child(3) {
    animation-delay: 0.9s;
}

.data-row:nth-child(4) {
    animation-delay: 1.0s;
}


/* Definisi Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        /* Mulai dari 30px di bawah posisi asli */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Kembali ke posisi normal */
    }
}

/* Terapkan pada Judul (H1) */
.products-slide h1 {
    /* Animasi: nama_animasi durasi timing_function delay fill_mode */
    animation: fadeInUp 1s ease-out forwards;
}

/* Terapkan pada Deskripsi (P) */
.products-slide p {
    opacity: 0;
    /* Mulai dengan tidak terlihat */
    /* Berikan delay 0.5s agar muncul setelah H1 */
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Terapkan juga pada Tombol agar serasi */
.btn-shop {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;

    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
}





.light-slide {
    border-top: 1px solid #ccc;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-top: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar2 {
    position: fixed;
    left: -320px;
    top: 90px;
    width: 310px;
    height: calc(100% - 70px);
    background: #fff;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1500;
    overflow-y: auto;
    font-family: jost;
    padding: 50px 50px 50px 30px;
}

.sidebar2.active {
    left: 0;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1400;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ARTICLE */
.more-article {
    font-family: jost;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    margin-top: 65px;
    gap: 10px;
    opacity: 80%;
}

.more-article span {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.more-article:hover span {
    transform: translateX(10px);
    color: #1a1a1a;
}



.article-container {
    padding: 80px 200px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.article-theme h6{
    font-size: 14px;
    opacity: 70%;
}

.article-title h1{
    font-size: 50px;
    font-weight: bold;
}

.author h6{
    font-size: 14px;
    opacity: 70%;
    margin-top: 50px;
}

.img-artic {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.article-body h5{
    font-size: 16px;
    margin-top: 50px;
    text-align: justify;
    line-height: 30px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.spec-table tr {
    border-bottom: 1px solid #ddd;
}

.spec-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.spec-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.spec-name {
    font-weight: 600;
    width: 40%;
    color: #333;
}

.spec-value {
    color: #666;
}

.nav-product {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-product a {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
}

.hidden-col {
    display: none;
}

.nav-product a:hover {
    background: #f0f0f0;
}

.catalog-section {
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
    font-size: 15px;
    text-align: justify;
}

/* hanya section pertama yang punya garis atas */
.catalog-section:first-of-type {
    border-top: 1px solid #ccc;
}

.catalog-section h6 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 15px;
}

.catalog-section ul {
    padding-left: 20px;
}

.catalog-section li {
    margin-bottom: 3px;
}


.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

.spec-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: center;
}

.spec-table thead th {
  background-color: #f5f5f5;
  font-weight: 500;
}

.spec-table th[rowspan="2"] {
  vertical-align: middle;
}

.spec-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}


/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 992px) {
    .detail-slide {
        margin: 40px 20px; /* Memberi ruang di sisi kiri-kanan pada tablet/HP */
    }

    .productd-title {
        font-size: 28px; /* Mengecilkan judul sedikit di tablet */
    }

    
}

@media (max-width: 768px) {
    /* 1. Header: Menyusun breadcrumbs dan navigasi secara vertikal jika tidak muat */
    .top-bar {
        display: flex;
        flex-direction: row; /* Memastikan tetap menyamping */
        justify-content: space-between; /* Kiri dan Kanan */
        align-items: center;
        padding: 0 5px;
        font-size: 13px;
    }

    /* 2. Product Area: Gambar di atas, info di bawah */
    .productd-container {
        flex-direction: column;
        gap: 30px;
    }

    .productd-image, .productd-info {
        flex: none;
        width: 100%;
    }

    .productd-title {
        text-align: center;
        font-size: 26px;
    }

    .short-text {
        text-align: center; /* Teks deskripsi tengah di HP */
    }

    /* 3. Accordion: Pastikan lebarnya penuh */
    .accordions {
        max-width: 100%;
    }

    /* 4. Tabs: Ubah menu tab agar lebih mudah diklik jari */
    .tab-menu {
        flex-wrap: wrap; /* Izinkan tab turun ke bawah jika layar sangat sempit */
    }

    .tab-item {
        padding: 15px 5px;
        font-size: 14px;
    }

    .breadcrumbs {
        text-align: left;
    }

    .navigation-links {
        text-align: right;
    }

    /* 1. Reset area klik agar memenuhi lebar kotak */
.offcanvas .accordion-body a {
    display: block; /* Membuat link memenuhi seluruh baris */
    width: 100%;
    padding: 12px 1.5rem !important; /* Memberi ruang di dalam kotak */
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0; /* Menghilangkan margin agar tidak ada celah */
}

/* 2. Efek Hover Kotak Menyeluruh */
.offcanvas .accordion-body a:hover {
    color: #FFC436 !important; /* Teks jadi kuning */
    background-color: rgba(255, 255, 255, 0.1) !important; /* Background kotak saat hover */
    /* Jika ingin kotak kuning transparan, gunakan: background-color: rgba(255, 196, 54, 0.1) !important; */
}

/* 3. Menghilangkan padding bawaan Bootstrap yang mengganggu */
.offcanvas .accordion-body {
    padding: 0 !important; /* Sangat penting agar link bisa mepet ke pinggir */
    overflow: hidden;
}

/* 4. Khusus untuk Level 3 (Pencil A, Pencil B) agar menjorok ke dalam tapi tetap kotak penuh */
.offcanvas .accordion-body .list-unstyled li a {
    padding-left: 2.5rem !important; /* Indentasi lebih dalam untuk sub-menu */
}

/* 5. Menyamakan hover untuk tombol accordion yang bisa dibuka (Basic Structure, dll) */
.offcanvas .accordion-body .accordion-button {
    padding: 12px 1.5rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.offcanvas .accordion-body .accordion-button:hover,
.offcanvas .accordion-body .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #FFC436 !important;
}

.article-container {
    padding: 35px 45px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.article-theme h6{
    font-size: 12px;
    opacity: 70%;
}

.article-title h1{
    font-size: 30px;
    font-weight: bold;
}

.author h6{
    font-size: 12px;
    opacity: 70%;
    margin-top: 35px;
}

.img-artic img{
    width: 100%;
    text-align: center;
    justify-content: center;
}

.article-body h5{
    font-size: 14px;
    margin-top: 25px;
    text-align: justify;
    line-height: 30px;
}

.detail-slide {
    padding: 0 30px;
}

.light-section {
    padding: 0 30px;
}

.cardcd img {
    width: 170px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.sidebar2 {
    position: fixed;
    left: -300px;
    top: 80px;
    width: 300px;
    height: calc(100% - 70px);
    background: #fff;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1500;
    overflow-y: auto;
    font-family: jost;
    padding: 50px 50px 50px 30px;
}

.sidebar-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1400;
}

.profile-content {
    margin: 0 -10px;
}

.data-row h2 {
    font-size: 14px;
    max-width: 150px;
    text-align: left;
}

.about-anchor-bar {
    top: 60px;
}




}


@media (max-width: 767px) {

    .lang-switcher {
        order: 1;
        display: flex;
        font-size: 10px;
        padding: 4px;
    }

    .lang-active {
        padding: 5px 6px;
    }

    .navbar-toggler {
        order: 2;
    }
}

@media (max-width: 480px) {
    /* Penyesuaian khusus untuk HP layar kecil */
    .productd-title {
        font-size: 22px;
    }

    .tab-menu {
        display: grid;
        grid-template-columns: 1fr; /* Tab menu jadi list vertikal di HP sangat kecil */
    }

    .tab-item {
        border-bottom: 1px solid #eee;
    }
    
    .tab-item:last-child {
        border-bottom: none;
    }


}

@media (max-width: 992px) {
    .category-section {
        padding: 10px 18px;
    }

    .category-grid {
        flex-wrap: wrap; /* Di layar tablet/hp kembali membungkus ke bawah */
        gap: 2px;
    }
    .category-item {
        flex: 0 0 30%; /* Jadi 3 kolom di tablet */
    }

    .section-header .titleb {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .category-item h3 {
        font-size: 12px;
    }

    .image-containerb {
        width: 90%;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .category-item {
        flex: 0 0 45%; /* Jadi 2 kolom di HP */
    }
}