/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    padding: 80px;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Navigation
    .header-nav {
        background-color: black;
        border-bottom: 3px solid orange;
    }

    .header-nav .container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo img {
        max-height: 50px;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-links li a {
        color: orange;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
    }

    .nav-links li a:hover {
        text-decoration: underline;
    } */

/* .btn-transaksi button {
        background: none;
        border: 1px solid orange;
        color: orange;
        padding: 6px 14px;
        cursor: pointer;
        font-weight: bold;
        border-radius: 5px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .btn-transaksi button:hover {
        background-color: orange;
        color: black;
    } */

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Gambar background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(60%);
}

/* Hero text di kiri bawah */
.hero-text {
    position: absolute; /* ubah ke absolute agar bisa bebas posisinya */
    bottom: 20%; /* jarak dari bawah layar */
    left: 8%; /* jarak dari kiri layar */
    max-width: 700px;
    color: #fff;
    text-align: left;
}

/* Judul */
.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 20px;
}

.logo-prn1 {
    posistion: relative;
    width: auto;
    height: auto;
    max-width: 100%;
    transform: scale(1.3);
    transform-origin: center;
    /* margin-top: 520px;      TURUNKAN LOGO */
    margin-bottom: -250px; /* opsional */
}

/* Deskripsi */
.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* Wrapper tetap */
.btn-daftar-wrapper {
    display: inline-block;
}

/* Tombol utama */
.btn-primary {
    background-color: #ffa500;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover (gabungan, tidak konflik lagi) */
.btn-daftar-wrapper:hover .btn-primary {
    transform: translateY(-3px) scale(1.08);
    background-color: #ff8c00;
}

/* Klik (efek neon pulse) */
.btn-primary.neon-pulse {
    box-shadow: 0 0 18px 5px rgba(255, 165, 0, 0.9),
        0 0 30px 10px rgba(255, 165, 0, 0.5);
    transform: scale(0.92) !important; /* wajib untuk override hover */
}

.hero-alvin-wrapper {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 90vh;
    z-index: 1;
}

.hero-alvin {
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Efek zoom */
.hero-alvin-wrapper:hover .hero-alvin {
    transform: scale(1.06);
}

/* hero */

/* Intro Section */
.intro-section {
    position: relative;
    border-top: 3px solid #ffa500;
    overflow: hidden;
    margin: 0;
    padding: 10px;
    height: 800px; /* biar menyesuaikan tinggi konten */
    background: url("/images/brilliantcut.jpg") center/cover no-repeat;
}

/* Overlay transparan */
.intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.intro-button span {
    background-color: #ffa500;
    color: black;
    padding: 20px 200px;
    font-weight: 900;
    font-size: 26px;
    border-radius: 45px;
    display: inline-block;
    margin-top: 70px;
    text-transform: uppercase;
    cursor: default;
    user-select: none;
    border: 6px solid #fff;
}

/* Flex layout: Gambar kiri, konten kanan */
.intro-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Kiri: gambar */
.intro-left {
    flex: 0 0 420px;
    text-align: center;
}

.intro-cewe {
    width: 135%;
    height: auto;
    position: relative;
    left: -100px;
    top: -120px;
}

/* Kanan: Deskripsi + Teks + Tombol */
.intro-right {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

/* Bungkus teks + gambar */
.intro-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* Deskripsi */
.intro-description {
    flex: 1.6;
    background: rgba(80, 80, 80, 0.4);
    color: #fff;
    padding: 18px 30px;
    border-radius: 12px;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.intro-description b {
    color: #ffa500;
}

/* Gambar di kanan deskripsi */
.intro-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-images img {
    width: 96%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.intro-images img:hover {
    transform: scale(1.05);
}

/* Geser isi teks ke kiri tanpa mengubah lebar box */
.intro-description p {
    transform: translateX(-20px);
    width: calc(100% + 20px); /* kompensasi supaya teks tetap muat penuh */
}

.intro-description b {
    color: #ffa500;
}

/* Bagian bawah (tulisan oranye + tombol) */
.intro-start {
    text-align: center;
    margin-top: 10px;
}

.intro-start p {
    font-weight: 800;
    font-size: 30px;
    color: #ffa500;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
    -webkit-text-stroke: 1px #000;
}

/* Tombol daftar */
.btn-daftar {
    background-color: #fff;
    border: 3px solid #ffa500;
    color: #000;
    font-weight: 700;
    padding: 12px 100px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-daftar:hover {
    background-color: #ffa500;
    color: #fff;
    border-color: #ffa500;
}

/* Pastikan section punya background tetap */
.intro-section {
    background: url("/images/brilliantcut.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Semua elemen anak di dalam intro-section mulai transparan */
.intro-section > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Ketika elemen terlihat di layar */
.intro-section > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Problem */
.problem-section {
    border-top: 3px solid #ffa500;
    background-color: #000;
    padding: 40px 20px;
    position: relative;
    overflow: hidden; /* penting agar gambar yang keluar area terpotong */
    height: 670px; /* ubah sesuai kebutuhan, misalnya 400-600px */
}

/* Judul H2 */
.problem-section .problem-title {
    text-align: center;
    color: #ffff; /* oranye agar kontras dan energik */
    font-size: 50px;
    font-weight: 900; /* super tebal */
    font-family: "Poppins"; /* modern dan atraktif */
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 100px;
}

/* Container */
.problem-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

/* List */
.problem-list {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 55%;
    list-style: none;
    padding: 0;
    z-index: 2;
    font-family: "Poppins";
}

/* Item list */
.problem-list li {
    position: relative; /* penting supaya .icon-cross bisa absolute di dalamnya */
    margin-bottom: 20px;
    padding: 15px 10px 15px 50px; /* tambah padding kiri untuk ruang si ✘ */
    border: 2px solid #fff;
    border-radius: 50px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    background-color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
}

/* Ikon ✘ dalam lingkaran, tidak memengaruhi border */
.problem-list .icon-cross {
    position: absolute;
    left: -20px; /* jarak dari sisi kiri kotak */
    top: 50%;
    transform: translateY(-50%); /* agar pas di tengah vertikal */
    color: #fff;
    background-color: #ff0000;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
    pointer-events: none; /* biar tidak ganggu klik */
}

/* Icon ✘ */
.problem-list .icon-cross {
    color: #ffff;
    margin-right: 10px;
}

/* Gambar */
.problem-image {
    width: 38%;
    text-align: center;
    position: relative;
}

.problem-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    transform: scale(2) translateX(20px) translateY(-240px);
    transform-origin: center top;
}

/* --- ANIMASI UNTUK SEMUA SECTION --- */

.problem-section > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.problem-section > *.visible {
    opacity: 1;
    transform: translateY(0);
}
/* SECTION MOTIVATION */
.motivation-section {
    border-top: 3px solid orange;
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    height: 700px;
    overflow: hidden; /* <<< ini penting */
}

/* Container */
.motivation-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* H2 tetap di atas, tengah */
.motivation-text h2 {
    font-size: 65px;
    color: #ffa500;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Layout bawah: gambar kiri + konten kanan */
.motivation-text-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px; /* >>> Geser teks lebih jauh ke kanan */
}

/* Gambar kiri */
.motivation-image {
    flex: 0 0 350px;
}

.motivation-image img {
    margin-top: -300px;
    margin-left: -100px;
    width: 190%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.motivation-image img:hover {
    transform: scale(1.05);
}

/* Konten kanan */
.motivation-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Paragraf awal */
.motivation-text-content p:first-of-type {
    font-size: 30px;
    font-weight: 700;
}

/* List */
.motivation-text-content ul {
    list-style: none;
    padding-left: 0;
}

.motivation-text-content li {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

/* Highlight */
.highlight {
    color: #ffa500;
}

/* CALL TO ACTION (question + tombol tersusun vertikal di tengah) */
.call-to-action {
    display: flex;
    flex-direction: column;
    align-items: center; /* tengah */
    gap: 20px; /* jarak antara question & tombol */
}

/* Wrapper pertanyaan + oval */
.question-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px; /* geser keseluruhan wrapper ke bawah */
    margin-left: -200px; /* geser sedikit ke kiri */
}

.question-wrapper .question {
    font-size: 50px !important; /* diturunkan dari 100px supaya tidak terdorong jauh */
    color: #ffa500;
    font-weight: 900;
    margin: 0;
    text-align: center;
}

/* Oval animasi */
.oval-animated {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%) rotate(-10deg);
    pointer-events: none;
    z-index: -1;
}

.oval-animated path {
    fill: none;
    stroke: #e60000;
    stroke-width: 6px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawOval 3.5s ease-in-out infinite alternate;
}

@keyframes drawOval {
    0% {
        stroke-dashoffset: 1000;
    }
    70% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 1000;
    }
}

/* Tombol */
.btn-register {
    background-color: #fff;
    margin-top: 40px; /* geser keseluruhan wrapper ke bawah */
    color: #000;
    border: 3px solid #ffa500;
    padding: 14px 30px;
    font-size: 22px;
    margin-left: -200px; /* geser sedikit ke kiri */
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #ffa500;
    transform: scale(1.05);
    box-shadow: 0 0 12px #ffa50080;
}

/* --- ANIMASI FADE-IN UNTUK SEMUA SECTION --- */

.motivation-section > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.motivation-section > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Section */
/* Section utama */
.why-choose-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-top: 3px solid #ffa500;
    overflow: hidden;
    height: 1170px;
}

/* Judul */
.why-choose-section h2 {
    color: #ffa500;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Wrapper utama: jadi kolom */
.why-choose-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Baris berisi 2 item */
.row-items {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;
    position: relative;
    z-index: 3; /* lebih tinggi dari center-person */
}

/* Item */
.choice-item {
    text-align: center;
    width: 240px;
    font-size: 9px;
}

.choice-item img {
    width: 240px; /* ukuran fix biar seragam */
    height: 180px; /* tinggi fix agar tidak memanjang */
    object-fit: cover; /* otomatis crop jika gambar terlalu lebar/tinggi */
    border-radius: 12px;
    border: 2px solid #ffa500;
}

.center-person {
    position: relative;
    z-index: 1;
}

/* Judul kecil */
/* Header kotak untuk judul */
.choice-title {
    display: block;
    background-color: #ffa500; /* oranye */
    border: 2px solid #fff; /* border putih */
    color: #000; /* teks hitam */
    padding: 10px 12px;
    border-radius: 12px; /* sudut tumpul */
    font-size: 12px; /* sedikit lebih besar biar terbaca */
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0 8px 0;
    line-height: 1.4;
}

/* Gambar tengah */
.center-person img {
    width: 750px;
    height: auto;
    border-radius: 40%;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    margin-top: -350px;
}

/* === Popup Gambar === */
.popup {
    display: none; /* disembunyikan default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.popup img {
    max-width: 70%;
    max-height: 70%;
    border-radius: 10px;
    border: 3px solid #ffa500;
}

.popup p {
    color: #fff;
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 70%;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffa500;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.popup .close:hover {
    color: white;
}

.row-top {
    transform: translateY(20px);
    gap: 350px;
}

.row-bottom {
    transform: translateY(-520px);
    gap: 700px;
}

/* animasi dasar */
.why-choose-section h2,
.row-items .choice-item,
.center-person img {
    opacity: 0;
    transition: 0.8s ease;
}

/* Judul muncul dari bawah */
.why-choose-section h2 {
    transform: translateY(40px);
}
.why-choose-section h2.show {
    opacity: 1;
    transform: translateY(0);
}

/* Item kiri (masuk dari kiri) */
.row-items .choice-item:first-child {
    transform: translateX(-60px);
}

/* Item kanan (masuk dari kanan) */
.row-items .choice-item:last-child {
    transform: translateX(60px);
}

/* Saat tampil */
.row-items .choice-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* Gambar tengah efek zoom */
.center-person img {
    transform: scale(0.8);
}

.center-person img.show {
    opacity: 1;
    transform: scale(1);
}

/* --- Variabel CSS yang Direvisi --- */
:root {
    --white: #ffffff;
    --primary-orange: #ffa500; /* Oranye Utama (dipertahankan) */
    --primary-orange-light: #ffc24d; /* Oranye Lebih Terang untuk Gradasi */
    --primary-orange-dark: #cc7000;
    --dark-navy: #1f3044;
    --gray-light: #aab8c2;
    --accent-light: #f7f9fa;
    --border-radius: 10px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.4s;
}

/* ------------------- PROGRAMS SECTION (Minimal Perubahan) ------------------- */
.programs-section {
    background: linear-gradient(
        180deg,
        #000 0%,
        var(--dark-navy) 50%,
        #000 100%
    );
    border-top: 3px solid var(--primary-orange);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    font-weight: 700;
    font-family: "Arial Black", Arial, sans-serif;
    position: relative;
    min-height: 700px;
    height: auto;
}

.programs-section h3 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
    user-select: none;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: -1.5px -1.5px 0 var(--primary-orange),
        1.5px -1.5px 0 var(--primary-orange),
        -1.5px 1.5px 0 var(--primary-orange),
        1.5px 1.5px 0 var(--primary-orange);
}

/* ------------------- CARD CONTAINER ------------------- */
.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ------------------- CARD ------------------- */
.program-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    transition: transform var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
    position: relative;
    border: 1px solid var(--accent-light);
    padding: 0;
    z-index: 6;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15), 0 0 25px rgba(255, 165, 0, 0.3);
}

/* ------------------- IMAGE & HEADER ------------------- */
.program-card-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.program-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
    transform: scale(1.05);
}

.img-placeholder {
    background-color: var(--dark-navy);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 1.1rem;
}

/* >>> PERUBAHAN UTAMA DI SINI <<< */
.program-card-header {
    position: relative;
    bottom: 0px;
    top: 50;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 12px 16px;
    /* MENGGUNAKAN GRADASI */
    margin-left: calc(-1 * var(--container-padding, 0px));
    margin-right: calc(-1 * var(--container-padding, 0px));
    padding: 16px;
    width: calc(100% + (2 * var(--container-padding, 0px)));
    background: linear-gradient(
        320deg,
        var(--primary-orange-light) 0%,
        var(--primary-orange) 100%
    );
    color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
    /* MENAMBAHKAN BAYANGAN DALAM */
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* Nama program di kiri atas */
.program-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;

    text-transform: uppercase;
    display: block;
    width: 100%;
    text-align: center;
}

/* Harga sekarang absolute di image-wrapper, supaya tidak terpotong */
.program-card-price {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
    padding: 5px 30px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-align: center;
    z-index: 1000;
    line-height: 1;
    white-space: nowrap;
    border: 2px solid var(--primary-orange);
}

/* ------------------- CARD BODY / FITUR ------------------- */
.card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.features-label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-navy);
    width: 100%;
    text-align: left;
}

.program-features-wrapper {
    border-top: 1px solid var(--accent-light);
    border-bottom: 1px solid var(--accent-light);
    padding: 10px 0;
    margin-bottom: 15px;
}

.program-features {
    padding-left: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.program-features li {
    margin-bottom: 6px;
    color: #444;
    list-style: none;
    position: relative;
    padding-left: 25px;
    text-align: left;
    font-size: 0.95rem;
}

.program-features li::before {
    content: "\2713";
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 1.2rem;
    position: absolute;
    left: 5px;
    top: 0;
}

/* ------------------- TOMBOL DAFTAR ------------------- */
.btn-detail {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    transition: background-color var(--transition-speed) ease, padding 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    border: none;
    background-color: var(--primary-orange);
    color: var(--white);
    letter-spacing: 0.5px;
    /* Gradasi pada tombol */
    background: linear-gradient(
        0deg,
        var(--primary-orange-dark) 0%,
        var(--primary-orange) 100%
    );
    border: 1px solid var(--primary-orange-dark);
}

.btn-detail:hover {
    background-color: var(--primary-orange-dark);
    /* Hilangkan gradasi saat hover agar terlihat lebih 'padat' */
    background: var(--primary-orange-dark);
}

.btn-detail::after {
    content: "\2192";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.btn-detail:hover {
    padding-right: 45px;
}

.btn-detail:hover::after {
    opacity: 1;
    right: 20px;
}

/* --- Animasi Program (Gaya Asli) --- */
.programs-section h3,
.program-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.programs-section h3.show,
.program-card.show {
    opacity: 1;
    transform: translateY(0);
}

.program-card:nth-child(1) {
    transition-delay: 0.2s;
}
.program-card:nth-child(2) {
    transition-delay: 0.4s;
}
.program-card:nth-child(3) {
    transition-delay: 0.6s;
}
.program-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(
        --primary-orange
    ); /* Menggunakan warna oranye yang menarik perhatian */
    margin-top: -5px; /* Sedikit naik agar dekat dengan judul */
    margin-bottom: 15px; /* Memberi ruang di bawah harga sebelum fitur */
}

/* Efek hover untuk animasi lama, kini sudah diimplementasi di .program-card baru */
/* .program-card {
        transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.3s ease;
    } */
/* .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
    } */

.program-features-wrapper {
    overflow: hidden;
    max-height: 150px;
    transition: max-height 0.4s ease;
}

.program-features-wrapper.expanded {
    max-height: 1000px;
}

.program-features li.hidden {
    display: none;
}

.btn-show-more {
    padding-left: 12px;
    background: none;
    border: none;
    color: var(--primary-orange);
    font-weight: 700;
    cursor: pointer;
    margin-top: 0px;
    text-decoration: underline;
    margin-bottom: 30px;
}

.btn-show-more:hover {
    color: var(--primary-orange-dark);
}
/* Styling untuk label "Fitur Program :" */
.features-label {
    width: 100%;
    text-align: left; /* Penting agar teks mulai dari kiri */
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-blue, #333);
    margin-bottom: 5px;
    margin-top: 10px;
    padding-left: 10px; /* Menyelaraskan dengan padding list fitur */
}
.program-filter {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: #e0e0e0;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin: 0 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-orange);
    color: #fff;
}

.filter-btn:hover {
    background: var(--primary-orange-dark);
    color: #fff;
}

/* CAMP Section */
.camp-section {
    background: linear-gradient(180deg, #000000 0%, #f28c00 100%);
    min-height: 690px; /* ganti dari height */
    height: auto;
    padding: 30px 20px;
    text-align: center;
    color: #000;
    position: relative;
    font-family: "Arial Black", Arial, sans-serif;
    overflow: visible; /* jangan hidden kalau mau ikut memanjang */
}

/* Judul Section */
.camp-section h3 {
    margin-bottom: 100px;
    font-size: 1.9rem;
    color: #fff;

    text-shadow: -1.5px -1.5px 0 #ffa500, 1.5px -1.5px 0 #ffa500,
        -1.5px 1.5px 0 #ffa500, 1.5px 1.5px 0 #ffa500;
    user-select: none;
}

/* CAMP Section */
.camp-section {
    background: linear-gradient(180deg, #000000 0%, #f28c00 100%);
    padding: 60px 20px;
    text-align: center;
    color: #000;
    font-family: "Arial Black", Arial, sans-serif;
}

/* Judul Section */
.camp-section h3 {
    margin-bottom: 40px;
    font-size: 1.9rem;
    color: #fff;
    text-shadow: -1.5px -1.5px 0 #ffa500, 1.5px -1.5px 0 #ffa500,
        -1.5px 1.5px 0 #ffa500, 1.5px 1.5px 0 #ffa500;
}

/* Container Card */
.camp-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.camp-card {
    background-color: #fff;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.camp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* === SLIDER IMAGE BARU === */
.camp-slider-container {
    width: 100%;
    max-width: 300px; /* sesuai lebar card */
    height: 250px; /* tinggi tetap */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.camp-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 100%; /* pastikan tiap slide sama lebar */
    height: 100%;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* gambar menutupi seluruh slide */
    display: block;
}

.slider-img.default-img {
    /* Menggunakan contain: Gambar default terlihat penuh, mungkin ada ruang kosong. */
    object-fit: contain;
}

/* Tombol Navigasi Slider - DIHAPUS */
/* CSS untuk .slider-btn, .prev-btn, dan .next-btn dihapus dari sini. */

/* === JUDUL CAMP === */
.camp-title {
    font-weight: 900;
    font-size: 1.3rem;
    color: #000;
    text-align: center;
    margin: 15px 0 10px 0;
    padding: 0 10px;
    width: 100%;
    text-decoration: underline; /* ⬅️ Tambahan garis bawah */
    text-underline-offset: 4px;
}
.facility-title {
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #000;
}

/* === FASILITAS — RATA KIRI DENGAN CENTANG === */
.camp-facilities {
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.camp-facilities .facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.camp-facilities .facility-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.camp-facilities .facility-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

/* Tombol Selengkapnya */
.btn-more-facilities {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 0;
    margin-top: 5px;
    display: block;
    width: 100%;
    text-align: left;
}

.btn-more-facilities:hover {
    text-decoration: underline;
}

/* === BUTTON BOOKING === */
.btn-book {
    margin-top: auto;
    background-color: #28a745;
    color: #fff;
    font-weight: 900;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-family: "Arial Black", Arial, sans-serif;
    border-radius: 0 0 15px 15px;
}

.btn-book:hover {
    background-color: #1e7e34;
}

/* ANIMASI */
.camp-section h3,
.camp-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.camp-section h3.show,
.camp-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIF */
@media (max-width: 900px) {
    .camp-card {
        width: 90%;
    }
}

/* === GALERI SECTION === */
.gallery-section {
    background-color: #f28c00;
    padding: 60px 20px;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.2rem;
    color: black;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.gallery-section .underline {
    width: 100px;
    height: 4px;
    background-color: black;
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Wrapper gallery */
.gallery-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Container kartu */
.gallery-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    scroll-padding-left: 0; /* penting supaya kartu pertama mulai dari tepi */
    justify-content: flex-start; /* agar kartu pertama tidak melayang */
}

.gallery-cards::-webkit-scrollbar {
    display: none;
}

/* Kartu gallery */
.gallery-card {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 kartu per slide */
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    border: 5px solid #000;
    scroll-snap-align: start; /* mulai dari tepi */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* Judul dan deskripsi */
.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
}

.card-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* Gambar card */
.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* DOT INDICATORS */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.gallery-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-indicators .dot.active {
    background: rgb(255, 179, 0);
    transform: scale(1.2);
}

/* === GALERI FOTO === */
.gallery-images {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.gallery-images::-webkit-scrollbar {
    display: none;
}

.gallery-image-item {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-image-item img {
    width: 280px;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-image-item:hover {
    transform: scale(1.05);
}

/* === VIDEO WRAPPER === */
.video-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 40px;

    /* ===== SLIDE MIRIP INSTAGRAM ===== */
    scroll-snap-type: x mandatory;
}

.video-item {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;

    /* Setiap item nempel otomatis */
    scroll-snap-align: start;
}

.video-wrapper::-webkit-scrollbar {
    display: none;
}

.video-wrapper iframe {
    pointer-events: none; /* supaya bisa di-scroll */
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item:hover {
    transform: scale(1.05);
}
/* instagram */
.instagram-wrapper {
    display: flex; /* susun item horizontal */
    gap: 15px; /* jarak antar postingan */
    overflow-x: auto; /* scroll kiri-kanan */
    scroll-behavior: smooth; /* animasi smooth saat scroll */
    padding: 10px 0;
}

.instagram-wrapper::-webkit-scrollbar {
    height: 8px; /* tinggi scrollbar */
}

.instagram-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.instagram-item {
    flex: 0 0 300px; /* setiap item lebar tetap */
    max-width: 300px;
    aspect-ratio: 1/1; /* biar kotak, bisa sesuaikan */
    border-radius: 10px;
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Ikon Play YouTube */
/* .youtube-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    } */

/* === ANIMASI === */
.gallery-section {
    opacity: 1;
    transform: none;
}

.gallery-section h2,
.gallery-section .underline {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.gallery-section h2.visible,
.gallery-section .underline.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image-item,
.video-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-image-item.visible,
.video-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === ANIMASI CARD GALLERY === */
.gallery-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.gallery-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER LAYOUT ===== */
footer {
    background: linear-gradient(180deg, #f28c00 0%, #c44700 100%);
    color: #fff;
    padding: 60px 5% 30px;
    font-family: "Arial", sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ===== LEFT SECTION ===== */
.footer-left {
    flex: 1;
    min-width: 200px;
    position: relative;
    height: auto;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ending-alvin {
    width: 100%;
    max-width: 500px;
    height: auto;

    transition: transform 0.3s ease;
}

.ending-alvin:hover {
    transform: translateY(-5px);
}

/* Social Media Section */
.social-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 240px; /* atur sesuai kebutuhan */
}

.social-section h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.social-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.social-platform i {
    font-size: 1.5rem;
    background: white;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-platform i.fa-tiktok {
    background: #000;
    color: #fff;
}

.social-platform i.fa-instagram {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
    color: white;
}

.social-platform span {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.social-account {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: borderGlow 3s infinite;
}

@keyframes borderGlow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
            inset 0 0 5px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
            inset 0 0 10px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

.social-account:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== RIGHT SECTION ===== */
.footer-right {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Contact Section */
.contact-section h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 140px; /* atur sesuai kebutuhan */
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #fff;
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    background: #fff;
    color: #c44700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Map Section */
.map-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 240px; /* atur sesuai kebutuhan */
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    margin-top: -4px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-copyright p {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
footer {
    opacity: 1;
    transform: none;
}

.footer-left,
.footer-right,
.footer-bottom,
.social-section,
.contact-section,
.map-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer-left.visible,
.footer-right.visible,
.footer-bottom.visible,
.social-section.visible,
.contact-section.visible,
.map-section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ================= MOBILE & TABLET ================= */

/* 1100px — Tablet Landscape */
@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        max-width: 100%;
    }

    .ending-alvin {
        max-width: 320px;
        margin: 0 auto;
    }

    .social-section {
        margin-top: 40px;
        padding: 20px;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-section h3,
    .map-section h4 {
        margin-top: 40px;
        text-align: center;
    }
}
/* 768px — Tablet Portrait / HP Lebar */
@media (max-width: 768px) {
    footer {
        padding: 45px 6% 25px;
    }

    .footer-right {
        gap: 40px;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    /* TETAP dipertahankan sesuai keinginan Anda */
    .contact-section {
        margin-top: 180px;
    }

    .map-section {
        margin-bottom: 180px;
    }

    .ending-alvin {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .contact-section h3 {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .map-section h4 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-list li {
        flex-direction: row;
        gap: 12px;
        padding: 15px;
        align-items: flex-start;
    }

    .contact-icon {
        align-self: center;
    }

    .contact-text p {
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-top: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}

/* 480px — HP Kecil & Compact */
@media (max-width: 480px) {
    .footer-right {
        flex: 1.5;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 60px; /* Jarak antara contact-section & map-section */
    }
    .social-account {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    .social-platform i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .contact-text strong {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .footer-map iframe {
        height: 230px;
    }

    .contact-section h3,
    .map-section h4 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .social-section {
        padding: 15px;
    }
}

.nav-btn {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    transform: translateY(-50%);
    user-select: none;
}

.nav-btn.prev {
    left: 30px;
}
.nav-btn.next {
    right: 30px;
}
