:root {
    --navy: #122B45;
    --navy-deep: #0B1D30;
    --teal: #1FA39D;
    --cream: #F8F3EA;
    --white: #ffffff;
    --line: #e5e7eb;
    --muted: #5a6a7a;
    --bg: #f5f5f5;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 2px 12px rgba(18,43,69,.06);
    --shadow-lg: 0 4px 24px rgba(18,43,69,.1);
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--navy);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.app-shell {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
}
@media (min-width: 481px) {
    body { background: var(--cream); }
    .app-shell {
        margin-top: 16px;
        margin-bottom: 16px;
        border-radius: 24px;
        min-height: calc(100vh - 32px);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }
}

.app-header { flex-shrink: 0; }
.screen {
    flex: 1;
    min-height: 0;
    padding: 0 16px 100px;
    /* Jangan jadikan .screen scroller bersarang: tanpa height terbatas,
       overflow-y:auto justru menjebak gesture touch sehingga konten
       terasa tidak bisa di-scroll (body tidak menerima bubble scroll).
       Biarkan body/window yang scroll. */
    overflow: visible;
    overflow-y: visible;
}

.bottom-nav {
    position: sticky;
    bottom: 0;
    display: flex;
    background: var(--navy-deep);
    padding: 10px 6px calc(10px + env(safe-area-inset-bottom, 8px));
    z-index: 100;
    flex-shrink: 0;
}
.nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 2px;
    font-size: 11px;
    font-weight: 500;
    color: #8FA3B5;
    text-decoration: none;
    transition: color .2s;
}
.nav-btn.active { color: #fff; }
.nav-btn .nav-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.nav-btn.active .nav-icon-wrap { background: var(--teal); }
.nav-btn .icon { width: 19px; height: 19px; }

.header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}
.back-btn {
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 4px;
    display: flex;
}
.header-titles h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}
.header-titles p {
    font-size: .8rem;
    color: var(--muted);
}

.home-header {
    padding: 24px 16px 16px;
}
.greeting h1 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}
.greeting p {
    color: var(--muted);
    font-size: .85rem;
}

.hero-card {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.hero-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(18,43,69,.7));
    color: white;
}
.hero-overlay p {
    font-family: var(--font-heading);
    font-size: .9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 12px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.action-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: box-shadow .2s, transform .15s;
    text-align: center;
}
.action-tile:active { transform: scale(.97); }
.action-tile:hover { box-shadow: var(--shadow); }
a.action-tile { text-decoration: none; color: inherit; }
.action-tile span {
    font-size: .75rem;
    font-weight: 500;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.see-more {
    color: var(--teal);
    font-size: .8rem;
    font-weight: 600;
}
.announcement-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
}
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--line);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-spinner p {
    color: var(--muted);
    font-size: .9rem;
}

.detail-hero-card {
    margin-bottom: 16px;
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    position: relative;
    margin-left: 16px;
    margin-right: 16px;
}
.detail-hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* ==========================================================================
   About Page - Luxury & Aesthetic Redesign
   ========================================================================== */
.about-page {
    padding-bottom: 24px;
}

.about-hero-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    background: var(--navy-deep);
}

.about-hero-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,29,48,0.1) 0%, rgba(11,29,48,0.75) 70%, rgba(11,29,48,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    color: var(--white);
}

.about-hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffd88a;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.88);
}

.about-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.about-intro-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(18,43,69,0.06);
    box-shadow: 0 4px 20px rgba(18,43,69,0.04);
    position: relative;
    overflow: hidden;
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal) 0%, #157e7a 100%);
}

.about-tagline-quote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.about-tagline-quote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 2rem;
    color: var(--teal);
    font-family: serif;
    opacity: 0.6;
}

.about-intro-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Sections Styling */
.about-section-wrapper {
    margin-bottom: 20px;
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.about-section-header .section-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(31, 163, 157, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-card-custom {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(18,43,69,0.06);
    box-shadow: 0 2px 12px rgba(18,43,69,0.03);
}

.about-story-text {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.7;
    white-space: pre-line;
}

/* Facilities Modern Aesthetic Grid */
.facilities-luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.facility-luxury-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    border: 1px solid rgba(18,43,69,0.06);
    box-shadow: 0 2px 8px rgba(18,43,69,0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.facility-luxury-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(18,43,69,0.08);
    border-color: rgba(31,163,157,0.3);
}

.facility-top-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(31,163,157,0.12) 0%, rgba(31,163,157,0.04) 100%);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card-img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.facility-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.facility-desc {
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

/* Operating Hours Aesthetic List */
.hours-luxury-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-luxury-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid rgba(18,43,69,0.06);
    box-shadow: 0 2px 8px rgba(18,43,69,0.02);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hour-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hour-badge-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hour-badge-time {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(31,163,157,0.09);
    padding: 4px 10px;
    border-radius: 14px;
    letter-spacing: 0.02em;
}

.hour-card-desc {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 2px;
}

/* Contact Aesthetic Cards */
.contacts-luxury-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-luxury-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(18,43,69,0.06);
    box-shadow: 0 2px 8px rgba(18,43,69,0.02);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.contact-luxury-card:hover {
    background: #fafbfc;
    transform: translateY(-1px);
    border-color: rgba(31,163,157,0.3);
}

.contact-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(18,43,69,0.05);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-luxury-card.whatsapp .contact-action-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.contact-luxury-card.phone .contact-action-icon {
    background: rgba(31, 163, 157, 0.12);
    color: var(--teal);
}

.contact-luxury-card.email .contact-action-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.contact-action-info {
    flex: 1;
    min-width: 0;
}

.contact-label-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
}

.contact-value-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.contact-arrow-icon {
    color: #94a3b8;
    flex-shrink: 0;
}

/* Gallery Staggered Grid */
.gallery-luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-luxury-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(18,43,69,0.06);
}

.gallery-luxury-card:nth-child(3n+1) {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-luxury-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-luxury-card:hover .gallery-luxury-img {
    transform: scale(1.04);
}

.gallery-luxury-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(11,29,48,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 12px;
    color: var(--white);
}

.gallery-luxury-caption {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.gallery-luxury-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Policies Accordion / Aesthetic Card */
.policies-luxury-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-luxury-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid rgba(18,43,69,0.06);
    border-left: 3px solid var(--teal);
    box-shadow: 0 2px 8px rgba(18,43,69,0.02);
}

.policy-luxury-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.policy-luxury-card p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.about-empty-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    border: 1px dashed var(--line);
}

.about-empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(31,163,157,0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.about-intro {
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--teal) 0%, #157e7a 100%);
    color: white;
    padding: 24px;
}
.about-intro h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}
.about-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: .85rem;
    margin-bottom: 8px;
}
.about-tagline {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    font-size: .95rem;
    margin-top: 12px;
}
.about-section {
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.about-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.about-section-content {
    white-space: pre-line;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
}

.announcement-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.announcement-detail-body {
    margin: 0 16px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.announcement-detail-card {
    margin: 0 16px 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.announcement-detail-card h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.announcement-detail-card .meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}
.announcement-detail-content {
    white-space: pre-line;
    color: #374151;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 16px;
}
.announcement-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.announcement-body {
    padding: 12px;
}
.announcement-body h4 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.announcement-body p {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.meta {
    font-size: .7rem;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    font-size: .9rem;
    padding: 14px 24px;
}
.btn:active { transform: scale(.97); }
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
.btn-primary { 
    background: var(--teal); 
    color: var(--white);
    box-shadow: 0 4px 12px rgba(31, 163, 157, 0.3);
}
.btn-primary:hover { 
    opacity: .9;
    box-shadow: 0 6px 16px rgba(31, 163, 157, 0.4);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--navy);
}
.btn-sm { padding: 6px 14px; font-size: .75rem; border-radius: 8px; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-full { width: 100%; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px;
    cursor: pointer;
    transition: box-shadow .2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card h4 { font-size: .85rem; font-weight: 600; }
.service-card p { font-size: .75rem; color: var(--muted); flex: 1; }

.concierge-card {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 8px;
}
.concierge-text h4 { font-size: .85rem; font-weight: 600; }
.concierge-text p { font-size: .75rem; color: var(--muted); }
.concierge-card > .icon { transform: rotate(180deg); color: var(--muted); margin-left: auto; }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18,43,69,.5);
    z-index: 1000;
    align-items: flex-end;
    justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-content {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 480px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px 16px;
    position: relative;
    animation: slideUp .3s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
}

.service-detail { padding-bottom: 16px; }
.detail-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.detail-image img { width: 100%; height: 200px; object-fit: cover; }
.detail-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.detail-body .instruction {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}
.detail-body .btn { margin-bottom: 8px; }

.dining-list { display: flex; flex-direction: column; gap: 16px; }
.dining-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.dining-image { position: relative; }
.dining-image img { width: 100%; height: 160px; object-fit: cover; }
.promo-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #e11d48;
    color: white;
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}
.dining-body { padding: 14px; }
.dining-meta {
    display: flex;
    gap: 12px;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.dining-meta span { display: flex; align-items: center; gap: 4px; }
.dining-body h4 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.dining-body p { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }

.explore-hero { margin-bottom: 16px; }
.explore-hero-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.explore-hero-card img { width: 100%; height: 200px; object-fit: cover; }
.explore-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(18,43,69,.7));
    color: white;
}
.explore-hero-overlay h3 { font-family: var(--font-heading); font-size: 1.1rem; }
.explore-hero-overlay p { font-size: .8rem; opacity: .9; }

.tab-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    background: var(--cream);
    color: var(--navy);
    transition: background .2s, color .2s;
}
.tab.active { background: var(--teal); color: var(--white); }

.hscroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.hscroll::-webkit-scrollbar { display: none; }
.explore-card {
    min-width: 200px;
    max-width: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.explore-card img { width: 100%; height: 120px; object-fit: cover; }
.explore-card-body { padding: 10px; }
.explore-card-body h4 { font-size: .8rem; font-weight: 600; }

.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 16px;
}
.info-banner .icon { flex-shrink: 0; color: var(--teal); }
.info-banner p { font-size: .8rem; color: var(--muted); }

.contact-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
}
.contact-info { flex: 1; }
.contact-info h4 { font-size: .85rem; font-weight: 600; }
.contact-info p { font-size: .72rem; color: var(--muted); }
.contact-actions { display: flex; gap: 8px; }
.action-btn {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: opacity .2s;
}
.action-btn:hover { opacity: .85; }
.action-btn.call { background: var(--teal); }
.action-btn.msg { background: #25d366; }
.emergency-title { color: #e11d48; }
.emergency-row { border-color: #fecdd3; }
.action-btn.emergency-call { background: #e11d48; }

.rating-summary {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.rating-summary-left {
    flex-shrink: 0;
    text-align: center;
}
.rating-big {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}
.star-row { display: flex; align-items: center; gap: 2px; justify-content: center; }
.summary-stars { margin: 4px 0 6px; }
.star-row .star { color: #d1d5db; }
.star-row .star.filled { color: #f59e0b; }
.rating-count { font-size: .8rem; color: var(--muted); }
.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.breakdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
}
.breakdown-label {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 30px;
    font-weight: 500;
    color: var(--navy);
}
.breakdown-label .icon {
    color: #f59e0b;
}
.breakdown-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.breakdown-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.breakdown-count {
    min-width: 24px;
    text-align: right;
    font-weight: 500;
    color: var(--muted);
}

.feedback-form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}
.feedback-form-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
}
.star-input {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 4px;
}
.star-btn {
    cursor: pointer;
    color: #d1d5db;
    transition: color .15s, transform .15s;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn.active { color: #f59e0b; fill: #f59e0b; }
.rating-caption {
    text-align: center;
    font-size: .75rem;
    color: var(--muted);
    height: 20px;
    margin-bottom: 12px;
}

.reviews-list { display: flex; flex-direction: column; gap: 12px; }
.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-avatar { flex-shrink: 0; }
.review-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.avatar-initials {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.avatar-initials.small { width: 36px; height: 36px; font-size: .85rem; }
.review-meta { flex: 1; }
.review-meta strong { font-size: .82rem; display: block; }
.review-meta span { font-size: .7rem; color: var(--muted); }
.review-stars { justify-content: flex-end; }
.review-text { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.admin-reply {
    margin-top: 10px;
    background: var(--cream);
    border-radius: 8px;
    padding: 10px;
    font-size: .8rem;
}
.admin-reply strong { font-size: .72rem; color: var(--teal); display: block; margin-bottom: 4px; }
.admin-reply p { color: var(--muted); }

.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 500;
    opacity: 0;
    transition: transform .3s, opacity .3s;
    z-index: 2000;
    max-width: 400px;
    text-align: center;
    pointer-events: none;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}
.auth-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(18,43,69,.12);
}
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 16px;
    object-fit: contain;
    box-shadow: 0 4px 16px rgba(18,43,69,.1);
}
.auth-header h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.auth-header p {
    color: var(--muted);
    font-size: .9rem;
}
.auth-link {
    text-align: center;
    font-size: .85rem;
    color: var(--muted);
    margin-top: 24px;
}
.auth-link a {
    color: var(--teal);
    font-weight: 600;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--navy);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 163, 157, 0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.char-count {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: .65rem;
    color: var(--muted);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--teal);
}

.validation-summary {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: .8rem;
    color: #b91c1c;
    display: none;
}
.validation-summary:not(.validation-summary-valid) {
    display: block;
}
.validation-summary ul { list-style: none; }

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(18,43,69,.08);
}
.country-item {
    padding: 10px 14px;
    font-size: .85rem;
    cursor: pointer;
    transition: background .15s;
}
.country-item:hover {
    background: var(--cream);
}
.country-item:last-child {
    border-radius: 0 0 10px 10px;
}
.form-group {
    position: relative;
}

.profile-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.profile-avatar {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.profile-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-edit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--line);
}

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

.avatar-upload-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.avatar-upload-btn:hover {
    background: #F0E9DA;
}

.edit-profile-modal {
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

.profile-edit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}
.profile-info { text-align: left; }
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--muted); }
.info-value { font-weight: 500; }

.profile-actions { margin-bottom: 16px; }
.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--navy);
}
.profile-link .icon:last-child {
    margin-left: auto;
    transform: rotate(180deg);
    color: var(--muted);
}

.logout-btn {
    color: #e11d48;
    border-color: #fecdd3;
    margin-top: 8px;
}

.icon { flex-shrink: 0; }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

.feedback-page { padding-bottom: 4px; }
.feedback-page .card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feedback-page .rating-summary { display: flex; align-items: center; justify-content: center; text-align: left; }
.feedback-page .feedback-form-card { margin-bottom: 24px; }
.feedback-page .reviews-list { gap: 0; padding: 4px 16px; }
.review-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.review-item:last-child { border-bottom: none; }
.review-body { flex: 1; min-width: 0; }
.review-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.review-name { font-size: .84rem; font-weight: 600; color: var(--navy); }
.review-date { font-size: .68rem; color: var(--muted); white-space: nowrap; }
.review-stars { justify-content: flex-start; margin: 3px 0 6px; }
.review-stars .star { width: 13px; height: 13px; }
.review-item .review-text { margin: 0; color: var(--navy); }
.reviews-empty { text-align: center; padding: 30px 20px; }
.reviews-empty-icon { width: 48px; height: 48px; margin: 0 auto 10px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gold-soft, #F6EDDB); color: var(--gold, #C6A15B); }
.reviews-empty h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; }
.reviews-empty p { font-size: .78rem; line-height: 1.5; color: var(--muted); }

.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.page-loading-overlay.show {
    display: flex;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}
.pagination-btn {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    font-size: .85rem;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}
.pagination-btn.active {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}
.pagination-btn:hover:not(.active) {
    background: var(--cream);
}

@media (max-width: 380px) {
    .nav-btn { font-size: 9px; }
    .nav-btn .nav-icon-wrap { width: 30px; height: 30px; }
    .rating-summary {
        flex-direction: column;
        gap: 16px;
    }
    .rating-breakdown {
        width: 100%;
    }
}

/* ==========================================================================
   Pull To Refresh dinonaktifkan (tanpa memblokir scroll normal).
   overscroll-behavior hanya mematikan efek overscroll/PTR bawaan browser,
   bukan scroll biasa — jadi aman.
   ========================================================================== */
html,
body {
    overscroll-behavior-y: none;
}
.screen {
    overscroll-behavior-y: none;
}
