:root {
    --bg-color: #F0F9F9; /* Sangat soft teal/mint */
    --primary: #008080; /* Teal Green (Bersih, Medis, Segar) */
    --primary-light: #E0F2F1;
    --accent: #FF9800; /* Warm Orange (Call to action) */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --wa-color: #25D366;
    --card-border: #D1E8E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #E2E8E8;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    min-height: 100vh;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    position: relative;
    overflow-x: hidden;
}

header {
    background: var(--white);
    color: var(--primary);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-light);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.logo i {
    color: var(--accent);
    margin-right: 5px;
}

.subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 350px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 128, 128, 0.95) 15%, rgba(0, 128, 128, 0));
    padding: 50px 20px 25px 20px;
    color: var(--white);
    text-align: center;
}

.badge-promo {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-overlay h1 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 600;
}

.benefit-section {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    background-color: var(--white);
    border-bottom: 1px solid var(--card-border);
}

.benefit-card {
    text-align: center;
    width: 31%;
}

.benefit-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
}

.content-section {
    padding: 25px 20px;
}

.section-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
    text-align: center;
}

/* Profile */
.profile-box {
    background: var(--white);
    border: 2px dashed var(--primary-light);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    border-radius: 12px;
    text-align: center;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    padding: 18px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 15px rgba(0, 128, 128, 0.04);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
}

.service-info { flex: 1; }

.service-info h3 {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 4px;
}

.desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.price {
    font-size: 14px;
    color: var(--primary);
    font-weight: 900;
}

.btn-outline {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.btn-outline:active {
    background: var(--accent);
}

/* Gallery Scroll */
.gallery-scroll, .testi-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
}
.gallery-scroll::-webkit-scrollbar, .testi-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-thumb, .testi-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }

.gallery-scroll img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Testimonials */
.testi-card {
    background: var(--white);
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
}
.testi-card::before {
    content: "\f10d";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--primary-light);
    opacity: 0.5;
}

.stars {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 12px;
}

.testi-card p {
    font-size: 13px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testi-card strong {
    font-size: 14px;
    color: var(--primary);
    font-weight: 800;
}

/* Info Card */
.info-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}
.map-container iframe { display: block; filter: hue-rotate(160deg); } /* Make map slightly greenish */
.address-box {
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-dark);
}
.address-box i {
    color: var(--primary);
    font-size: 22px;
    margin-top: 2px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}
.faq-item summary {
    padding: 15px;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    right: 15px;
    color: var(--primary);
}
.faq-item[open] summary::after { content: "-"; }
.faq-content {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 40px 20px 60px 20px;
    margin-bottom: 70px;
}
.socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
.socials a {
    color: var(--primary);
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
}
footer p { font-size: 12px; color: var(--primary-light); }
.bottom-spacer { height: 10px; }

/* Sticky Button */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0, 128, 128, 0.1);
    z-index: 100;
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.btn-whatsapp:active { transform: scale(0.98); }
