* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #54289b;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --violet: #8647ea;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --black: #000000;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border: #dee2e6;
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    overflow-x: hidden;
}
a {
    /*color: var(--white);*/
    text-decoration: none;
    cursor: pointer;
}

.app-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
}

/* Header Styles */
.header {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Search Bar */
.search-bar {
    background: #ffffff36;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.menu-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.menu-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

/* Sections */
.section {
    padding: 20px;
}

.section-list {
    padding-top: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.see-all {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* Promo Cards */
.promo-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.promo-card {
    min-width: 200px;
    height: 120px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-discount {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
}

.promo-description {
    font-size: 12px;
    opacity: 0.9;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
}

/* Package Cards */

.package-mitra-cards {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.package-mitra-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    height: 100%;
}

.package-mitra-image {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 1;
}

.package-mitra-info {
    padding: 10px;
    flex: 1;
}


.package-cards {
    display: grid;
    gap: 15px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    height: 100%;
}

.package-card-detail {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    padding: 10px;
}
.package-image {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 0.7;
}


.package-image-detail {
    width: 100px;
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex: 1;
}

.package-info {
    padding: 10px;
    flex: 1;
}

.package-info-two {
    padding: 10px;
    flex: 0.7;
}

.package-star {
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 1px;
}

.package-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.package-price {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.package-deposite {
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.package-details {
    color: var(--black);
    font-size: 10px;
    margin-top: 10px;
}

.package-detail-bangets {
    color: #8a8383;
    font-size: 10px;
    margin-bottom: 5px;
}

.package-details-two {
    color: var(--gray);
    font-size: 10px;
}

.reading-section {
    background: linear-gradient(130deg, #54289b, #0f0316, #54289b);
    color: white;
    padding: 20px;
    margin-bottom: 80px;
}

.reading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reading-title {
    font-size: 18px;
    font-weight: 600;
}

.book-preview {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.book-card {
    min-width: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.book-icon {
    font-size: 50px;
}

.book-title {
    font-size: 12px;
    font-weight: 500;
}

.cover-paket {
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.cover-book {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 500px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 12px;
    cursor: pointer;
}

.nav-item.active {
    color: var(--primary);
}

.nav-icon {
    font-size: 20px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.hero-banner {
    height: 150px;
    background: url('https://yaforion.my.id/sutraloka/image/banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: normal;
    color: white;
    margin: 10px;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
}

.ai-button {
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    color: #4e4e4e;
    text-decoration: none;
    display: inline-block;
}

.mb-80 {
    margin-bottom: 80px;
}

.button-10 {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 6px 14px;
   font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
   border-radius: 6px;
   border: none;

   color: #fff;
   background: linear-gradient(180deg, var(--primary) 0%, var(--primary)  100%);
   background-origin: border-box;
   box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
   user-select: none;
   -webkit-user-select: none;
   touch-action: manipulation;
}


.button-20 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;

    color: #fff;
    background: linear-gradient(180deg, var(--violet) 0%, var(--violet) 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-10:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
}

/* Responsive */
@media (max-width: 500px) {
    .app-container {
        width: 100%;
        border-radius: 0;
    }
}

