* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-dark: #1e5631;
    --green-main: #4CAF50;
    --green-soft: #66BB6A;
    --bg-light: #f8fdf8;
    --text-main: #333;
    --text-muted: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: linear-gradient(135deg, #1e5631 0%, #2d7a3a 100%);
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    width: 22px;
    height: 14px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 16px;
    left: 10px;
    transform: rotate(-18deg);
}

.logo-icon::after {
    content: '';
    width: 17px;
    height: 10px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 21px;
    left: 21px;
    transform: rotate(18deg);
}

/* ✅ LOGO HEADER PAKAI GAMBAR (KOTAK CLEAN) */
.logo-icon-img{
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.30);
    display: block;
}

/* ✅ matikan logo CSS lama supaya tidak tampil */
.logo-icon { display: none; }

/* ✅ Judul di dekat logo seperti contoh: baris 1 nama, baris 2 tagline */
.logo-text h1 {
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.1;
    text-transform: none;
}

.logo-text p {
    color: #B8E6B8;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1.1;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover { color: var(--green-main); }

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--green-main);
    transition: width 0.3s ease;
}

nav a:hover::after { width: 100%; }

/* ✅ Hamburger button (baru) */
.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    transition: all .25s ease;
}

.hamburger:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: all .25s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ✅ Mobile menu dropdown (baru) */
.mobile-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: min(280px, calc(100% - 40px));
    background: rgba(30, 86, 49, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.mobile-menu a {
    display: block;
    padding: 12px 14px;
    color: #E6FFE6;
    text-decoration: none;
    font-weight: 600;
    transition: background .25s ease;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.mobile-menu.show { display: block; }

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.55), rgba(45, 122, 58, 0.55)), url('/images/hero-massage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero h3 {
    font-size: 1.3rem;
    color: #E6FFE6;
    margin-bottom: 18px;
    font-weight: 500;
}

.hero p {
    font-size: 1.05rem;
    color: #B8E6B8;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.9s ease-out;
}

.hero-highlight {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 14px;
    color: #E6FFE6;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.cta-secondary {
    background: transparent;
    border: 1px solid #B8E6B8;
    color: #E6FFE6;
    box-shadow: none;
}

.cta-secondary:hover { background: rgba(255,255,255,0.08); }

/* ✅ WhatsApp icon (dibaguskan) */
.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

/* Sections */
section { scroll-margin-top: 80px; }

/* Services Section */
.section-title {
    text-align: center;
    font-size: 2.1rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1rem;
}

.services { padding: 80px 0; background: white; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(40px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(76, 175, 80, 0.18);
    border-color: var(--green-main);
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.service-card h3 {
    color: var(--green-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.service-tag {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f0fff0;
    color: var(--green-dark);
    border: 1px solid #d0f0d0;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-features { list-style: none; }

.service-features li {
    color: var(--green-main);
    margin-bottom: 6px;
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-main);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-button {
    background: white;
    border: 2px solid var(--green-main);
    color: var(--green-main);
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tab-button.active { background: var(--green-main); color: white; }

.pricing-table {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.pricing-header {
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    color: white;
    padding: 24px;
    text-align: center;
}

.pricing-header h3 { font-size: 1.4rem; margin-bottom: 4px; }
.pricing-header p { font-size: 0.95rem; }

.pricing-body { padding: 0; }

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 14px 22px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.25s ease;
}

.price-row:nth-child(even) { background: #fcfffc; }
.price-row:hover { background: #f5fff5; }
.price-row:last-child { border-bottom: none; }

.service-name {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.97rem;
}

.duration {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    color: var(--green-main);
    text-align: right;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* ✅ Collapsible/Accordion (baru, untuk Harga) */
.accordion {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    background: white;
    margin-top: 20px;
}

.accordion + .pricing-note { margin-top: 14px; }

.acc-item { border-bottom: 1px solid #f0f0f0; }
.acc-item:last-child { border-bottom: none; }

.acc-btn{
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    background: white;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
    color: var(--green-dark);
}

.acc-left{
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.acc-title{ font-size: 1.05rem; }
.acc-sub{ font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.acc-arrow{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid #e5f2e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .25s ease, background .25s ease;
    background: #fbfffb;
}
.acc-arrow svg{ width: 18px; height: 18px; fill: var(--green-dark); }

.acc-panel{
    display: none;
    padding: 0;
}
.acc-item.open .acc-panel{ display: block; }
.acc-item.open .acc-arrow{ transform: rotate(180deg); background: #f0fff0; }

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.80), rgba(255,255,255,0.80)), url('/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fff4;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 14px;
    border: 1px solid #d6f5dd;
    font-size: 0.86rem;
    color: var(--green-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fdf8;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.feature-item:hover {
    background: #e8f5e8;
    transform: translateX(4px);
}

.feature-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.feature-text {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
}

.about-image-box {
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    border-radius: 18px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 32px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.about-image-box h3 { font-size: 1.6rem; margin-bottom: 12px; }
.about-image-box p { line-height: 1.7; font-size: 0.98rem; }

/* ✅ TESTIMONI (DITAMBAHKAN) */
.testimonials {
    padding: 70px 0 80px;
    background: white;
}

.testi-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.testi-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 10px;
}

.testi-row::-webkit-scrollbar { height: 8px; }

.testi-card {
    flex: 0 0 auto;
    width: min(86vw, 340px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5f2e5;
    background: #fbfffb;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    scroll-snap-align: start;
}

.testi-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: white;
}

.testi-note {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a3a 100%);
    text-align: center;
}

.contact h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact p { color: #B8E6B8; font-size: 1rem; }

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 22px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 230px;
    opacity: 0;
    transform: translateY(40px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.contact-item h3 {
    color: white;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.contact-item p {
    color: #E6FFE6;
    font-size: 0.95rem;
    margin: 2px 0;
}

.contact-item small { font-size: 0.78rem; color: #CFF6CF; }

/* FAQ / Extra Info */
.faq { padding: 60px 0 80px; background: white; }

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    border: 1px solid #e5f2e5;
    padding: 14px 18px;
    background: #fbfffb;
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.faq-item p { font-size: 0.93rem; color: var(--text-muted); }

/* Footer */
footer { background: #1a4a2a; color: white; padding: 32px 0 24px; }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-bottom: 22px;
}

.footer-section h3 {
    color: var(--green-main);
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-section p, .footer-section li {
    color: #B8E6B8;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-section ul { list-style: none; }

.footer-section a {
    color: #B8E6B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--green-main); }

.footer-bottom {
    border-top: 1px solid #2d7a3a;
    padding-top: 14px;
    color: #B8E6B8;
    text-align: center;
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero { padding: 120px 0 70px; }
    .hero h2 { font-size: 2rem; }
    .hero h3 { font-size: 1.05rem; }

    nav ul { display: none; }

    .hamburger { display: inline-flex; }

    .logo-icon-img{
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .logo-text h1{ font-size: 1.05rem; }
    .logo-text p{ font-size: 0.82rem; }

    .section-title { font-size: 1.7rem; }

    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .about-image-box { min-height: 260px; }

    .price-row {
        grid-template-columns: 1.4fr 1fr;
        grid-template-areas:
            "name name"
            "duration price";
        row-gap: 4px;
    }

    .service-name { grid-area: name; }
    .duration { grid-area: duration; text-align: left; font-size: 0.88rem; }
    .price { grid-area: price; text-align: right; }

    .services-grid{
        grid-auto-flow: column;
        grid-auto-columns: min(86vw, 320px);
        grid-template-columns: unset;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        justify-content: start;
    }
    .service-card{
        scroll-snap-align: start;
    }
    .services-grid::-webkit-scrollbar{ height: 8px; }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .cta-button { width: 100%; justify-content: center; }
    .cta-group { gap: 10px; }
}