/* --- Header Layanan --- */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    animation: fadeIn 1s ease-out;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.page-header h1 span {
    font-weight: 700;
    color: var(--accent-color);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Pencarian */
.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--glass-bg);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 140, 147, 0.2);
}

/* --- Container Akordeon --- */
.accordion-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* --- Item Kategori (Header Lipatan) --- */
.acc-kategori {
    background: linear-gradient(135deg, #2c3e50 0%, #1e2b3c 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

[data-theme="dark"] .acc-kategori {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.acc-kategori:hover {
    transform: translateY(-2px);
}

.acc-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    user-select: none;
}

/* Ikon Plus/Minus */
.acc-icon {
    font-size: 1.5rem;
    color: #00adb5;
    transition: transform 0.3s ease;
}

/* --- Isi Akordeon (Daftar Layanan) --- */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--bg-base); /* Mengikuti tema terang/gelap global */
}

/* Garis pembatas antara isi dan header */
.acc-kategori.active .acc-body {
    border-top: 1px solid var(--glass-border);
}

.acc-kategori.active .acc-icon {
    transform: rotate(45deg); /* Tanda Plus (+) berubah jadi Silang (x) */
}

/* --- Tabel / List Item di dalam Akordeon --- */
.item-list {
    list-style: none;
    padding: 10px 25px 25px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--glass-border);
}

.item-row:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    padding-right: 20px;
}

.item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- Harga & Deretan Ikon Sosial --- */
.item-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 150px;
}

.item-price {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    text-align: right;
}

/* Container untuk deretan ikon */
.social-links-inline {
    display: flex;
    gap: 10px;
}

/* Desain tombol ikon bulat */
.soc-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Efek Hover (Menyala sesuai warna asli brand masing-masing) */
.soc-btn.wa:hover {
    background: #25D366; /* Hijau WA */
    color: #fff;
    border-color: #25D366;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.soc-btn.ig:hover {
    /* Gradasi Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.soc-btn.fb:hover {
    background: #1877F2; /* Biru FB */
    color: #fff;
    border-color: #1877F2;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.soc-btn.tt:hover {
    background: #000000; /* Hitam TikTok */
    color: #fff;
    border-color: #000000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Penyesuaian ikon TikTok di Mode Gelap */
[data-theme="dark"] .soc-btn.tt:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Pesan Kosong */
.no-result {
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
    font-style: italic;
}