/* --- RESET & DASAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* --- MOBILE VIEW LOCK --- */
.mobile-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
}

/* Background Gradasi Statik Seukuran Layar HP */
.mobile-container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: linear-gradient(180deg, #c1f5ff 0%, #f6e4f9 50%, #fdc4b0 100%);
    z-index: -1;
}

/* --- MAIN SECTION (GABUNGAN KONTEN) --- */
.main-section {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 30px 20px 40px 20px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo-img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.official-text {
    font-size: 11px;
    color: #555;
    font-weight: 500;
}

/* Profile Area */
.profile-wrapper {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-title {
    font-size: 1.4rem;
    color: #444;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

/* Buttons Light Glassmorphism */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px; /* Jarak antara tombol terakhir dan slider */
}

.glass-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.glass-btn:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.5);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 1.2rem;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.05);
}

.btn-text {
    flex: 1;
    text-align: left;
    padding-left: 15px;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Darker Glassmorphism for Slideshow Card */
.glass-card {
    background: rgba(240, 240, 240, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.slideshow-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slides-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-info {
    padding: 20px 5px 5px 5px;
    color: #333;
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.gallery-info p {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    margin: 15px 0;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item .label {
    font-size: 0.65rem;
    color: #888;
}

.info-item .value {
    font-size: 0.85rem;
    font-weight: 700;
}

.stars i {
    color: #ff5722;
    font-size: 0.75rem;
}

/* --- FOOTER --- */
.footer-section {
    padding: 30px 20px 0 20px;
    text-align: center;
}

.footer-label {
    font-size: 10px;
    color: #777;
    margin-bottom: 4px;
}

.footer-credit {
    font-size: 10px;
    color: #999;
}

.footer-credit a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
}

/* --- MODAL WA (KONDISI B) --- */
.wa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wa-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wa-modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-modal.active .wa-modal-content {
    transform: scale(1);
}

.modal-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

/* Setup Flexbox Column Sesuai Aturan */
.wa-list {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.wa-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px 15px;
    border-radius: 16px; 
    text-decoration: none;
    color: #444;
    transition: all 0.3s ease;
}

.wa-item:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

.wa-icon-box {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-info {
    text-align: left;
    flex-grow: 1;
}

.wa-info .admin-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.wa-item::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #aaa;
}

.close-modal {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 35px;
    border-radius: 20px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.close-modal:active {
    background: rgba(0, 0, 0, 0.15);
}