/* assets/css/style.css - VERSION 15 (FIXED MOBILE CLICKS) */

/* --- 1. VARIABEL & RESET --- */
:root {
    --color-primary: #0056b3;
    --color-accent: #ff6b00;
    --color-text-dark: #1a202c;
    --color-text-grey: #4a5568;
    --color-bg-body: #FADA7A; 
    --color-bg-white: #ffffff;
    --color-footer: #0a2540;
    --container-width: 90%; 
    --max-width-limit: 1600px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-bg-body);
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* KOMPONEN UMUM */
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: var(--container-width); max-width: var(--max-width-limit); margin: 0 auto; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 42px; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; color: var(--color-text-dark); }
.section-desc { font-size: 18px; color: var(--color-text-grey); max-width: 700px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 16px; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: linear-gradient(135deg, var(--color-accent), #e65a00); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3); }
.btn-secondary { background-color: rgba(0, 86, 179, 0.05); color: var(--color-primary); border: 2px solid rgba(0, 86, 179, 0.1); }
.btn-secondary:hover { background-color: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-outline-dark { background: transparent; border: 2px solid var(--color-text-dark); color: var(--color-text-dark); margin-top: 40px; padding: 12px 40px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.btn-outline-dark:hover { background: var(--color-text-dark); color: #fff; transform: translateY(-3px); }
.btn-wa-group { background: #25D366; color: #fff; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-wa-group:hover { background: #128C7E; transform: translateY(-3px); color: #fff; }
.btn-full { width: 100%; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.9); padding: 15px 0; z-index: 1000; backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-item { position: relative; }
.nav-link { font-weight: 600; color: var(--color-text-dark); font-size: 15px; position: relative; padding: 10px 0; }
.nav-link:hover { color: var(--color-primary); }
.btn-daftar { background: var(--color-primary); color: #fff; padding: 10px 25px; border-radius: 50px; font-weight: 700; font-size: 14px; margin-left: 10px; box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2); }
.btn-daftar:hover { background: #004494; transform: translateY(-2px); color: #fff; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 15px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: 10px 20px; font-size: 14px; color: var(--color-text-dark); transition: 0.2s; border-bottom: 1px solid #f7f7f7; }
.dropdown-link:hover { background: #f0f7ff; color: var(--color-primary); padding-left: 25px; }
.fa-chevron-down { font-size: 10px; margin-left: 5px; opacity: 0.5; }

/* HERO */
/* Update: Added z-index 1 to prevent being covered by negative margin section below */
.hero { padding: 180px 0 120px 0; min-height: 95vh; display: flex; align-items: center; position: relative; z-index: 1; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(0, 86, 179, 0.1); color: var(--color-primary); padding: 8px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; margin-bottom: 25px; letter-spacing: 1px; border: 1px solid rgba(0, 86, 179, 0.1); }
h1.hero-title { font-size: 64px; line-height: 1.1; font-weight: 900; margin-bottom: 25px; letter-spacing: -2px; color: #1a202c; }
h1.hero-title span { color: var(--color-primary); position: relative; z-index: 1; }
h1.hero-title span::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 15px; background-color: rgba(255, 107, 0, 0.2); z-index: -1; border-radius: 8px; transform: rotate(-2deg); }
p.hero-desc { font-size: 20px; color: var(--color-text-grey); margin-bottom: 40px; max-width: 550px; }
.hero-collage { position: relative; height: 550px; display: flex; justify-content: center; align-items: center; }
.collage-card { position: absolute; border-radius: 24px; background-size: cover; background-position: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); border: 4px solid #fff; transition: var(--transition); }
.collage-card-placeholder { background: linear-gradient(135deg, #e2e8f0, #cbd5e0); display: flex; align-items: center; justify-content: center; color: #718096; font-weight: 700; text-align: center; padding: 20px; }
.card-main { width: 400px; height: 520px; z-index: 3; transform: rotate(0deg); background-image: url('https://placehold.co/400x520/0056b3/fff?text=Mekkah+Indah'); }
.card-small-1 { width: 220px; height: 220px; top: 20px; left: -20px; z-index: 2; transform: rotate(-10deg); background-image: url('https://placehold.co/220x220/ff6b00/fff?text=Jamaah'); }
.card-small-2 { width: 240px; height: 180px; bottom: 40px; right: -40px; z-index: 2; transform: rotate(8deg); background-image: url('https://placehold.co/240x180/e3f2fd/0056b3?text=Hotel'); }
.hero-collage:hover .card-main { transform: scale(1.02) rotate(0deg); z-index: 10; }
.bubble-wrapper { position: absolute; width: 60px; height: 60px; z-index: 20; transition: transform 0.1s linear, opacity 0.1s linear; }
.social-bubble { width: 100%; height: 100%; background: white; border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; animation: floaty 3s infinite ease-in-out; }
.bubble-wrapper:hover .social-bubble { transform: scale(1.1); box-shadow: 0 15px 35px rgba(0,0,0,0.2); cursor: pointer; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.sb-1 { top: -20px; right: 40px; animation-delay: 0s; } .sb-1 i { color: #E1306C; }
.sb-2 { bottom: 50px; left: -40px; animation-delay: 1s; } .sb-2 i { color: #000000; }
.sb-3 { top: 150px; left: -60px; animation-delay: 2s; } .sb-3 i { color: #25D366; }
.sb-4 { bottom: 0px; right: -50px; animation-delay: 1.5s; } .sb-4 i { color: #FF0000; }
.decorative-blob { position: absolute; z-index: -1; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.blob-1 { top: -10%; right: -5%; width: 400px; height: 400px; background-color: #ffe4c4; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: morph 15s infinite alternate; }
.blob-2 { bottom: 10%; left: -10%; width: 500px; height: 500px; background-color: #e3f2fd; border-radius: 60% 40% 30% 70% / 50% 40% 50% 60%; animation: morph 20s infinite alternate-reverse; }
@keyframes morph { 0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 100% { border-radius: 60% 40% 30% 70% / 50% 40% 50% 60%; } }

/* KEUNGGULAN */
.section-features { padding: 100px 0; position: relative; z-index: 2; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(30px); border-radius: 60px; margin: -80px 20px 0 20px; box-shadow: 0 -20px 60px rgba(0,0,0,0.03); border: 1px solid rgba(255,255,255,0.4); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-box { background: #fff; padding: 40px 30px; border-radius: 24px; border: 1px solid #edf2f7; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; transition: var(--transition); }
.feature-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.feature-box:hover::before { transform: scaleX(1); }
.feature-icon { width: 60px; height: 60px; background: rgba(0, 86, 179, 0.08); color: var(--color-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 25px; transition: var(--transition); }
.feature-box:hover .feature-icon { background: var(--color-primary); color: #fff; }

/* --- PAKET UMROH CARD (UPDATED STYLE) --- */
.section-paket { padding: 120px 0 80px 0; position: relative; z-index: 1; }
.paket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.paket-card { 
    background: #fff; border-radius: 24px; overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: var(--transition); 
    border: 1px solid #fff; display: flex; flex-direction: column;
}
.paket-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); z-index: 10; }
.paket-image { height: 220px; position: relative; overflow: hidden; }
.paket-image img { width: 100%; height: 100%; object-fit: cover; transition: 1s ease; }
.paket-card:hover .paket-image img { transform: scale(1.1); }

/* Konten Kartu Baru */
.paket-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.paket-title { font-size: 20px; font-weight: 800; margin-bottom: 15px; color: var(--color-text-dark); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.5px; }

/* List Detail (Icon + Text) */
.paket-details { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.detail-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #555; }
.detail-icon { width: 20px; text-align: center; color: #d69e2e; font-size: 14px; margin-top: 3px; }

/* Seat Badge (Kuning di tengah) */
.seat-badge {
    background: #FFF9C4; color: #F57F17;
    text-align: center; padding: 10px; border-radius: 50px;
    font-weight: 800; font-size: 13px; letter-spacing: 0.5px;
    margin: 15px 0 20px 0; border: 1px solid #FFF176;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.paket-price { font-size: 26px; font-weight: 900; color: var(--color-primary); margin-bottom: 5px; }
.paket-price-sub { font-size: 13px; color: #999; margin-bottom: 20px; font-weight: 500; }

/* JOIN GROUP */
.section-join { padding: 80px 60px; margin: 60px 0; background: #fff; border-radius: 40px; display: flex; align-items: center; justify-content: space-between; gap: 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.section-join::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05)); z-index: 0; }
.join-text { flex: 1; position: relative; z-index: 1; }
.join-image { flex: 1; position: relative; z-index: 1; text-align: center; }
.join-image img { max-width: 100%; height: auto; border-radius: 20px; transform: rotate(3deg); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.join-title { font-size: 36px; font-weight: 900; margin-bottom: 15px; color: var(--color-text-dark); }
.join-desc { font-size: 18px; color: var(--color-text-grey); margin-bottom: 30px; }
.join-benefits li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 600; }
.join-benefits i { color: #25D366; }

/* MARQUEE */
.section-gallery { padding: 80px 0; background: #fff; margin: 40px 0; border-radius: 0; overflow: hidden; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; }
.marquee-content { display: inline-flex; gap: 30px; animation: scroll-left 50s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gallery-card { width: 350px; height: 450px; flex-shrink: 0; border-radius: 20px; overflow: hidden; position: relative; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-card:hover img { transform: scale(1.1); }
.review-running-card { width: 400px; white-space: normal; background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.5); flex-shrink: 0; transition: 0.3s; }
.review-running-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.review-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-avt { width: 50px; height: 50px; border-radius: 50%; background: #eee; object-fit: cover; }
.review-body { font-size: 15px; line-height: 1.6; color: var(--color-text-grey); }

/* BENTO */
.section-bento { padding: 80px 0 120px 0; }
.bento-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; grid-template-rows: 280px 280px; }
.bento-card { background: #fff; border-radius: 30px; padding: 35px; display: flex; flex-direction: column; justify-content: space-between; transition: 0.4s; border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.bento-icon { font-size: 45px; margin-bottom: 20px; }
.bento-handle { font-size: 26px; font-weight: 800; margin-bottom: 5px; }
.bento-label { font-size: 16px; opacity: 0.7; }
.bento-arrow { position: absolute; top: 35px; right: 35px; font-size: 24px; opacity: 0; transform: translate(-10px, 10px); transition: 0.3s; }
.bento-card:hover .bento-arrow { opacity: 1; transform: translate(0, 0); }
.bento-map { grid-column: 1 / 2; grid-row: 1 / 3; background: url('https://placehold.co/800x800/1a202c/FFF?text=Google+Maps+Preview') center center/cover; color: #fff; position: relative; }
.bento-map::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); z-index: 1; }
.bento-map > * { position: relative; z-index: 2; }
.bento-ig { grid-column: 2 / 3; grid-row: 1 / 2; background: linear-gradient(135deg, #fff, #fefefe); color: #E1306C; }
.bento-tt { grid-column: 3 / 4; grid-row: 1 / 2; background: linear-gradient(135deg, #000, #222); color: #fff; }
.bento-yt { grid-column: 2 / 4; grid-row: 2 / 3; background: linear-gradient(135deg, #FF0000, #cc0000); color: #fff; }

/* FOOTER */
.footer { background-color: var(--color-footer); color: #fff; padding: 100px 0 40px 0; margin-top: 0; border-radius: 60px 60px 0 0; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 70px; } /* FIX: sesuai 3 kolom footer.php */
.footer-col h4 { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.footer-col p { color: #aab7c4; max-width: 520px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aab7c4; }
.footer-col ul li a:hover { color: #fff; }

.footer-logo{
    height: 44px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; color: #aab7c4; font-size: 14px; }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease; background-color: var(--color-text-dark); border-radius: 3px; }

/* WA FLOATING - FIXED MOBILE CLICKS ISSUE */
/* Penjelasan: Container WA dibuat tembus klik (pointer-events: none) agar tidak menghalangi tombol lain. 
   Hanya tombol WA dan menu-nya yang dibuat bisa diklik (pointer-events: auto). */
.wa-floating-container { 
    position: fixed; bottom: 30px; right: 30px; z-index: 9999; 
    display: flex; flex-direction: column; align-items: flex-end; gap: 15px; 
    pointer-events: none; /* KEY FIX: Area kosong tidak menghalangi klik */
}

.wa-main-btn { 
    width: 70px; height: 70px; background-color: #25D366; color: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 36px; 
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); cursor: pointer; 
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: none; outline: none; 
    pointer-events: auto; /* Tombol tetap bisa diklik */
}
.wa-main-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6); }

.wa-menu { 
    list-style: none; padding: 0; margin: 0; 
    display: flex; flex-direction: column; gap: 10px; 
    opacity: 0; visibility: hidden; 
    transform: translateY(20px) scale(0.9); transition: all 0.3s ease; transform-origin: bottom right; 
    pointer-events: auto; /* Menu tetap bisa diklik saat muncul */
}
.wa-menu.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

/* ini yang bikin tampil "kotak putih + teks" */
.wa-item { display: flex; align-items: center; gap: 12px; background: white; padding: 12px 20px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); color: var(--color-text-dark); font-weight: 700; font-size: 14px; transition: 0.2s; text-decoration: none; white-space: nowrap; }
.wa-item:hover { transform: translateY(-2px); }
.wa-icon-small { width: 30px; height: 30px; background: #e6ffed; color: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.wa-main-btn.active i { transform: rotate(135deg); }

@media (max-width: 1200px) { .section-join { flex-direction: column; text-align: center; } .join-benefits li { justify-content: center; } }
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 80px; }
    .hero-image { order: -1; } .hero-collage { height: 450px; }
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-map { grid-column: 1 / 3; grid-row: 1 / 2; height: 250px; }
    .bento-ig { grid-column: 1 / 2; grid-row: 2 / 3; }
    .bento-tt { grid-column: 2 / 3; grid-row: 2 / 3; }
    .bento-yt { grid-column: 1 / 3; grid-row: 3 / 4; }
}
@media (max-width: 768px) {
    .hamburger { display: block; z-index: 1001; }
    .nav-menu { position: fixed; left: -100%; top: 0; width: 85%; height: 100vh; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; box-shadow: 10px 0 30px rgba(0,0,0,0.1); z-index: 1000; transition: 0.4s; align-items: center; }
    .nav-menu.active { left: 0; }
    .dropdown-menu { position: relative; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; text-align: center; padding: 0; display: none; }
    .nav-item:hover .dropdown-menu { display: block; }
    .btn-daftar { margin: 20px 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-map, .bento-ig, .bento-tt, .bento-yt { grid-column: 1 / 2; grid-row: auto; }
    .wa-floating-container { bottom: 20px; right: 20px; }
    .wa-main-btn { width: 60px; height: 60px; font-size: 30px; }
    .gallery-card { width: 250px; height: 350px; }
}
.reveal { opacity: 0; transform: translateY(60px) scale(0.95); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* =========================================================
   ADDITIONS: Active menu + internal pages + mobile fixes
   ========================================================= */
.nav-link.is-active { color: var(--color-primary); }
.nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 999px;
    opacity: 0.35;
}

/* Prevent accidental horizontal overflow on small screens */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; }

/* --- Internal page header --- */
.page-header {
    padding: 170px 0 70px 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);
    border-radius: 0 0 60px 60px;
    border: 1px solid rgba(255,255,255,0.5);
}
.page-title {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.breadcrumb { color: rgba(26,32,44,0.7); font-weight: 600; }
.breadcrumb a { color: var(--color-primary); }
.section-content { padding: 70px 0 90px 0; }
.content-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
}
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.card-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.card-mini {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-soft);
}
.card-mini h3 { font-size: 18px; margin-bottom: 8px; }
.card-mini p { color: var(--color-text-grey); font-size: 14px; }

/* --- Contact form (used by some pages) --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-info, .contact-form {
    background: #fff; border-radius: 28px; padding: 35px;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04);
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 18px; }
.contact-icon {
    width: 42px; height: 42px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,86,179,0.08); color: var(--color-primary);
}
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-weight: 700; margin-bottom: 8px; }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    outline: none;
    font-family: inherit;
}
.form-control:focus { border-color: rgba(0,0,86,179,0.55); box-shadow: 0 0 0 4px rgba(0,86,179,0.10); }

/* --- Paket detail page --- */
.detail-header {
    padding: 180px 0 70px 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);
    border-radius: 0 0 60px 60px;
    border: 1px solid rgba(255,255,255,0.5);
}
.detail-title { font-size: 44px; font-weight: 900; margin-top: 14px; line-height: 1.15; }
.detail-price { font-size: 30px; font-weight: 900; color: var(--color-primary); margin-top: 10px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.meta-item {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    color: rgba(26,32,44,0.8);
}
.detail-content-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; margin: 40px 0 90px; }
.detail-box, .sidebar-card {
    background: #fff; border-radius: 28px; padding: 35px;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04);
}
.detail-section-title { font-size: 20px; font-weight: 900; margin: 10px 0 15px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 12px 10px; border-bottom: 1px solid rgba(0,0,0,0.06); vertical-align: top; }
.sidebar-note { margin-top: 14px; color: rgba(26,32,44,0.65); font-size: 13px; line-height: 1.5; }

/* --- Gallery page --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04); background: #fff; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; }
.gallery-item:hover img { transform: scale(1.03); transition: 0.4s; }

/* --- Branch cards --- */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.branch-card {
    background: #fff; border-radius: 26px; padding: 26px;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04);
}
.branch-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.branch-card p { color: var(--color-text-grey); font-size: 14px; margin-bottom: 14px; }
.branch-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* --- Responsive overrides for small screens --- */
@media (max-width: 992px) {
    .card-main { width: 340px; height: 440px; }
    .card-small-1 { width: 190px; height: 190px; left: -10px; }
    .card-small-2 { width: 200px; height: 150px; right: -20px; }
}

@media (max-width: 768px) {
    h1.hero-title { font-size: 44px; }
    p.hero-desc { font-size: 16px; }
    .hero { padding: 140px 0 80px 0; min-height: auto; }
    .hero-collage { height: 380px; }

    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .paket-grid { grid-template-columns: 1fr; gap: 20px; }
    .review-running-card { width: 320px; }
    .section-features { margin: -70px 10px 0 10px; border-radius: 40px; }

    .section-join { padding: 50px 20px; border-radius: 30px; margin: 40px 10px; }
    .footer { border-radius: 40px 40px 0 0; }

    .page-header { padding: 150px 0 60px 0; border-radius: 0 0 40px 40px; }
    .page-title { font-size: 34px; }

    .two-col, .contact-container, .detail-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1.hero-title { font-size: 38px; }
    .card-main { width: 280px; height: 360px; }
    .card-small-1 { width: 150px; height: 150px; top: 10px; left: -5px; }
    .card-small-2 { width: 160px; height: 120px; bottom: 20px; right: -10px; }
    .sb-2 { left: -10px; }
    .sb-3 { left: -10px; }

    .gallery-item img { height: 220px; }
}

/* =========================================================
   NEW: HERO TRUST BAR (PPIU/PIHK + LOGO VALIDASI)
   ========================================================= */
.hero-trust{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.license-chips{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.license-chip{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-size: 13px;
    font-weight: 800;
}
.license-chip b{ color: var(--color-primary); }
.trust-logos{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logos img{
    height: 30px;
    width: auto;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
@media (max-width: 768px){
    .hero-trust{ justify-content: center; }
}
/* =========================================================
   TAMBAHAN DESAIN KHUSUS: KANTOR CABANG
   ========================================================= */

/* Style Asli */
.office-badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.office-badge { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:999px; background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06); font-weight: 800; font-size: 13px; }
.map-frame { width:100%; height: 320px; border:0; border-radius: 18px; overflow:hidden; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); }
.photo-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:14px; margin-top:16px; }
.photo-grid a { display:block; }
.photo-grid img { width:100%; height: 220px; object-fit: cover; border-radius: 18px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); display:block; }

/* Style Teks Bantuan Kosong (Peringatan Jika Belum Upload Foto) */
.photo-empty{ margin-top:14px; padding:16px 18px; border-radius: 16px; background: rgba(0,86,179,0.06); border: 1px dashed rgba(0,86,179,0.25); font-weight: 800; color: rgba(26,32,44,0.75); font-size: 13px; line-height: 1.5; }

/* HERO GAMBAR SAMAR & TRANSISI HALUS */
.cabang-hero { position: relative; padding: 60px 0 40px; color: #0b1d39; margin-bottom: 20px; }
.cabang-hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('assets/img/header-cabang.jpg') center top / cover no-repeat; opacity: 0.12; z-index: 0; -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%); }
.cabang-hero .container { position: relative; z-index: 2; }

.cabang-hero-title { font-size: 42px; font-weight: 900; margin-bottom: 8px; line-height: 1.2; color: #0b1d39; }
.cabang-hero-desc { font-size: 18px; opacity: 0.85; margin-bottom: 25px; max-width: 650px; line-height: 1.6; color: #1a202c; }

.breadcrumb { color: #1a202c; opacity: 0.8; margin-bottom: 20px; font-size: 14px; }
.breadcrumb a { color: #0056b3; text-decoration: none; font-weight: 600; }

/* Kredibilitas Ala Homepage */
.hero-trust { margin-top: 20px; }
.license-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.license-chip { background: rgba(0, 86, 179, 0.08); color: #0056b3; padding: 6px 12px; border-radius: 6px; font-size: 13px; border: 1px solid rgba(0, 86, 179, 0.15); }
.trust-logos img { height: 35px; mix-blend-mode: multiply; } 

.office-hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:25px; }

/* DESAIN KEUNGGULAN YANG RINGKES */
.compact-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.compact-item { display: flex; align-items: flex-start; gap: 12px; background: rgba(255, 255, 255, 0.6); padding: 16px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s ease; }
.compact-item:hover { background: rgba(255, 255, 255, 0.9); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.compact-icon { font-size: 18px; color: #0056b3; background: rgba(0, 86, 179, 0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; }
.compact-text h3 { font-size: 15px; font-weight: 800; margin-bottom: 5px; color: #0b1d39; }
.compact-text p { font-size: 13px; line-height: 1.45; opacity: 0.8; margin: 0; }

/* SUPER CTA BAWAH TANPA BACKGROUND BIRU */
.section-super-cta { background: transparent; color: #1a202c; padding: 40px 0 60px; text-align: center; margin-top: 30px; border-top: 1px dashed rgba(0,0,0,0.1); }
.section-super-cta h2 { font-size: 32px; font-weight: 900; margin-bottom: 15px; color:#0b1d39;}
.section-super-cta p { font-size: 18px; opacity: 0.8; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.btn-wa-cta { font-size: 18px; padding: 15px 35px; background: #25D366; color: white; border-radius: 50px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: transform 0.3s; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25); }
.btn-wa-cta:hover { background: #128C7E; transform: translateY(-3px); color: #fff; }

/* VIDEO GRID (Layout Khusus 4 Video = 2x2) */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; }
.video-item { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.video-item iframe, .video-item .video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { display: flex; align-items: center; justify-content: center; cursor: pointer; background-size: cover; background-position: center; }
.video-placeholder::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); transition: background 0.3s; }
.video-placeholder:hover::before { background: rgba(0,0,0,0.2); }
.play-btn { position: relative; z-index: 2; font-size: 50px; color: #fff; opacity: 0.9; transition: transform 0.3s; }
.video-placeholder:hover .play-btn { transform: scale(1.1); }
.video-caption { position: absolute; bottom: 10px; left: 15px; z-index: 2; color: #fff; font-weight: 700; font-size: 14px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

/* PAKET MINI CARD */
.mini-paket-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 15px; }
.mini-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.mini-card img { width: 100%; height: 140px; object-fit: cover; }
.mini-content { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.mini-title { font-size: 14px; font-weight: 800; color: #0b1d39; margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mini-price { font-size: 16px; font-weight: 900; color: #ff6b00; margin-bottom: 10px; }
.mini-btn { display: block; width: 100%; text-align: center; padding: 10px; background: #0056b3; color: #fff; text-decoration: none; border-radius: 8px; font-weight: 700; font-size: 13px; margin-top: auto; transition: background 0.3s; }
.mini-btn:hover { background: #0b1d39; }

/* FAQ ACCORDION - 2 KOLOM */
.faq-container { margin-top: 40px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; align-items: start; }
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.02); margin-bottom: 0; }
.faq-header { padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: #0b1d39; transition: background 0.3s; font-size: 15px; }
.faq-header:hover { background: #f8fbff; }
.faq-header i { transition: transform 0.3s; color: #0056b3; }
.faq-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease-out; opacity: 0; background: #fff; }
.faq-item.active .faq-header { background: #f0f7ff; color: #0056b3; border-bottom: 1px solid #eef2fa; }
.faq-item.active .faq-header i { transform: rotate(180deg); }
.faq-item.active .faq-body { padding: 15px 20px 20px; max-height: 500px; opacity: 1; line-height: 1.6; color: #1a202c; font-size: 14px; }

/* RESPONSIVE KHUSUS TAMPILAN HP / TABLET */
@media (max-width: 1024px) {
    .compact-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cabang-hero-title { font-size: 32px; margin-bottom: 10px; }
    .cabang-hero-desc { font-size: 16px; margin-bottom: 20px; }
    .office-hero-actions { flex-direction: column; align-items: center; gap: 12px !important; margin-top: 25px; }
    .office-hero-actions .btn { width: 100%; max-width: 320px; display: flex; justify-content: center; margin: 0 !important; }
    .compact-features { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
    .video-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}