/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Aturan Dasar: Semua yang punya class 'reveal' akan sembunyi dulu */
.reveal {
    opacity: 0;
    transform: translateY(40px); /* Muncul dari bawah */
    transition: all 1.0s cubic-bezier(0.2, 1, 0.3, 1); /* Gerakan halus & premium */
    visibility: hidden;
}

/* Aturan Saat Aktif: Muncul saat class 'active' ditempel oleh JavaScript */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Opsional: Efek muncul dari arah samping untuk variasi */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.0s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Jika kamu takut JS gagal, kita bisa buat animasi CSS murni untuk Home */
.home-content {
    animation: fadeInHome 1.2s ease-out forwards;
}

@keyframes fadeInHome {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 120px; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* Styling Link Navigasi */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px; /* Memberi ruang untuk background color*/
    border-radius: 25px; /*Biar sudut background-nya tidak terlalu kaku */
    transition: all 0.3s ease; /*Biar transisinya halus*/
    position: relative;
}

/* 1. Efek saat Cursor di atas Menu (Hover) */
.nav-links a:hover {
    color: #2b4c84; /* Berubah jadi biru Rimena */
    background-color: rgba(43, 76, 132, 0.1); /* Background biru transparan tipis */
}

/* 2. Efek Garis Bawah (Underline) saat Hover */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 16px; /* Sesuai dengan padding kiri */
    background-color: #2b4c84;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: calc(100% - 32px); /* Menyesuaikan lebar teks minus padding */
}

/* 3. Styling Khusus untuk Halaman yang Sedang Aktif */
.nav-links a.active {
    font-weight: bold;
    color: #fff;
    background-color: #2b4c84; /* Lebih tebal dikit dari hover */
    /*text-decoration: underline; /* Underline standar atau bisa pakai pseudo-element di atas */
}

/* Styling Tombol Konsultasi Gratis */
.btn-consultation {
    background-color: #2b4c84;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative; /* Penting untuk posisi underline */
}

/* Efek saat Cursor di atas Tombol (Hover) */
.btn-consultation:hover {
    background-color: #1e3a6a; /* Warna biru sedikit lebih gelap saat hover */
    /* Memberikan efek bayangan halus agar tombol terasa terangkat */
    box-shadow: 0 4px 25px rgba(43, 76, 132, 0.3);
}

/* Membuat Underline Putih saat Hover */
.btn-consultation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px; /* Jarak garis dari bawah teks */
    left: 20%; /* Garis muncul dari tengah */
    background-color: white;
    transition: all 0.3s ease;
}

.btn-consultation:hover::after {
    width: 60%; /* Lebar garis bawah saat aktif */
}

/* Home Section */
.home {
    height: 80vh;
    background-image: url('image/home.jpg'); /* Masukkan file gambar kamu di sini */
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-overlay {
    background: rgba(0, 0, 0, 0.4); /* Memberi lapisan gelap agar teks terbaca */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.home-content {
    /* background-color: rgba(255, 255, 255, 0.85); */
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 750px;
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */

    /* TAMBAHKAN INI: Agar transisi reveal menyatu dengan kotak */
    transition: all 1s ease-out; 
}

.home-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.home-content p {
    font-size: 2rem;
    margin-bottom: 30px;
}

.btn-primary-alt {
    background-color: #fff;
    color: #2b4c84;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-primary-alt:hover {
    background-color: #2b4c84;
    color: #fff;
}

/* ABOUT Section */
.about-section {
    background-color: #ffffff;
    padding: 50px 0;
    width: 100%;
    text-align: center;
}

/* Mengatur container agar konten tetap berada di tengah layar */
.about-section .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Memastikan elemen seperti div dan hr berada di tengah */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Judul: Tentang (Regular) RIMENA (Bold + Italic) */
.about-title {
    font-size: 3.5rem; /* Ukuran besar sesuai gambar */
    color: #000000;
    font-weight: 800; /* Extra Bold untuk "Tentang" */
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.blue-text {
    color: #6a95cc; /* Biru muda keabu-abuan sesuai gambar */
    font-style: italic; /* Miring sesuai gambar */
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

/* Garis bawah biru yang solid di bawah RIMENA */
.blue-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px; /* Ketebalan garis sesuai gambar */
    background-color: #6a95cc;
    opacity: 0.8;
}

/* Motto: Bold tebal dengan dot pemisah */
.motto-text {
    font-size: 2.2rem;
    font-weight: 800; /* Sangat tebal */
    color: #1C4D8D;
    /* margin-bottom: 10px; */
    letter-spacing: -0.5px;
}

.sub-motto {
    font-size: 1.4rem;
    color: #333;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Detail List (Exclusive, Serene, Trusted) */
.about-details {
    margin-bottom: 5px;
}

.detail-item {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #000000;
}

.detail-item strong {
    font-weight: 700; /* Bold pada kata depan */
}

/* Garis Horizontal panjang di bawah */
.about-divider {
    border: none;
    border-top: 2.2px solid #d3d3d3; /* Abu-abu sangat tipis */
    width: 100%;
    margin-top: 15px;
}

/* TESTIMONI Section */
/* --- Section Testimoni --- */
.testi-section {
    padding: 35px 0;
    background-color: #fff;
    text-align: center;
}

.testi-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blue-text-testi {
    color: #6a95cc; /* Biru muda keabu-abuan sesuai gambar */
    font-style: italic; /* Miring sesuai gambar */
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

/* Garis bawah biru yang solid di bawah RIMENA */
.blue-text-testi::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px; /* Ketebalan garis sesuai gambar */
    background-color: #6a95cc;
    opacity: 0.8;
}


.testi-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
}

/* Pengaturan Slider */
.slider-wrapper {
    width: 100%;
    overflow-x: auto; /* Agar bisa di-scroll kesamping */
    padding: 20px 0;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}

.testimonial-slider {
    display: flex;
    gap: 25px; /* Jarak antar gambar */
    padding: 0 40px;
    cursor: grab;
}

.testi-item {
    flex: 0 0 auto; /* Mencegah gambar mengecil */
    width: 280px; /* Lebar tiap kartu testimoni */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testi-item img {
    width: 90%;
    height: auto;
    display: block;
}

.testi-item:hover {
    transform: translateY(-10px); /* Efek melayang dikit saat hover */
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Biar transisinya enak */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-slider.grabbing {
    cursor: grabbing;
    scroll-behavior: auto; /* Matikan smooth saat drag agar tidak berat */
}

.testi-item {
    flex: 0 0 calc(25% - 15px); /* Tetap 4 gambar per layar */
    min-width: 250px; /* Jaga agar tidak terlalu kecil di layar tanggung */
}

/* --- Paket Section --- */
.paket-section {
    padding: 30px 0;
    background-color: #fff;
    text-align: center;
}

/* Navigasi Tab */
.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-menu {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;

    text-decoration: none; 
    display: inline-block; /* Agar padding dan transform bekerja sempurna */
    line-height: normal;
}

.tab-btn:hover {
    text-decoration: none;
    color: #2b4c84;
}

.tab-btn.active {
    color: #2b4c84;
}

/* Garis bawah pada tab aktif */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #2b4c84;
}

/* Konten Tab */
.tab-content {
    display: none; /* Sembunyikan semua dulu */
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block; /* Tampilkan yang aktif */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kartu Paket */
.paket-card {
    display: flex;
    border: 2px solid #2b4c84;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    align-items: stretch;
}

.price-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-right: 2px solid #2b4c84;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-box h3 {
    font-size: 2.5rem;
    color: #2b4c84;
    margin: 10px 0;
}

.price-box p {
    font-size: 1.2rem;
}
.details-box {
    flex: 2;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.details-box ul {
    list-style: none;
    padding: 0;
}

.details-box li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.details-box li i {
    color: #2b4c84;
    font-size: 1.3rem;
    width: 25px;
}

/* --- Styling Tombol Konsultasi yang Lebih Hidup --- */
.btn-konsultasi-pak {
    background: linear-gradient(135deg, #2b4c84, #1d3557); /* Gradasi biru Rimena */
    color: white;
    padding: 12px 200px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    position:relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    transition: all 0.3s ease;
    
    /* Tambahkan animasi getar & pendaran */
    animation: floating-glow 3s infinite ease-in-out;
}

/* Animasi Floating Glow & Wobble */
@keyframes floating-glow {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 25px rgba(43, 76, 132, 0.6);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    }
}

/* Efek cahaya lewat (Shine) saat di-hover atau secara otomatis */
.btn-konsultasi-pak::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.5s;
}

.btn-konsultasi-pak:hover::before {
    left: 100%;
}

.btn-konsultasi-pak:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #3a63a5, #2b4c84);
    box-shadow: 0 10px 30px rgba(43, 76, 132, 0.5);
}

/* Tombol Buy Now */
.btn-buy {
    background-color: #2b4c84;
    color: white;
    padding: 12px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-buy:hover {
    transform: scale(1.1);
    background-color: #3d66ac;
}

/* Styling Ikon Bintang */
.star-rating {
    display: flex;
    gap: 3px;
    color: #ffc107; /* Warna Kuning Emas khas Rating */
    font-size: 1.2rem;
    filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.4)); /* Efek glow tipis */
}

/* Mengatur ukuran ikon di dalam info-item agar sejajar */
.star-rating {
    width: auto; /* Membatasi lebar agar tidak merusak grid */
    padding-left: 6rem;
    padding-top: 3px;
}

/* Animasi kecil saat hover (Opsional) */
.price-box:hover .star-rating i {
    transform: scale(1.1);
    transition: 0.3s;
}

/* Responsif HP */
@media (max-width: 768px) {
    .paket-card { flex-direction: column; }
    .price-box { border-right: none; border-bottom: 2px solid #2b4c84; }
    .tab-btn { padding: 10px 15px; font-size: 1.1rem; }
}


/* GALERI Section */
.galeri-section {
    padding: 35px 0;
    background-color: #fff;
    text-align: center;
}

.galeri-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blue-text-galeri {
    color: #6a95cc; /* Biru muda keabu-abuan sesuai gambar */
    font-style: italic; /* Miring sesuai gambar */
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

/* Garis bawah biru yang solid di bawah RIMENA */
.blue-text-galeri::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px; /* Ketebalan garis sesuai gambar */
    background-color: #6a95cc;
    opacity: 0.8;
}


.galeri-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
}

/* Pengaturan Slider */
.slider-wrapper {
    width: 100%;
    overflow-x: auto; /* Agar bisa di-scroll kesamping */
    padding: 20px 0;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}

.galeri-slider {
    display: flex;
    gap: 25px; /* Jarak antar gambar */
    padding: 0 40px;
    cursor: grab;
}

.galeri-item {
    flex: 0 0 auto; /* Mencegah gambar mengecil */
    width: 280px; /* Lebar tiap kartu testimoni */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeri-item img {
    width: 90%;
    height: auto;
    display: block;
}

.galeri-item:hover {
    transform: translateY(-10px); /* Efek melayang dikit saat hover */
}

.galeri-wrapper {
    overflow: hidden;
    width: 100%;
}

.galeri-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Biar transisinya enak */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
}

.galeri-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.galeri-slider.grabbing {
    cursor: grabbing;
    scroll-behavior: auto; /* Matikan smooth saat drag agar tidak berat */
}

.galeri-item {
    flex: 0 0 calc(25% - 15px); /* Tetap 4 gambar per layar */
    min-width: 250px; /* Jaga agar tidak terlalu kecil di layar tanggung */
}

/* Container Video Dokumentasi */
.video-container {
    max-width: 900px;
    margin: 0 auto 50px auto; /* Memberi jarak 50px ke slider di bawahnya */
    padding: 0 15px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* Rasio 16:9 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(43, 76, 132, 0.2); /* Shadow biru tipis khas Rimena */
    border: 3px solid #2b4c84; /* Border biru sesuai tema */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Styling Panggilan Baitullah --- */
.baitullah-section {
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1d3557; /* Biru gelap Rimena */
    font-style: italic; /* Sesuai gambar */
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 3.5%;
    line-height: 1.6;
}

.btn-primary-alt-alt {
    background-color: #2b4c84;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-primary-alt-alt:hover {
    /* background-color: #fff;
    color: #2b4c84; */
    text-decoration: underline;
}

/* --- Hero Tentang Kami --- */
.hero-tentang {
    height: 70vh; /* Tinggi section 60% layar */
    background:url('image/about.png'); /* Ganti dengan nama file gambarmu */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 55%;
}

.hero-content {
    text-align: right; /* Teks rata kanan */
}

.hero-content h1 {
    font-family: 'Inter', sans-serif; /* Menggunakan Medium Sans */
    font-size: 4.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

/* Breadcrumb di Sisi Kanan */
.breadcrumb {
    display: flex;
    justify-content: flex-end; /* Memastikan breadcrumb juga di kanan */
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
}


/* Breadcrumb (Navigasi Kecil) */
.breadcrumb a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2b4c84; /* Berubah jadi biru Rimena saat hover */
}

.breadcrumb p {
    font-weight: 600;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .hero-tentang {
        padding-left: 5%;
        height: 40vh;
        background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent), 
                    url('image/about.png');
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- Who We Are Section --- */
.who-we-are {
    padding: 120px 0;
}

.content-flex {
    display: flex;
    align-items: center;
    gap: 100px; /* Jarak antara gambar dan teks deskripsi */
}

/* Layout Gambar & Frame */
.image-section {
    position: relative;
    flex: 1.8;
    padding-left: 80px;
}

.blue-back-frame {
    position: absolute;
    padding-left: 80px;
    top: 15px;
    left: 60px;
    width: 40%;
    height: 100%;
    border-left: 20px solid #2b4c84;
    border-bottom: 15px solid #2b4c84;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
    border-radius: 0 15px 15px 0;
}

.main-photo-wrapper {
    position: relative;
    z-index: 2;
}

.main-photo-wrapper img {
    width: 60%;
    border-radius: 20px;
    display: block;
}

/* Kotak Quote (Yang diperbaiki agar tidak tumpang tindih) */
.quote-card {
    position: absolute;
    right: 30%; /* Keluar sedikit dari gambar ke arah kanan */
    top: 30%;
    transform: translateY(-50%);
    background: white;
    padding: 16px;
    width: 280px;
    border-left: 20px solid #2b4c84;
    border-bottom: 10px solid #2b4c84;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
    border-radius: 0 15px 15px 0;
}

.quote-ayat { font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; line-height: 1.3; }
.quote-source { font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; color: #555; }
.quote-motto { font-size: 0.9rem; font-style: italic; color: #333; line-height: 1.5; }

/* Deskripsi Teks di Kanan */
.content-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Agar konten kumpul di tengah */
    gap: 0.5px; /* Atur jarak manual di sini, jangan pakai padding di dalam teks */
    max-width: 1200px;
    margin: 0 auto;
}

.text-section {
    flex: 1.3;
    padding-top: 20px;
    position: relative;
}

.who-title {
    font-size: 2.8rem;
    color: #1d3557;
    margin-bottom: 5px;
    font-weight: 700; /* Medium Sans style */
}

.title-line {
    width: 225px;
    height: 4px;
    background-color: #6a95cc;
    margin-bottom: 50px;
}

.who-desc {
    font-size: 1.2rem; /* Sesuaikan ukuran agar pas dengan desain */
    line-height: 1.8;
    color: #444;
    /* HAPUS padding-right: 50% tadi */
    text-align: left; /* Pastikan rata kiri agar dekat dengan gambar */
}

/* Responsif Mobile */
@media (max-width: 992px) {
    .content-flex { flex-direction: column; text-align: center; }
    .quote-box { position: static; width: 100%; margin-top: 20px; border-left: none; border-top: 10px solid #2b4c84; }
    .underline-blue { margin: 0 auto 30px auto; }
}

@media (max-width: 768px) {
    /* Container utama Who We Are */
    .who-we-are {
        padding: 60px 0; /* Kurangi padding atas bawah agar tidak terlalu kosong */
    }

    .content-flex {
        flex-direction: column; /* Gambar di atas, teks di bawah */
        gap: 50px; /* Jarak antara gambar dan teks deskripsi */
        padding: 0 20px; /* Kunci agar tidak mepet pinggir layar HP */
    }

    /* Penyesuaian Area Gambar */
    .image-section {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 40px; /* Ruang untuk kotak quote yang menggantung */
    }

    .blue-back-frame {
    position: center;
    padding-left: 90px;
    top: 15px;
    left: 60px;
    width: 40%;
    height: 100%;
    }

    /* Kotak Quote di Mobile */
.quote-card {
    position: absolute;
    right: 30%; /* Keluar sedikit dari gambar ke arah kanan */
    top: 30%;
    transform: translateY(-50%);
    background: white;
    padding: 16px;
    width: 280px;
    border-left: 20px solid #2b4c84;
    border-bottom: 10px solid #2b4c84;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
    border-radius: 0 15px 15px 0;
}
    /* Penyesuaian Teks Deskripsi */
    .text-section {
        width: 100%;
        text-align: center; /* Rata tengah di HP lebih enak dibaca */
    }

    .title-line {
        margin: 0 auto 25px auto; /* Garis biru diletakkan di tengah */
    }

    .who-title {
        font-size: 2.2rem; /* Ukuran judul lebih kecil agar pas di layar HP */
    }

    .who-desc {
        font-size: 1.1rem;
        line-height: 1.6;
        padding-right: 0; /* Memastikan tidak ada padding maut yang bikin teks kurus */
        text-align: justify; /* Tetap rata kiri-kanan agar rapi, atau center sesuai selera */
    }
}


/* --- Visi & Misi Section --- */
.visi-misi-section { padding: 10px 0; }

.text-center-wrapper {
    max-width: 900px; /* Membatasi lebar agar tetap di tengah layar */
    margin: 0 auto;
    text-align: left; /* Teks penjelasan tetap rata kiri agar rapi */
}

.section-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.vertical-line {
    width: 4px;
    background-color: #2b4c84; /* Biru Rimena */
    height: 50px;
}

.tagline {   
    font-size: 2.8rem;
    color: #1d3557;
    margin-bottom: 5px;
    font-weight: 700; /* Medium Sans style */ }

.main-heading { font-size: 2rem; color: #5b84c1; line-height: 1.4; max-width: 800px; }
.main-heading span { font-style: italic; color: #5b84c1; }

/* Pill Tab Buttons */
.pill-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.pill-btn {
    padding: 10px 45px;
    border: 2px solid #2b4c84;
    background: transparent;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d3557;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn.active {
    background-color: #2b4c84;
    color: white;
}

/* Visi Content Styling */
.tab-pane-visi { display: none; animation: fadeIn 0.5s ease; }
.tab-pane-visi.active { display: block; }

.content-title { font-size: 1.8rem; color: #1d3557; margin-bottom: 30px; }

.visi-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.word {
    font-weight: 900; /* Extra Bold */
    padding-left: 2rem;
    font-size: 1.5rem;
    width: 150px;
    color: #1e3a6a;
}

.explanation {
    color: #444;
    font-weight: 500; /* Medium Sans */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Penyesuaian agar tidak mepet di Android/Mobile */
@media (max-width: 768px) {
    .text-center-wrapper {
        padding: 0 20px; /* Memberikan jarak aman dari pinggir layar HP */
        max-width: 100%;
    }

    .section-header {
        flex-direction: column; /* Baris vertikal dan teks jadi bertumpuk */
        gap: 10px;
        align-items: flex-start;
    }

    .vertical-line {
        height: 5px;
        width: 50px; /* Garis berubah dari berdiri jadi tidur di mobile */
    }

    .tagline {
        font-size: 2rem; /* Ukuran teks judul dikecilkan agar muat */
    }

    .main-heading {
        font-size: 1.4rem;
    }

    /* Agar tombol tidak balapan keluar layar */
    .pill-tabs {
        flex-wrap: wrap; /* Tombol akan turun ke bawah jika tidak muat */
        gap: 10px;
        justify-content: center; /* Tombol jadi di tengah di mode HP */
    }

    .pill-btn {
        padding: 8px 25px; /* Ukuran tombol lebih kecil di HP */
        font-size: 1rem;
        flex: 1 1 auto; /* Tombol ukurannya fleksibel mengikuti layar */
        text-align: center;
    }

    /* List Visi agar tidak mepet */
    .visi-item {
        flex-direction: column; /* Kata kunci dan penjelasan jadi bertumpuk */
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 20px;
    }

    .word {
        width: 100%; /* Melepaskan lebar kaku agar teks penjelasan tidak terdorong */
    }
}

/* --- Konsultasi Section --- */
.konsultasi-section {
    padding: 100px 0;
    background-color: #fff;
}

.container-custom {
    max-width: 1000px;
    margin: 0 auto;
}

.konsultasi-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Dekorasi Gambar */
.konsultasi-image {
    position: relative;
    flex: 1;
}

.img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    display: block;
}

.frame-decor {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid #2b4c84;
    border-radius: 40px;
    z-index: 1;
}

/* Teks & Button */
.konsultasi-text {
    flex: 1.5;
}

.header-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.line-blue {
    width: 3px;
    height: 35px;
    background-color: #2b4c84;
}

.title-small {
    font-size: 2.3rem;
    color: #1d3557;
    font-weight: 600;
}

.main-quote {
    font-size: 2.5rem;
    line-height: 1.4;
    color: #5b84c1;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-konsultasi {
    display: inline-block;
    background-color: #2b4c84;
    color: white;
    padding: 12px 30px;
    border-radius: 8px; /* Bentuk kotak sedikit rounded sesuai gambar */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-konsultasi:hover {
    background-color: #1d3557;
    transform: translateY(-3px);
}

/* --- Mode Android / Mobile --- */
@media (max-width: 768px) {
    .konsultasi-section {
        padding: 60px 20px; /* Jarak aman agar tidak mepet samping */
    }

    .konsultasi-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .header-inline {
        justify-content: center;
    }

    .konsultasi-image {
        width: 85%; /* Sedikit mengecil agar frame terlihat manis */
        margin: 0 auto;
    }

    .main-quote {
        font-size: 1.4rem;
    }

    .btn-konsultasi {
        width: 100%;
        max-width: 280px;
    }
}

/* Paket Galery Section */
/* --- Paket Gallery Style --- */
.paket-gallery-section { padding: 10px 0; }

.section-header-inline { display: flex; align-items: center; gap: 15px; margin-bottom: 40px;margin-top: 50px;}
.blue-line-vertical { width: 4px; height: 40px; background: #2b4c84; }
.title-paket { font-size: 3.2rem; color: #1d3557; font-weight: 700; }

/* Card Styling */
.paket-card-long {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    align-items: center;
    transition: 0.3s;
}

/* EFEK ZOOM GAMBAR */
.paket-image-container {
    flex: 0 0 300px;
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Transisi zoom halus */
}

.paket-image-container:hover .zoom-img {
    transform: scale(1.1); /* Zoom masuk saat hover */
}

.overlay-click {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.3s; color: white; font-size: 2rem;
}

.paket-image-container:hover .overlay-click { opacity: 1; }

/* Content Detail */
.paket-details { flex: 3; padding: 20px; border-right: 1px solid #eee; }

.paket-details h3 {
    /* Ubah angka ini sesuai keinginanmu */
    font-size: 1.8rem; 
    
    /* Tambahan agar lebih pas */
    font-weight: 700;
    color: #1d3557;
    margin: 0; /* Menghilangkan jarak bawaan agar sejajar dengan badge */
}
.title-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 30px; 
}

.badges { 
    display: flex; 
    gap: 10px; 
}

.badge { 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    color: white; 
}

.available { background: #5bc0de; }
.limited { background: #d9534f; }

/* --- Styling Badge Lebih Hidup --- */
.badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase; /* Membuat teks jadi kapital agar tegas */
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Shadow halus agar terlihat timbul */
}

/* Style Khusus Available (Warna Biru Cerah) */
.available {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    box-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
    position: relative;
    overflow: hidden;
}

/* Style Khusus Seat Terbatas (Warna Merah Pulse) */
.limited {
    background: linear-gradient(135deg, #ef5350, #d32f2f);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
    animation: pulse-red 2s infinite; /* Efek berdenyut */
}

/* Animasi Pulse untuk Seat Terbatas agar User langsung melihat */
@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* Efek Kilatan Cahaya untuk Available (Opsional) */
.available::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* --- Styling Tombol Konsultasi yang Lebih Hidup --- */
.btn-konsultasi-blue {
    background: linear-gradient(135deg, #2b4c84, #1d3557); /* Gradasi biru Rimena */
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    transition: all 0.3s ease;
    
    /* Tambahkan animasi getar & pendaran */
    animation: floating-glow 3s infinite ease-in-out;
}

/* Animasi Floating Glow & Wobble */
@keyframes floating-glow {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 25px rgba(43, 76, 132, 0.6);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(43, 76, 132, 0.4);
    }
}

/* Efek cahaya lewat (Shine) saat di-hover atau secara otomatis */
.btn-konsultasi-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.5s;
}

.btn-konsultasi-blue:hover::before {
    left: 100%;
}

.btn-konsultasi-blue:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #3a63a5, #2b4c84);
    box-shadow: 0 10px 30px rgba(43, 76, 132, 0.5);
}


.info-grid { 
    display: 
    grid; grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.info-item { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
}

.info-item i { 
    font-size: 1.5rem; 
    color: #333; 
    width: 30px; }

.info-item .label { font-size: 0.9rem; color: #777; margin: 0; }

.info-item .val { font-size: 1.1rem; font-weight: 600; color: #333; margin: 0; }

.paket-action { flex: 1; padding: 30px; text-align: center; }

.price-num { font-size: 2.5rem; color: #000; font-weight: 800; margin: 10px 0 30px 0; }

.btn-konsultasi-blue { background: #2b4c84; color: white; padding: 12px 40px; border-radius: 10px; text-decoration: none; font-weight: 600; display: inline-block; }

/* --- LIGHTBOX POP-UP STYLE --- */
.lightbox {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); justify-content: center; align-items: center;
}
.lightbox img { max-width: 90%; max-height: 80%; border: 5px solid white; border-radius: 10px; }
.close-btn { position: absolute; top: 30px; right: 50px; color: white; font-size: 3rem; cursor: pointer; }

/* --- ANDROID MODE --- */
@media (max-width: 768px) {
    .paket-card-long { flex-direction: column; }
    .paket-image-container { width: 100%; height: 300px; flex: none; }
    .info-grid { grid-template-columns: 1fr; }
    .paket-details { border-right: none; border-bottom: 1px solid #eee; }
    .title-row { flex-direction: column; align-items: flex-start; gap: 15px; }
}


/* --- FOOTER Styling --- */
.main-footer {
    background-color: #2b4c84; /* Biru Navy sesuai gambar */
    color: white;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px;
    flex-wrap: wrap; /* Supaya rapi di layar kecil */
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Ikon Sosial Media Menggunakan Font Icon */
.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.social-icons a {
    color: white; /* Warna ikon jadi putih */
    font-size: 2rem; /* Ukuran ikon (sama seperti ukuran font) */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* Efek saat kursor di atas ikon */
.social-icons a:hover {
    color: #6a95cc; /* Berubah jadi biru muda Rimena saat hover */
    transform: translateY(-5px); /* Sedikit melompat ke atas */
}

/* Menu Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative; /* Penting untuk posisi garis */
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    transform: scale(1.1); /* Membesar 10% */
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0; /* Mulai dari lebar 0 */
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease; /* Animasi memanjang ke samping */
}

/* Saat di-hover, garis memanjang ke kanan */
.footer-links a:hover::after {
    width: 100%; /* Garis muncul penuh */
}

/* Kolom Kontak */
.contact-info p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Responsif Footer --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}


/* --- RESPONSIVE DESIGN (Untuk HP & Tablet) --- */

@media (max-width: 768px) {
    /* 1. Navbar: Menu berubah jadi lebih simpel atau bisa di-scroll */
    .navbar {
        padding: 15px 5%;
        flex-direction: column; /* Logo di atas, menu di bawah */
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .btn-consultation {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* 2. Home Section: Kotak putih menyesuaikan layar HP */
    .home-content {
        padding: 30px 20px; /* Padding lebih kecil agar teks punya ruang */
        margin: 0 15px; /* Jarak agar kotak tidak menempel ke pinggir layar HP */
        max-width: 100%;
    }

    /* 3. Teks: Ukuran huruf dikecilkan supaya tidak menumpuk */
    .home-content h1 {
        font-size: 1.8rem; /* Lebih kecil dari ukuran desktop */
        line-height: 1.3;
    }

    .home-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-primary-alt {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Untuk HP yang sangat kecil (layar di bawah 480px) */
@media (max-width: 480px) {
    .home-content h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none; /* Opsional: Sembunyikan menu, fokus ke tombol konsultasi saja di HP */
    }
}


