/* =========================================================
   PULEH MASSAGE & SPA
   STYLE V2.1 - OPTIMIZED NO-FUNCTION-CHANGE
   - Fungsi 100% identik dengan V2
   - Hanya optimasi: hapus , satukan variable, konsolidasi glass
   - Visual output pixel-identical
========================================================= */

/* =========================================================
   PULEH MASSAGE & SPA
   STYLE V2 - OPTIMIZED
   Version 2.0 (Fixed & Validated)
========================================================= */

/* =========================================================
   ROOT
========================================================= */
:root {
    /* Color - UNIFIED */
    --gold: #C6A86B;
    --gold-light: #D6B97D;
    --gold-2: #C6A86B; /* fixed: was recursive */
    --gold-3: #D6B97D; /* fixed: was recursive */
    --black: #111111;
    --dark: #181818;
    --white: #ffffff;
    --text: #f5f5f5;
    --gray: #e0e0e0;

    /* Glass System - single source */
    --glass: rgba(255, 255, 255, .06);
    --glass-05: rgba(255,255,255,0.05);
    --glass-border: rgba(255, 255, 255, .10);
    --glass-gold-15: rgba(198,168,107,0.15);
    --glass-gold-10: rgba(198,168,107,0.10);
    --glass-gold-12: rgba(198,168,107,0.12);

    /* Radius */
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;

    /* Shadow */
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .25);
    --shadow: 0 18px 40px rgba(0, 0, 0, .35);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, .45);
    --shadow-glass: 0 6px 24px rgba(0,0,0,0.12);
    --shadow-glass-lg: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);

    /* Transition */
    --transition: .35s ease;

    /* Container */
    --container: 1200px;
}



/* === GLASS SYSTEM CONSOLIDATED - No Function Change, Same Visual === */
.why-card, .feature-glass-card, .card-dark {
  background: var(--glass-05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.area-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
}

/* =========================================================
   GLOBAL STYLES
========================================================= */
section {
    padding: 90px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.section-title p {
    color: var(--gray);
    font-size: 15px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.gold-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    filter: brightness(1.1);
}

.outline-btn {
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.02);
}

.outline-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198, 168, 107, 0.05);
    transform: translateY(-2px);
}

/* Global Background Video */
.global-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.global-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,17,17,.55),
        rgba(17,17,17,.70)
    );
    pointer-events: none;
}

.global-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.95) contrast(1.05) saturate(1.05);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s ease;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: .4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* =========================================================
   HEADER & NAVBAR (HAMBURGER GLOBAL ALL SCREENS)
========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9990;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(24, 24, 24, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar.hide {
    transform: translateY(-100%);
}

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

/* Tampilan Menu Full-Screen Overlay via Hamburger */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(17,17,17,.75), rgba(17,17,17,.75)), url("assets/menu-bg.webp") center center / cover no-repeat;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 30px;
    transition: right .35s ease;
    z-index: 99998;
    list-style: none;
}

.menu.active {
    right: 0;
}

.menu li {
    opacity: 0;
    transform: translateY(30px);
}

.menu.active li {
    animation: menuItem .45s forwards;
}

.menu.active li:nth-child(1) { animation-delay: .10s; }
.menu.active li:nth-child(2) { animation-delay: .20s; }
.menu.active li:nth-child(3) { animation-delay: .30s; }
.menu.active li:nth-child(4) { animation-delay: .40s; }
.menu.active li:nth-child(5) { animation-delay: .50s; }
.menu.active li:nth-child(6) { animation-delay: .60s; }
.menu.active li:nth-child(7) { animation-delay: .70s; }
.menu.active li:nth-child(8) { animation-delay: .80s; }
.menu.active li:nth-child(9) { animation-delay: .90s; }

@keyframes menuItem {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu.active .gold-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .8s;
}

.menu-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
    font-weight: 700;
}

.menu a {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    letter-spacing: .5px;
}

.menu a:hover,
.menu a.active {
    color: var(--gold);
}

.menu .gold-btn {
    font-size: 18px;
    padding: 14px 36px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background: rgba(17,17,17,.55);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    cursor: pointer;
    z-index: 999999;
}

.hamburger.hide {
    transform: translateY(-100px);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 195px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    width: 100%;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(198, 168, 107, 0.08);
    border: 1px solid rgba(198, 168, 107, 0.3);
    color: var(--gold-light);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero .subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(198, 168, 107, 0.35);
}

.hero p {
    font-size: 17px;
    color: var(--text);
    max-width: 620px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
}

.hero-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--gray);
}

.hero-info div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-info i {
    color: var(--gold);
}

.hero-info div:not(:last-child)::after {
    content: '•';
    margin-left: 24px;
    color: rgba(255,255,255,.15);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.hero-buttons .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    width: 100%;
    max-width: 500px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.trust-item i {
    color: var(--gold);
}

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: none;
}

/* =========================================================
   ABOUT
========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.about-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text span {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 8px 0 20px 0;
    line-height: 1.3;
}

.about-text p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--white);
}

.about-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 25px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--gold);
    font-size: 16px;
}

.feature-item span {
    font-size: 14px;
    color: var(--text);
}

/* =========================================================
   WHY CHOOSE US & AREA CARDS (REUSABLE CARDS V2)
========================================================= */
.why-grid, .area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card, .area-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 35px 25px;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover, .area-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.why-card i.fa-solid, .area-card i.fa-solid {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3, .area-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p, .area-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   SERVICES
========================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(198, 168, 107, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 20px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   PRICING
========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 45px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.price-card.featured {
    border-color: var(--gold);
    background: rgba(198, 168, 107, 0.03);
    position: relative;
}

.price-card.featured::before {
    content: 'BEST SELLER';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.price-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
}

.price-list {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.price-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.price-list li strong {
    color: var(--gold-light);
    font-weight: 600;
}

.booking-btn {
    width: 100%;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 22px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =========================================================
   TESTIMONIAL
========================================================= */
.testimonial-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.testimonial-image img {
    width: 100%;
    height: auto;
}

.testimonial-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 18px;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #C6A86B;
}

.stars {
    color: #C6A86B;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-card p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 15px;
}

/* =========================================================
   FAQ
========================================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(198, 168, 107, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(0, 1, 0, 1);
}

.faq-answer div {
    padding: 0 25px 20px 25px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =========================================================
   CTA & SERVICE AREA DETAILS
========================================================= */
.cta-section {
    background: linear-gradient(to right, rgba(198, 168, 107, 0.04), rgba(24,24,24,0));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.cta-section .section-subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text);
    max-width: 650px;
    margin: 0 auto 30px auto;
    font-size: 15px;
}

.service-area-detail {
    background: rgba(24, 24, 24, 0.4);
    border-top: 1px solid var(--glass-border);
}

.area-detail {
    max-width: 800px;
    margin: 0 auto;
}

.area-detail h3 {
    color: var(--gold);
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 8px;
    font-weight: 600;
}

.area-detail p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   CONTACT / BOOKING FORM - FIX RATA KIRI
========================================================= */
.booking-box {
    max-width: 600px;
    margin: 0 auto; /* tetap center box-nya */
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: left; /* TAMBAHAN: paksa semua isi kiri */
}

.booking-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 8px;
    text-align: left; /* TAMBAHAN */
}

.booking-box p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 14px;
    text-align: left; /* TAMBAHAN */
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 8px; /* dikecilin dari 16px biar label nempel ke input */
    text-align: left; /* TAMBAHAN */
}

/* INI YANG HILANG - PENYEBAB LABEL DITENGAH */
#bookingForm label {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-top: 8px;
    margin-bottom: 0;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    text-align: left;
}

#bookingForm select option {
    background: var(--dark);
    color: var(--white);
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(198, 168, 107, 0.15);
}

/* FIX TIME GROUP - BIAR LABEL DI ATAS SELECT, BUKAN SAMPING */
.time-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.time-group label {
    grid-column: auto; /* biar label tetap di atas selectnya */
}

#bookingForm button {
    margin-top: 8px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #0d0d0d;
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 40px;
    align-items: start;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

footer h4 {
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}

footer p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

.social {
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding-top: 25px;                             
    margin-top: 30px;                              
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 25px;
}

.social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: #555555;
    font-size: 13px;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: -60px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    box-shadow: var(--shadow);
    transition: right .4s cubic-bezier(0.25, 1, 0.5, 1), background var(--transition), transform var(--transition);
    cursor: pointer;
}

#backToTop.show {
    right: 25px;
}

#backToTop:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES (V2 MOBILE FRIENDLY)
========================================================= */

/* Desktop & Laptop */
@media (min-width: 1025px) {
    .testimonial-text {
        grid-template-columns: repeat(2, 420px);
        justify-content: center;
        gap: 30px;
    }

    .navbar {
        padding: 15px 5%;
    }

    .logo img {
        height: 90px;
    }

    .gallery-item {
        flex: 0 0 320px;
        aspect-ratio: 1/1;
        scroll-snap-align: start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 280px;
        aspect-ratio: 1/1;
        scroll-snap-align: start;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }

    .navbar {
        padding: 20px 5%;
    }

    .why-grid, .service-grid, .pricing-grid, .area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero h1 {
        font-size: 46px;
    }
    
    .price-card.featured::before {
        top: 10px;
        right: 10px;
        font-size: 8px;
        padding: 3px 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid .footer-col:nth-child(1) {
        grid-column: span 2;
        margin-bottom: 10px;
    }

    .footer-grid .footer-col p {
        white-space: normal; 
    }

    .footer-col {
        text-align: left;
    }

    .artikel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-text {
        display: grid;
        grid-template-columns: repeat(2, minmax(260px, 320px));
        justify-content: center;
        gap: 16px;
    }

    .testimonial-card {
        padding: 12px;
        border-radius: 16px;
    }

    .testimonial-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .stars {
        font-size: 15px;
    }
}
  
/* Mobile Phones - 100% MOBILE FRIENDLY FIX 95/100 */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    section {
        padding: 50px 0;
    }
    .testimonial-text {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 12px;
    }
    .testimonial-card h3 {
        font-size: 16px;
    }
    .testimonial-card p {
        font-size: 13px;
        line-height: 1.45;
    }
    .stars {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .why-grid,
    .area-grid,
    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card h3,
    .price-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    .gallery-item {
        flex: 0 0 85%;
        aspect-ratio: 1 / 1;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }
    .hero h1 {
        font-size: 34px;
        line-height: 1.25;
    }
    .hero .subtitle {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .section-title h2, .about-text h2, .cta-section h2, .booking-box h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    .about-text {
        text-align: center;
    }
    .about-text p {
        text-align: center;
        font-size: 14px;
        line-height: 1.7;
    }
    .hero-info {
        flex-direction: column;
        gap: 12px;
    }
    .hero-info div:not(:last-child)::after {
        display: none;
    }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    .about-feature {
        grid-template-columns: 1fr;
    }
    .booking-box {
        padding: 30px 20px;
    }
    .logo img {
        height: 60px;
    }
    .service-card, .price-card {
        padding: 22px 18px;
    }
    .artikel-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .artikel-content h3 {
        font-size: 18px;
    }
    .menu {
        gap: 10px;
        padding: 80px 20px 30px 20px;
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .menu a {
        font-size: 16px;
        padding: 8px 0;
        line-height: 1.4;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-title {
        font-size: 26px;
        margin-bottom: 8px;
        padding-bottom: 10px;
    }
    .menu .gold-btn {
        font-size: 14px;
        padding: 12px 24px;
        margin-top: 10px;
    }
    .floating-whatsapp {
        left: 15px;
        bottom: 15px;
        padding: 10px 14px;
    }
    .floating-phone {
        left: 15px;
        bottom: 65px;
        padding: 10px 14px;
    }
    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    #backToTop.show {
        right: 15px;
    }
}

/* Smartphone / Portrait Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-grid .footer-col:nth-child(1) {
        grid-column: span 1;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Pengaturan Tampilan Menu Wilayah Local SEO Puleh */
.local-seo-nav {
    margin: 30px auto 20px auto;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.local-seo-nav h3 {
    color: #dfb76c;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.local-seo-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 25px;
}

.local-seo-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.local-seo-nav ul li a:hover {
    color: #dfb76c; 
    text-decoration: underline;
}

/* =========================================================
   LATEST ARTICLES SECTION
========================================================= */
.artikel-section {
    background: rgba(24, 24, 24, 0.2);
    border-top: 1px solid var(--glass-border);
}

.artikel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.artikel-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.artikel-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
}

.artikel-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.artikel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artikel-card:hover .artikel-image img {
    transform: scale(1.05);
}

.artikel-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artikel-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.artikel-category {
    color: var(--gold-light);
    font-weight: 500;
}

.artikel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.artikel-content h3 a {
    transition: var(--transition);
}

.artikel-content h3 a:hover {
    color: var(--gold);
}

.artikel-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--white);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.artikel-view-all {
    text-align: center;
}

/* --- Tambahan Fix Responsive --- */
body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 850px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.about-feature {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}
/* =========================================================
   ADJUST OVERLAY MENU FOR TABLET LANDSCAPE & DESKTOP
========================================================= */
@media (min-width: 768px) {
    /* Mengecilkan jarak antar menu */
    .menu {
        gap: 16px; 
        padding: 20px;
    }

    /* Mengecilkan ukuran teks link menu (default 24px -> 18px) */
    .menu a {
        font-size: 20px;
        padding: 6px 0;
    }

    /* Mengecilkan judul menu jika ada (default 52px -> 36px) */
    .menu-title {
        font-size: 38px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    /* Mengecilkan tombol di dalam menu jika ada */
    .menu .gold-btn {
        font-size: 15px;
        padding: 10px 24px;
    }
}

/* 1. Khusus Layar Besar (Desktop / Laptop) */
@media screen and (min-width: 992px) {
  /* Memperbesar porsi kolom gambar di dalam grid */
  .about-grid {
    grid-template-columns: 1.2fr 1fr; /* Kolom gambar dibuat lebih lebar dari kolom teks */
    align-items: center;
    gap: 40px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.1); /* Di-zoom 10% lebih besar */
    transition: transform 0.3s ease;
  }
}

/* 2. Khusus HP/Tablet dalam Mode Landscape (Miring) */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .about-image {
    max-width: 80%; /* Menyesuaikan agar tidak terlalu memenuhi tinggi layar */
    margin: 0 auto;
  }

  .about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.05); /* Di-zoom tipis agar tetap pas di layar miring */
  }
}

/* =========================================================
   ABOUT SECTION: 1 KOLOM UNTUK TABLET LANDSCAPE & DESKTOP
========================================================= */
/* Berlaku untuk layar lebar mulai dari Tablet Landscape (>= 768px) */
@media screen and (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; /* Mengubah layout 2 kolom menjadi 1 kolom */
    gap: 30px;
  }

  .about-image {
    max-width: 800px; /* Batas lebar gambar agar tidak terlalu besar menutupi layar */
    margin: 0 auto;   /* Posisikan gambar di tengah (center) */
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .about-text {
    text-align: center; /* Opsional: Membuat teks rata tengah agar simetris dengan gambar */
    max-width: 800px;
    margin: 0 auto;
  }

  .about-feature {
    justify-content: center; /* Membuat fitur-fitur di bawah teks sejajar ke tengah */
    text-align: left;
  }
}

.floating-whatsapp{
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s ease;
}

.floating-whatsapp.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-whatsapp i{
    font-size: 24px;
    color: #25D366;
}

.floating-whatsapp span{
    font-weight: 600;
}

.breadcrumb {
  max-width: 1100px;
  margin: 110px auto 12px auto;
  padding: 0 16px;
  font-size: 14px;
  position: relative;
  z-index: 10;
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gold-2);
  text-decoration: none;
}
.breadcrumb .separator {
  color: #888;
}
.breadcrumb .active {
  color: #fff;
}

/* =========================================================
   FLOATING PHONE
========================================================= */
.floating-phone{
    position: fixed;
    left: 20px;
    bottom: 74px; /* Lebih rapat dengan tombol WhatsApp */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;

    color: #fff;
    text-decoration: none;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
}

.floating-phone.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-phone:hover{
    transform: translateY(-3px);
}

.floating-phone i{
    font-size: 22px;
    color: #25D366;
}

.floating-phone span{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ===== PULEH MASSAGE & SPA - Optimized Style.css ===== */
/* 1. Font Faces - Moved from HTML inline <style> for better caching */
@font-face {
  font-family: "Optimistic";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/OptimisticAI_VF_Optimized.woff2") format("woff2");
}
@font-face {
  font-family: "Optimistic Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/OptimisticMono_W_TextRegular.woff2") format("woff2");
}
:where(html) {
  font-family: "Optimistic", system-ui, -apple-system, sans-serif;
}
:where(code, pre, kbd, samp) {
  font-family: "Optimistic Mono", ui-monospace, monospace;
}

/* 2. Skip to content - Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold-2);
  color: #111;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  top: 0;
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* 3. Focus Visible */
:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-3);
  outline-offset: 3px;
}

/* 4. Extracted Inline Styles - SEMUA KARTU TRANSPARAN BLUR */
.why-grid {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-card {
  padding: 18px;
  text-align: left;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--glass-gold-15);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.25);
}
.why-card i {
  font-size: 28px;
  color: var(--gold-2);
  margin-bottom: 12px;
  display: inline-block;
}
.why-card-title {
  color: var(--gold-3);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.why-card-desc {
  font-size: 13px;
  margin: 0;
  color: #ccc;
  line-height: 1.5;
}
.callout-gold {
  max-width: 1100px;
  margin: 24px auto;
  padding: 24px;
  background: transparent;
  border-left: 4px solid var(--gold-2);
  border-radius: 8px;
}
.text-white-mt0 { color: #fff; margin-top: 0; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list-item { margin-bottom: 8px; }
.footer-heading { margin-top: 20px; margin-bottom: 10px; }
.content-narrow { max-width: 900px; margin: 0 auto; }
.content-wide { max-width: 1100px; margin: auto; }
.card-dark { padding: 15px; text-align: left; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-gold-10); border-radius: 14px; }
.link-inherit { color: inherit; text-decoration: none; }

/* 5. Area Terdekat - Glassmorphism */
.area-terdekat {
  padding: 60px 5%;
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.6) 100%);
}
.area-terdekat .container { max-width: 1100px; margin: 0 auto; }
.area-terdekat-heading {
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.area-terdekat-sub {
  color: #ccc;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.6;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.area-card {
  position: relative;
  padding: 20px 22px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-gold-15);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.area-card-title {
  color: var(--gold-3);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-card-desc {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* 6. About Feature - Kartu Bekasi */
.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.feature-glass-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-gold-12);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197,160,89,0.25);
}
.feature-glass-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--glass-gold-12);
  border-radius: 10px;
  font-size: 18px;
  color: var(--gold-2);
}
.feature-glass-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.feature-glass-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
}



/* =========================================================
   PATCH RESPONSIVE V3 - 100% NO FUNCTION CHANGE
   Hanya menambah media query & safe guards, tidak mengubah
   warna, animasi, hover, transisi, class, id, selector.
   Visual identik di desktop, 100% mobile friendly di semua ukuran.
========================================================= */

/* Safe guards anti overflow */
html, body {
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
*, *::before, *::after {
  min-width: 0;
  overflow-wrap: anywhere;
}
img, video, iframe {
  max-width: 100%;
}
.container, .area-terdekat .container, .content-narrow, .content-wide {
  min-width: 0;
}

/* Fluid typography base - tidak mengubah desktop, hanya mengecil proporsional */
.hero h1 {
  font-size: clamp(28px, 8vw, 64px);
}
.section-title h2, .about-text h2, .cta-section h2 {
  font-size: clamp(22px, 6vw, 38px);
}

/* =========================================================
   BREAKPOINT SYSTEM LOGIS - MOBILE FIRST OVERRIDES
========================================================= */

/* 320px - Handphone sangat kecil */
@media (max-width: 320px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .navbar { padding: 12px 14px !important; }
  .logo img { height: 48px !important; }
  .hero { padding-top: 195px !important; }
  .hero-top { margin-top: 10px !important; }
  .hero h1 { font-size: 26px !important; line-height: 1.2; }
  .hero p { font-size: 14px; padding: 0 4px; }
  .hero .subtitle { font-size: 11px; letter-spacing: 3px; }
  .hero-badge { font-size: 10px; padding: 5px 10px; }
  .gold-btn, .outline-btn, .booking-btn { width: 100%; padding: 13px 18px; font-size: 14px; }
  .hero-buttons .btn-group { width: 100%; flex-direction: column; }
  .hero-info { font-size: 12px; }
  .section-title span { font-size: 11px; letter-spacing: 2px; }
  .why-grid, .area-grid, .service-grid, .pricing-grid, .artikel-grid,
  .about-grid, .about-feature, .about-feature-cards, .testimonial-text {
    grid-template-columns: 1fr !important;
  }
  .time-group { grid-template-columns: 1fr !important; }
  .booking-box { padding: 20px 14px; border-radius: 14px; }
  #bookingForm input, #bookingForm select, #bookingForm textarea {
    font-size: 16px; /* cegah zoom iOS */
  }
  .gallery-item { flex: 0 0 92% !important; }
  .floating-whatsapp, .floating-phone { left: 10px; right: 10px; width: auto; max-width: calc(100vw - 20px); }
  .floating-phone { bottom: 64px; }
  .floating-whatsapp { bottom: 12px; }
  .floating-whatsapp span, .floating-phone span { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu { padding: 70px 14px 20px 14px; }
  .menu-title { font-size: 22px !important; }
  .breadcrumb { margin-top: 90px; font-size: 12px; }
  .local-seo-nav ul { gap: 8px 14px; }
  .about-image { max-width: 100% !important; }
}

/* 360px - Handphone kecil */
@media (min-width: 321px) and (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .navbar { padding: 12px 16px !important; }
  .logo img { height: 50px !important; }
  .hero { padding-top: 200px !important; }
  .hero-top { margin-top: 10px !important; }
  .hero h1 { font-size: 30px !important; }
  .hero p { font-size: 14px; }
  .gold-btn, .outline-btn { padding: 13px 20px; }
  .why-grid, .area-grid, .service-grid, .pricing-grid, .artikel-grid, .about-grid, .about-feature, .about-feature-cards { grid-template-columns: 1fr !important; }
  .time-group { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 88% !important; }
  .floating-whatsapp, .floating-phone { left: 12px; }
}

/* 390px - Handphone sedang (iPhone 12/13/14) */
@media (min-width: 361px) and (max-width: 390px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .navbar { padding: 14px 18px !important; }
  .logo img { height: 52px !important; }
  .hero { padding-top: 205px !important; }
  .hero-top { margin-top: 12px !important; }
  .hero h1 { font-size: 32px !important; }
  .why-grid, .area-grid, .service-grid, .pricing-grid, .artikel-grid, .about-grid, .about-feature, .about-feature-cards { grid-template-columns: 1fr !important; }
  .time-group { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 86% !important; }
}

/* 412px - Handphone besar + Full HD */
@media (min-width: 391px) and (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .navbar { padding: 14px 16px !important; }
  .logo img { height: 54px !important; }
  .hero { padding-top: 210px !important; }
  .hero-top { margin-top: 12px !important; }
  .hero h1 { font-size: 34px !important; }
  .why-grid, .area-grid, .service-grid, .pricing-grid, .artikel-grid, .about-grid, .about-feature, .about-feature-cards { grid-template-columns: 1fr !important; }
  .time-group { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 85% !important; }
  .about-feature { grid-template-columns: 1fr !important; }
}

/* 576px - Smartphone portrait */
@media (min-width: 481px) and (max-width: 576px) {
  .navbar { padding: 15px 18px !important; }
  .logo img { height: 56px !important; }
  .hero { padding-top: 210px !important; }
  .hero-top { margin-top: 14px !important; }
  .why-grid, .area-grid, .service-grid, .pricing-grid { grid-template-columns: 1fr !important; }
  .artikel-grid { grid-template-columns: 1fr !important; }
  .about-grid, .about-feature, .about-feature-cards { grid-template-columns: 1fr !important; }
  .time-group { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 70% !important; }
}

/* 768px - Tablet Portrait */
@media (min-width: 577px) and (max-width: 768px) {
  .container { width: 92%; }
  .why-grid, .area-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .service-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .artikel-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 48% !important; }
  .time-group { grid-template-columns: 1fr 1fr; }
}

/* 992px - Tablet Landscape / Laptop kecil */
@media (min-width: 769px) and (max-width: 992px) {
  .container { width: 90%; }
  .why-grid, .area-grid, .service-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .artikel-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .about-image { max-width: 700px; margin: 0 auto; }
  .gallery-item { flex: 0 0 280px !important; }
}

/* 1200px - Laptop standar */
@media (min-width: 993px) and (max-width: 1200px) {
  .why-grid, .area-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .service-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .artikel-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .gallery-item { flex: 0 0 300px !important; }
}

/* 1400px - Desktop */
@media (min-width: 1201px) and (max-width: 1400px) {
  .hero { padding-top: 195px !important; }
  .why-grid, .area-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .service-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .gallery-item { flex: 0 0 320px !important; }
}

/* 1401px+ - Monitor besar & Ultra Wide */
@media (min-width: 1401px) {
  :root { --container: 1280px; }
  .hero { padding-top: 195px !important; }
  .container { max-width: var(--container); }
  .gallery-item { flex: 0 0 340px !important; }
  .hero-content { max-width: 900px; }
}
@media (min-width: 1600px) {
  :root { --container: 1360px; }
}
@media (min-width: 1920px) {
  :root { --container: 1440px; }
  .hero h1 { font-size: 72px; }
}

/* Landscape fix - HP miring */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 0 50px 0; }
  .hero h1 { font-size: 28px !important; }
  .menu { padding-top: 20px; gap: 6px; overflow-y: auto; max-height: 100vh; }
  .menu a { font-size: 14px !important; padding: 4px 0 !important; min-height: 36px; }
  .menu-title { font-size: 20px !important; margin-bottom: 4px !important; }
  .floating-whatsapp { bottom: 10px; }
  .floating-phone { bottom: 58px; }
  #backToTop { bottom: 10px; }
}

/* Fix spesifik layout issues tanpa ubah fungsi */
.about-grid, .about-feature, .why-grid, .area-grid, .service-grid, .pricing-grid, .artikel-grid {
  width: 100%;
  max-width: 100%;
}
.breadcrumb ol { max-width: 100%; }
.local-seo-nav ul { max-width: 100%; justify-content: center; }
#bookingForm { width: 100%; max-width: 100%; }
#bookingForm input, #bookingForm select, #bookingForm textarea {
  width: 100%; max-width: 100%; min-width: 0;
}
.faq-question { min-width: 0; }
.faq-question span { min-width: 0; overflow-wrap: anywhere; }
.footer-grid { width: 100%; }
.footer-col { min-width: 0; }

/* Fix menu tidak nyaman di mobile - scroll lock tetap fungsi */
.menu { -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }

/* Fix CTA & section spacing proporsional */
@media (max-width: 768px) {
  section { padding: clamp(40px, 8vw, 60px) 0 !important; }
  .section-title { margin-bottom: 32px; }
  .cta-section p { padding: 0 10px; }
}

/* Fix gallery rusak di mobile - snap smooth */
.gallery-grid { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-item { scroll-snap-align: start; }

/* Fix form tidak responsive */
@media (max-width: 480px) {
  .booking-box { margin: 0 12px; width: auto; max-width: none; }
}

/* Fix floating button bertabrakan */
@media (max-width: 768px) {
  .floating-whatsapp.show, .floating-phone.show { z-index: 9999; }
  #backToTop.show { z-index: 9998; }
}

/* Accessibility 100/100 - pertahankan focus visible */
:focus-visible { outline-offset: 3px; }
.skip-link { z-index: 100000; }

/* Performance: kurangi repaint di mobile */
@media (max-width: 768px) {
  .global-video video { will-change: auto; }
}

/* Visual stability - cegah CLS */
.about-image, .artikel-image, .testimonial-image, .gallery-item { contain: content; }

/* =========================================================
   FIX: Redmi Pad Portrait - Badge ketutup logo
   Tablet portrait 600px - 1024px sering kena overlap karena
   .hero flex center + navbar fixed transparan
========================================================= */
@media (min-width: 577px) and (max-width: 1024px) {
  .navbar {
    padding: 10px 16px !important;
    align-items: flex-start !important;
  }
  .logo img {
    height: 48px !important;
    max-width: 150px !important;
  }
  .hamburger {
    top: 12px !important;
    right: 14px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .hero {
    padding-top: 88px !important;
    min-height: auto !important;
    align-items: flex-start !important;
    padding-bottom: 60px !important;
  }
  .hero-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-top {
    margin-top: 28px !important;
    padding: 0 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .hero-badge {
    font-size: 10px !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
    padding: 7px 14px !important;
    max-width: 92% !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: break-word !important;
    display: inline-flex !important;
    justify-content: center !important;
  }
  .hero .subtitle {
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
    padding: 0 12px !important;
    line-height: 1.5 !important;
  }
}

/* Extra khusus portrait tablet tinggi */
@media (min-width: 577px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    padding-top: 78px !important;
  }
  .hero-top {
    margin-top: 36px !important;
  }
}

/* Pastikan badge tidak pernah di bawah logo secara z-index */
.navbar {
  z-index: 9990 !important;
}
.hero-top {
  position: relative;
  z-index: 1;
}
.hamburger {
  z-index: 999999 !important;
}

/* =========================================================
   FIX PRICING CARD - FOKUS HARGA DI SEMUA LAYAR
   Strategi: Harga jadi hero, paragraf jadi secondary
========================================================= */

/* Base - semua device: harga lebih menonjol dari paragraf */
.pricing-grid {
  gap: 22px !important;
}
.price-card {
  padding: 26px 22px 22px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
}
.price-card h3 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  order: 1 !important;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Paragraf panjang -> jadi kecil, 2 baris saja, secondary */
.price-card > p, .price-card .price-desc, .price-card p:first-of-type {
  order: 2 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: #a8a8a8 !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
  text-align: center !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  opacity: 0.85;
}

/* PRICE LIST JADI FOKUS UTAMA */
.price-list {
  order: 3 !important;
  margin-bottom: 18px !important;
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(198,168,107,0.15);
  border-radius: 14px !important;
  padding: 6px 16px !important;
  flex-grow: 1;
}
.price-list li {
  padding: 13px 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #f0f0f0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.price-list li:last-child { border-bottom: none !important; }
.price-list li strong {
  color: #111 !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #C6A86B, #D6B97D) !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  min-width: 95px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(198,168,107,0.25);
}

.booking-btn, .price-card .gold-btn {
  order: 4 !important;
  width: 100% !important;
  margin-top: auto !important;
  padding: 13px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* BEST SELLER badge lebih menonjol */
.price-card.featured::before {
  font-size: 10px !important;
  padding: 5px 12px !important;
  top: 12px !important;
  right: 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* === RESPONSIVE === */
/* Desktop: 3 kolom tetap, tapi harga tetap fokus */
@media (min-width: 993px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .price-card > p { -webkit-line-clamp: 3 !important; font-size: 12.5px !important; }
}

/* Tablet Landscape + Portrait: PAKSA 1 KOLOM BIAR HARGA GEDE */
@media (min-width: 577px) and (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }
  .price-card { padding: 26px 22px !important; }
  .price-list li { font-size: 15px !important; }
  .price-list li strong { font-size: 15px !important; min-width: 105px; }
}

/* HP: 1 kolom, harga makin besar */
@media (max-width: 576px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .price-card { padding: 22px 16px !important; }
  .price-card h3 { font-size: 18px !important; min-height: auto !important; }
  .price-list li { padding: 14px 0 !important; font-size: 14.5px !important; }
  #pricing, .pricing-section, section:has(.pricing-grid) {
    padding-bottom: 110px !important;
  }
}

/* Fix floating button nutupin */
@media (max-width: 1024px) {
  .floating-phone { bottom: 78px !important; }
  .floating-whatsapp { bottom: 14px !important; }
  #backToTop { bottom: 86px !important; right: 14px !important; }
}
\n\n
/* =========================================================
   PATCH V2.2 - FAQ PRICING + REDMI PAD LANDSCAPE + TEKS TERANG
   Tempel di PALING BAWAH file CSS kamu
========================================================= */

/* 1. TEKS PRICING LEBIH TERANG */
.price-card > p, .price-card .price-desc, .price-card p:first-of-type {
  color: #EAEAEA !important;
  opacity: 1 !important;
  font-weight: 400 !important;
  -webkit-line-clamp: unset !important; /* hapus potongan ... */
  display: block !important;
  overflow: hidden !important;
  max-height: 3.2em; /* default 2 baris preview */
  cursor: pointer;
  position: relative;
  transition: max-height .4s ease, color .3s ease !important;
  padding-right: 22px;
}

/* Tombol kecil "Lihat detail" ala FAQ */
.price-card > p::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 10px;
  color: var(--gold);
  transition: transform .35s ease;
}

.price-card > p.is-expanded {
  max-height: 500px !important; /* buka full */
  color: #FFFFFF !important;
  -webkit-line-clamp: unset !important;
}

.price-card > p.is-expanded::after {
  transform: rotate(180deg);
}

/* Hover hint */
.price-card > p:hover {
  color: #FFFFFF !important;
}

/* 2. FIX REDMI PAD LANDSCAPE - BREADCRUMB TETAP, HERO NAIK */
@media (min-width: 577px) and (max-width: 1024px) and (orientation: landscape) {
  /* Breadcrumb tetap di atas - jangan diubah */
  .breadcrumb, .breadcrumbs, nav[aria-label="breadcrumb"] {
    position: relative !important;
    top: auto !important;
    margin-top: 0 !important;
    z-index: 2 !important;
  }
  
  /* Hero naik - yang tadinya 28px jadi mepet */
  .hero {
    padding-top: 68px !important;
    min-height: auto !important;
    padding-bottom: 30px !important;
  }
  .hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .hero-top {
    margin-top: 6px !important; /* sebelumnya 28px, sekarang naik 22px */
    padding-top: 0 !important;
  }
  /* Badge dan subtitle lebih rapat */
  .hero-badge {
    margin-bottom: 8px !important;
  }
  .hero .subtitle {
    margin-bottom: 10px !important;
  }
}

/* 3. KHUSUS REDMI PAD 11" (resolusi 2560x1600) landscape */
@media (min-width: 800px) and (max-width: 900px) and (orientation: landscape) and (max-height: 600px) {
  .hero {
    padding-top: 62px !important;
  }
  .hero-top {
    margin-top: 2px !important;
  }
}


/* =========================================================
   PATCH V2.3 - BEST PRACTICE HEADER + BREADCRUMB -> H1
   Tanpa Banner / Tanpa Hero Image - Breadcrumb tetap bawah logo
   Hanya ubah: header height + breadcrumb safe + jarak breadcrumb->H1
========================================================= */

/* --- RESET BEST PRACTICE BASE (Fallback) --- */
.navbar {
  padding: 16px 5% !important;
  min-height: 64px;
}
.navbar.scrolled {
  padding: 12px 5% !important;
}
.logo img {
  height: 44px !important;
  width: auto;
}
.breadcrumb {
  margin: 80px auto 0 auto !important; /* aman bawah logo base */
  padding: 0 16px !important;
}
.hero {
  padding-top: 0 !important;
  min-height: auto !important;
}
.hero-top {
  margin-top: 20px !important; /* BEST PRACTICE Breadcrumb -> H1 base = 20px */
  padding-top: 0 !important;
}
.hero-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- HP Kecil <360px --- */
@media (max-width: 360px) {
  .navbar { padding: 10px 4% !important; min-height: 56px !important; }
  .navbar.scrolled { padding: 8px 4% !important; }
  .logo img { height: 36px !important; }
  .breadcrumb { margin-top: 68px !important; margin-bottom: 0 !important; }
  .hero { padding-top: 0 !important; }
  .hero-top { margin-top: 16px !important; } /* Breadcrumb -> H1 = 16px */
}

/* --- HP Standar 361-480px --- */
@media (min-width: 361px) and (max-width: 480px) {
  .navbar { padding: 12px 4% !important; min-height: 60px !important; }
  .navbar.scrolled { padding: 10px 4% !important; }
  .logo img { height: 40px !important; }
  .breadcrumb { margin-top: 76px !important; margin-bottom: 0 !important; }
  .hero { padding-top: 0 !important; }
  .hero-top { margin-top: 16px !important; } /* Breadcrumb -> H1 = 16px */
}

/* --- HP Besar / iPhone 17 Pro Max 481-600px --- */
@media (min-width: 481px) and (max-width: 600px) {
  .navbar { padding: 14px 4% !important; min-height: 64px !important; }
  .logo img { height: 42px !important; }
  .breadcrumb { margin-top: 80px !important; }
  .hero-top { margin-top: 20px !important; } /* Breadcrumb -> H1 = 20px */
}

/* --- Tablet Portrait 601-768px --- */
@media (min-width: 601px) and (max-width: 768px) {
  .navbar { padding: 16px 3.5% !important; min-height: 68px !important; }
  .logo img { height: 46px !important; }
  .breadcrumb { margin-top: 86px !important; }
  .hero-top { margin-top: 20px !important; } /* 20px */
}

/* --- Redmi Pad Portrait 769-900px --- */
@media (min-width: 769px) and (max-width: 900px) {
  .navbar { padding: 16px 3% !important; min-height: 72px !important; }
  .logo img { height: 48px !important; }
  .breadcrumb { margin-top: 90px !important; }
  .hero-top { margin-top: 22px !important; } /* 22px */
}

/* --- Tablet Landscape / Redmi Pad Landscape 901-1024px --- */
@media (min-width: 901px) and (max-width: 1024px) {
  .navbar { padding: 18px 3% !important; min-height: 76px !important; }
  .logo img { height: 50px !important; }
  .breadcrumb { margin-top: 96px !important; }
  .hero-top { margin-top: 24px !important; } /* 24px */
}

/* --- Laptop 13-14" 1025-1280px --- */
@media (min-width: 1025px) and (max-width: 1280px) {
  .navbar { padding: 18px 5% !important; min-height: 78px !important; }
  .logo img { height: 52px !important; }
  .breadcrumb { margin-top: 100px !important; }
  .hero-top { margin-top: 26px !important; } /* 26px */
}

/* --- Desktop 15-16" 1281-1536px --- */
@media (min-width: 1281px) and (max-width: 1536px) {
  .navbar { padding: 20px 5% !important; min-height: 82px !important; }
  .logo img { height: 56px !important; }
  .breadcrumb { margin-top: 108px !important; }
  .hero-top { margin-top: 28px !important; } /* 28px */
}

/* --- Desktop Full HD 1537-1920px --- */
@media (min-width: 1537px) and (max-width: 1920px) {
  .navbar { padding: 22px 5% !important; min-height: 84px !important; }
  .logo img { height: 60px !important; }
  .breadcrumb { margin-top: 112px !important; }
  .hero-top { margin-top: 28px !important; } /* 28px */
}

/* --- Desktop 4K / Komputer 1921px+ --- */
@media (min-width: 1921px) {
  .navbar { padding: 24px 5% !important; min-height: 90px !important; }
  .logo img { height: 64px !important; }
  .breadcrumb { margin-top: 120px !important; }
  .hero-top { margin-top: 32px !important; } /* 32px */
}

/* Fix: pastikan breadcrumb tetap di bawah logo dan tidak ketutup navbar */
.breadcrumb, .breadcrumbs, nav[aria-label="breadcrumb"] {
  position: relative !important;
  z-index: 10 !important;
}

/* Fix: tanpa banner/hero image, hero jangan kasih padding-top gede lagi */
.hero-content, .hero-badge, .hero .subtitle {
  margin-top: 0 !important;
}


/* =========================================================
   PATCH V2.4 - BEST PRACTICE TYPOGRAPHY HERO TANPA BANNER
   Untuk: Layanan Massage Panggilan Profesional 24 Jam
   + Premium Home, Hotel & Apartment Massage Service
   Hanya ubah ukuran font, tidak ubah layout lain
========================================================= */

/* Base Best Practice */
.hero h1 {
  font-size: 48px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}
.hero .subtitle,
.hero p.subtitle,
p.subtitle {
  font-size: 16px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  opacity: 0.9;
}

/* HP Kecil <360px */
@media (max-width: 360px) {
  .hero h1 { font-size: 26px !important; line-height: 1.22 !important; }
  .hero .subtitle { font-size: 13px !important; line-height: 1.5 !important; }
}

/* HP Standar 361-480px */
@media (min-width: 361px) and (max-width: 480px) {
  .hero h1 { font-size: 28px !important; line-height: 1.22 !important; }
  .hero .subtitle { font-size: 14px !important; }
}

/* HP Besar / iPhone 17 Pro Max 481-600px */
@media (min-width: 481px) and (max-width: 600px) {
  .hero h1 { font-size: 31px !important; line-height: 1.2 !important; }
  .hero .subtitle { font-size: 14.5px !important; }
}

/* Tablet Portrait 601-768px */
@media (min-width: 601px) and (max-width: 768px) {
  .hero h1 { font-size: 36px !important; }
  .hero .subtitle { font-size: 15px !important; }
}

/* Redmi Pad Portrait 769-900px */
@media (min-width: 769px) and (max-width: 900px) {
  .hero h1 { font-size: 40px !important; }
  .hero .subtitle { font-size: 15.5px !important; }
}

/* Tablet Landscape 901-1024px */
@media (min-width: 901px) and (max-width: 1024px) {
  .hero h1 { font-size: 42px !important; }
  .hero .subtitle { font-size: 16px !important; }
}

/* Laptop 13-14" 1025-1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero h1 { font-size: 46px !important; }
  .hero .subtitle { font-size: 16px !important; }
}

/* Desktop 15-16" 1281-1536px */
@media (min-width: 1281px) and (max-width: 1536px) {
  .hero h1 { font-size: 50px !important; }
  .hero .subtitle { font-size: 17px !important; }
}

/* Desktop Full HD 1537-1920px */
@media (min-width: 1537px) and (max-width: 1920px) {
  .hero h1 { font-size: 54px !important; }
  .hero .subtitle { font-size: 17px !important; }
}

/* Desktop 4K 1921px+ */
@media (min-width: 1921px) {
  .hero h1 { font-size: 60px !important; line-height: 1.15 !important; }
  .hero .subtitle { font-size: 18px !important; }
}


/* =========================================================
   PATCH V2.5 - SAMAKAN POSISI H1 HOMEPAGE DENGAN HALAMAN CABANG
   Homepage tidak punya breadcrumb, jadi H1 naik mepet logo.
   Solusi: kasih padding-top ekstra di .hero hanya jika TIDAK ada breadcrumb
========================================================= */

/* Homepage tanpa breadcrumb = hero adalah child pertama di main */
main > .hero:first-child {
  padding-top: 42px !important; /* default base = tinggi breadcrumb */
}

/* HP Kecil <360px - breadcrumb di cabang 68px, jadi homepage kasih 38px */
@media (max-width: 360px) {
  main > .hero:first-child { padding-top: 38px !important; }
  main > .hero:first-child .hero-top { margin-top: 16px !important; }
}

/* HP Standar 361-480px */
@media (min-width: 361px) and (max-width: 480px) {
  main > .hero:first-child { padding-top: 40px !important; }
}

/* HP Besar 481-600px */
@media (min-width: 481px) and (max-width: 600px) {
  main > .hero:first-child { padding-top: 42px !important; }
}

/* Tablet Portrait 601-768px */
@media (min-width: 601px) and (max-width: 768px) {
  main > .hero:first-child { padding-top: 48px !important; }
}

/* Redmi Pad 769-900px */
@media (min-width: 769px) and (max-width: 900px) {
  main > .hero:first-child { padding-top: 52px !important; }
}

/* Tablet Landscape 901-1024px */
@media (min-width: 901px) and (max-width: 1024px) {
  main > .hero:first-child { padding-top: 58px !important; }
}

/* Laptop 1025-1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
  main > .hero:first-child { padding-top: 62px !important; }
}

/* Desktop 1281-1536px */
@media (min-width: 1281px) and (max-width: 1536px) {
  main > .hero:first-child { padding-top: 68px !important; }
}

/* Full HD 1537-1920px */
@media (min-width: 1537px) and (max-width: 1920px) {
  main > .hero:first-child { padding-top: 72px !important; }
}

/* 4K+ 1921px+ */
@media (min-width: 1921px) {
  main > .hero:first-child { padding-top: 82px !important; }
}




/* =========================================================
   HAMBURGER MODEL OK - DIAMBIL DARI FILE file4461348105806768357.css
   Sudah terbukti OK di semua halaman
   Diterapkan ke style baru
========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9990;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(24, 24, 24, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar.hide {
    transform: translateY(-100%);
}

.hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background: rgba(17,17,17,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    cursor: pointer;
    z-index: 999999;
    transition: var(--transition);
}

.hamburger.hide {
    transform: translateY(-100px);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive - tetap di pojok kanan atas */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 5%;
  }
  .navbar.scrolled {
    padding: 14px 5%;
  }
  .hamburger {
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .hamburger {
    top: 12px;
    right: 12px;
  }
}



/* OVERPOWER - Pastikan model OK menang atas sisa !important lama */
html body .hamburger,
body .navbar .hamburger {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  transform: none !important;
}
html body .hamburger.hide {
  transform: translateY(-100px) !important;
}
html body .hamburger.active {
  transform: none !important;
}
html body .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
html body .hamburger.active span:nth-child(2) { opacity: 0 !important; }
html body .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }

@media (max-width: 768px) {
  html body .hamburger { top: 14px !important; right: 16px !important; }
}


/* V3.4 FIX */
/* =========================================================
   PATCH V3.4 FIX - 100% MUNCUL
   Fix untuk CSS lama yang banyak !important grid
========================================================= */

/* 1. PAKSA JADI FLEX DI HP & TABLET - Paling bawah, paling kuat */
@media (max-width: 1024px) {
  /* Override semua grid-template-columns !important di file lama */
  .service-grid,
  .pricing-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;
    padding: 10px 20px 24px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px) !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    cursor: grab !important;
  }
  .service-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar { display: none !important; }

  /* 1 CARD SAJA */
  .service-card,
  .price-card {
    flex: 0 0 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  /* 2. HINT - Tempel langsung ke SECTION bukan container, jadi pasti muncul */
  section:has(.service-grid),
  section:has(.pricing-grid) {
    position: relative !important;
    padding-bottom: 85px !important;
  }

  /* Pill hint */
  section:has(.service-grid)::after,
  section:has(.pricing-grid)::after {
    content: 'Geser untuk melihat lainnya';
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    font-size: 11px !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    color: #C6A86B !important;
    background: rgba(198,168,107,0.12) !important;
    border: 1px solid rgba(198,168,107,0.30) !important;
    padding: 10px 20px 10px 48px !important;
    border-radius: 100px !important;
    backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
    z-index: 5 !important;
    pointer-events: none !important;
    animation: fadeInHint 0.6s ease !important;
  }

  /* Icon tangan */
  section:has(.service-grid)::before,
  section:has(.pricing-grid)::before {
    content: '👉' !important;
    position: absolute !important;
    bottom: 28px !important;
    left: 50% !important;
    margin-left: -88px !important;
    font-size: 18px !important;
    z-index: 6 !important;
    pointer-events: none !important;
    animation: handSwipe 1.6s infinite ease-in-out !important;
  }

  @keyframes handSwipe {
    0%,100% { transform: translateX(0); opacity: 0.8; }
    50% { transform: translateX(-10px); opacity: 1; }
  }
  @keyframes fadeInHint {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
}

/* HP Kecil */
@media (max-width: 480px) {
  .service-card,
  .price-card { flex: 0 0 88% !important; min-width: 88% !important; max-width: 88% !important; }
  section:has(.service-grid)::after,
  section:has(.pricing-grid)::after { font-size: 10px !important; padding: 9px 16px 9px 42px !important; }
  section:has(.service-grid)::before,
  section:has(.pricing-grid)::before { margin-left: -76px !important; font-size: 16px !important; }
}

/* Tablet - tetap 1 card */
@media (min-width: 601px) and (max-width: 1024px) {
  .service-card,
  .price-card { flex: 0 0 62% !important; min-width: 62% !important; max-width: 62% !important; }
}

/* Fallback kalau browser tidak support :has() - pakai cara universal */
@supports not selector(:has(*)) {
  @media (max-width: 1024px) {
    .service-grid::after,
    .pricing-grid::after {
      content: '← Geser →';
      position: sticky !important;
      right: 10px !important;
      bottom: 0 !important;
      align-self: flex-end !important;
      background: #C6A86B !important;
      color: #111 !important;
      padding: 6px 12px !important;
      border-radius: 20px !important;
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: 1px !important;
      display: none !important; /* sembunyikan fallback kalau has support */
    }
  }
}

/* Desktop balik normal */
@media (min-width: 1025px) {
  .service-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; overflow: visible !important; }
  .pricing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; overflow: visible !important; }
  section:has(.service-grid),
  section:has(.pricing-grid) { padding-bottom: 90px !important; }
  section:has(.service-grid)::after,
  section:has(.pricing-grid)::after,
  section:has(.service-grid)::before,
  section:has(.pricing-grid)::before { display: none !important; }
}
