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

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

    /* ✅ BLOG LIST */
    .blog {
      padding: 80px 0;
      background: white;
    }

    .blog-toolbar {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin: 10px auto 26px;
      max-width: 900px;
    }

    .search-wrap {
      width: min(620px, 100%);
      display: flex;
      gap: 10px;
      background: #f8fdf8;
      border: 1px solid #e5f2e5;
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    }

    .search-wrap input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .pill {
      border: 1px solid #d8f0d8;
      background: #f0fff0;
      color: var(--green-dark);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all .25s ease;
      user-select: none;
    }

    .pill:hover { transform: translateY(-1px); }
    .pill.active { background: var(--green-main); border-color: var(--green-main); color: white; }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 10px;
    }

    .post-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #e5f2e5;
      background: #fbfffb;
      box-shadow: 0 10px 26px rgba(0,0,0,0.06);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      opacity: 0;
      transform: translateY(40px);
    }

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

    /* ✅ PERBAIKAN: supaya gambar TIDAK terpotong (pakai 16:9 & contain) */
    .post-thumb {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: contain;
      object-position: center;
      display: block;
      background: white;
    }

    .post-body {
      padding: 16px 16px 18px;
    }

    .post-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 8px;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .post-tag {
      background: #f0fff0;
      border: 1px solid #d0f0d0;
      color: var(--green-dark);
      font-weight: 800;
      border-radius: 999px;
      padding: 2px 8px;
      font-size: 0.78rem;
    }

    .post-title {
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .post-excerpt {
      font-size: 0.93rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .post-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .readmore {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-weight: 800;
      color: var(--green-main);
      transition: transform .2s ease;
    }

    .readmore:hover { transform: translateX(2px); }

    .mini-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-weight: 800;
      color: white;
      background: linear-gradient(135deg, var(--green-main), var(--green-soft));
      padding: 10px 12px;
      border-radius: 12px;
      box-shadow: 0 10px 22px rgba(76, 175, 80, 0.22);
      transition: transform .2s ease;
      white-space: nowrap;
    }

    .mini-btn:hover { transform: translateY(-1px); }

    .blog-note {
      margin-top: 18px;
      text-align: center;
      font-size: 0.86rem;
      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); }
    }

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

    /* Mobile Responsive */
    @media (max-width: 1024px){
      .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

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

      .blog-grid { grid-template-columns: 1fr; }
      .post-thumb { height: auto; }
    }

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