    * { 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 dekat logo 2 baris */
    .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 */
    .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 */
    .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 */
    .hero {
      padding: 140px 0 80px;
      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: 26px;
      max-width: 740px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 0.9s ease-out;
    }

    .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 {
      width: 20px;
      height: 20px;
      fill: currentColor;
      display: block;
    }

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

    .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: 30px;
      font-size: 1rem;
    }

    /* 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;
    }

    /* ✅ Accordion */
    .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; }

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

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

    .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); }
    }

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

    /* Mobile */
    @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; }

      .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; }
    }

    @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; }
    }
  