/* --- 1. HERO SECTION --- */
.hero { 
    padding-top: 40px !important; 
    padding-bottom: 70px !important; /* Kita tambah ruang di bawah agar kotak tidak menimpa gambar terlalu banyak */
    min-height: auto !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-content { align-items: center !important; gap: 0px !important; }

.hero-title { 
    font-size: clamp(26px, 3.5vw, 48px) !important; 
    line-height: 1.2 !important; 
    margin-bottom: 15px;
    background: linear-gradient(to right, #0b1d39 0%, #0056b3 60%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
}

.hero-desc { 
    font-size: 16px !important; 
    line-height: 1.6 !important; 
    max-width: 95% !important; 
    margin-bottom: 25px;
    color: #444;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; 
}

.hero-buttons .btn { 
    padding: 14px 24px !important; 
    font-weight: 700 !important; 
    border-radius: 50px !important; 
    margin-left: 0 !important;
}

.btn-wa-custom {
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
}
.btn-wa-custom:hover {
    transform: translateY(-3px);
    background-color: #128C7E !important;
    color: #fff !important;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: flex-end;    
    padding-top: 20px;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } 
    100% { transform: translateY(0px); }
}

@keyframes floatingCenter {
    0% { transform: translate(-50%, 0px); }    
    50% { transform: translate(-50%, -15px); }
    100% { transform: translate(-50%, 0px); }
}

.hero-model-img {
    width: auto;
    max-width: 120%; 
    height: auto;
    max-height: 400px; 
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15)); 
    animation: floating 6s ease-in-out infinite;
    will-change: transform;
    margin-bottom: 0px; /* Kita kembalikan ke normal agar tidak terlalu ke bawah */
}

.akreditasi-badge {
    position: absolute;
    top: 0; 
    left: 50%; 
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    animation: floatingCenter 6s ease-in-out infinite reverse;
    border: 2px solid #FFD700;
    white-space: nowrap;
}
.akreditasi-text {
    display: flex; flex-direction: column; line-height: 1.1;
    font-size: 13px; font-weight: bold; color: #0b1d39;
}
.akreditasi-sub { font-size: 10px; color: #666; font-weight: normal; }

/* --- CSS PENCARIAN PAKET (SUDAH DIREVISI) --- */
.search-panel {
    background: #fff;
    border-radius: 20px; /* Sudut lebih membulat */
    padding: 25px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    
    /* INI KUNCI REVISINYA: */
    max-width: 950px; /* Lebar dibatasi, tidak full Kiri-Kanan */
    margin: -50px auto 60px auto; /* Tarik ke atas 50px, Posisikan di Tengah (auto), Dorong ke bawah 60px */
    
    position: relative;
    z-index: 20;
    border: 1px solid rgba(0,0,0,0.05);
}
.search-panel-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b1d39;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}
.search-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    display: block;
}
.search-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s;
    cursor: pointer;
}
.search-form-group select:focus {
    border-color: #2575fc;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
}
.btn-search {
    background: linear-gradient(to right, #0056b3, #2575fc);
    color: #fff;
    border: none;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.3);
    color: #fff;
}

/* --- 2. CSS KARTU PAKET BARU --- */
.content-card-home {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.paket-grid {
    display:grid; gap:25px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.paket-card {
    width:100%; border-radius: 12px; border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff; position: relative;
    display: flex; flex-direction: column;
}
.paket-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }

.paket-image {
    height: 180px; overflow: hidden;
    border-top-left-radius: 12px; border-top-right-radius: 12px;
    position: relative;
}
.paket-image img {
    width:100%; height:100%; object-fit:cover; display:block;
    transition: transform 0.5s ease;
}
.paket-card:hover .paket-image img { transform: scale(1.05); }

.paket-body {
    padding: 18px; 
    flex-grow: 1;
    display: flex; flex-direction: column;
}
.paket-title { 
    font-size: 16px; font-weight: 800; margin-bottom: 15px; 
    line-height: 1.3; color: var(--color-secondary);
    min-height: 42px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; 
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}
.info-item { display: flex; flex-direction: column; font-size: 13px; color: #333; }
.info-item.full-width { grid-column: span 2; }

.info-label {
    font-size: 10px; color: #999; margin-bottom: 3px;
    text-transform: uppercase; letter-spacing: 0.3px; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
}
.info-label i { color: var(--color-primary); font-size: 11px; }

.info-value {
    font-weight: 700; color: #444;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.info-value.wrap-text { white-space: normal; line-height: 1.3; font-size: 12px; }

.paket-badge {
    position: absolute; top: 12px; left: 12px; z-index: 10;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000; padding: 4px 10px; border-radius: 4px;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); letter-spacing: 0.5px;
}

.jadwal-container { margin-top: auto; margin-bottom: 15px; }
.jadwal-label { font-size: 11px; color: #888; margin-bottom: 6px; font-weight: 600; }
.jadwal-list { display: flex; flex-wrap: wrap; gap: 5px; }
.jadwal-item {
    display: inline-block; padding: 5px 10px;
    background: #f8f9fa; color: var(--color-secondary);
    border-radius: 4px; font-size: 11px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
    border: 1px solid #e9ecef;
}
.jadwal-item:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.price-section { 
    display: flex; justify-content: space-between; align-items: center; 
    padding-top: 10px; border-top: 1px solid #f0f0f0;
}
.price-currency { 
    font-size: 18px; font-weight: 900; 
    color: var(--color-primary); 
    display: flex; align-items: center; gap: 2px;
}
.price-symbol { font-size: 14px; font-weight: 600; margin-top: 2px; } 
.btn-detail { font-size: 12px; padding: 8px 20px; border-radius: 50px; font-weight: 600; }

/* --- 3. SOSMED BENTO --- */
.bento-card {
    border: none !important; position: relative; overflow: hidden;
    color: #fff !important; z-index: 1; text-decoration: none !important;
    background-color: #333; background-size: 100%; background-position: center;
    transition: background-size 0.5s ease;
}
.bento-card:not(.bento-map):hover { background-size: 110%; }
.bento-card:not(.bento-map)::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    z-index: 2; transition: background 0.3s; pointer-events: none;
}
.bento-card:not(.bento-map):hover::after {
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}
.bento-map { background: #f0f0f0; display: block; padding: 0; }
.map-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; z-index: 1; pointer-events: auto; }
.bento-content-wrapper {
    position: relative; z-index: 5; height: 100%; display: flex; flex-direction: column;
    justify-content: space-between; pointer-events: none; padding: 20px; 
}
.bento-content-wrapper a, .bento-content-wrapper button { pointer-events: auto; }

.bento-ig { background-image: url('../img/bg_ig.jpg'), url('https://placehold.co/400x300/C13584/FFFFFF?text=Foto+Jamaah'); background-size: cover; background-position: center; }
.bento-tt { background-image: url('../img/bg_tt.jpg'), url('https://placehold.co/400x300/000000/FFFFFF?text=Cover+Video'); background-size: cover; background-position: center; }
.bento-yt { background-image: url('../img/bg_yt.jpg'), url('https://placehold.co/400x300/FF0000/FFFFFF?text=Thumbnail+Vlog'); background-size: cover; background-position: center; }

.bento-icon, .bento-arrow { color: #fff !important; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.bento-handle { font-weight: 700 !important; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.bento-label { color: rgba(255,255,255,0.9) !important; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }

/* --- RESPONSIVE MOBILE FIX --- */
@media (max-width: 992px) { 
    .hero { text-align: center; padding-top: 40px !important; display: block; }
    .hero-content { display: flex; flex-direction: column; gap: 40px !important; }
    .hero-text { display: flex; flex-direction: column; align-items: center; padding: 0 15px; }
    .hero-desc { max-width: 100% !important; }
    .hero-model-img { max-height: 350px; max-width: 100%; margin-top: 20px; } 
    .akreditasi-badge { padding: 8px 15px; font-size: 12px; }
    .hero-buttons { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .license-chips { justify-content: center !important; } 
    .trust-logos { justify-content: center !important; }
    
    .navbar .container, header .container, nav .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .navbar-brand, .logo-header {
        margin-left: 10px;
    }
    
    /* Revisi khusus mobile biar pencarian tidak nabrak */
    .search-panel { 
        margin: 10px 15px 40px 15px; 
        max-width: 100%; 
    }
}
@media (max-width: 576px) { 
    .hero-title { font-size: 26px !important; } 
    .hero-desc { font-size: 14px !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .search-panel { padding: 20px 15px; margin-top: 20px; }
}

/* --- ANIMASI MARQUEE --- */
@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.marquee-content { display:flex; gap:20px; width:max-content; }
.marquee-left { animation: scrollLeft 30s linear infinite; }
.marquee-right { animation: scrollRight 30s linear infinite; }
.marquee-container:hover .marquee-content { animation-play-state: paused; }
.gallery-card img { width:100%; height:450px; object-fit:cover; border-radius:12px; }
.join-image img { width:100%; height:100%; object-fit:cover; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,0.1); }

/* --- POP-UP PROMO CSS --- */
.promo-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.75); z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.promo-modal-overlay.show { opacity: 1; visibility: visible; }

.promo-modal-content {
    position: relative; width: 90%; max-width: 500px;
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.promo-modal-overlay.show .promo-modal-content { transform: translateY(0); }

.promo-close-btn {
    position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
    background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #333; font-size: 20px; font-weight: bold; cursor: pointer;
    z-index: 10; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: all 0.2s;
    border: none;
}
.promo-close-btn:hover { background: #fff; color: #e74c3c; transform: scale(1.1); }
.promo-image-link { display: block; width: 100%; background: #f8f9fa; }
.promo-image { width: 100%; height: auto; max-height: 65vh; object-fit: contain; display: block; }
.promo-action-area { padding: 15px 20px; background: #fff; }
.promo-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; background: #25D366; color: #fff;
    font-weight: 800; font-size: 16px; border-radius: 12px; text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); transition: all 0.3s;
}
.promo-cta-btn:hover { background: #128C7E; color:#fff; transform: translateY(-2px); }

.promo-countdown-wrapper {
    background: #fff3cd; text-align: center; padding: 12px; border-bottom: 2px dashed #ffc107;
}
.promo-countdown-title { font-size: 13px; font-weight: 800; color: #d32f2f; text-transform: uppercase; margin-bottom: 5px; }
.promo-countdown { font-size: 22px; font-weight: 900; color: #d32f2f; letter-spacing: 1px; font-family: monospace; }