    * { 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 */
    .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 */
    .logo-icon { display: none; }

    .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 p {
      font-size: 1.05rem;
      color: #B8E6B8;
      margin-bottom: 10px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 0.9s ease-out;
    }

    .hero-mini {
      color: #E6FFE6;
      font-weight: 600;
      margin-top: 10px;
      font-size: 0.98rem;
    }

    /* Buttons */
    .cta-group {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

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

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

    /* ✅ Social icons (SVG) */
    .icon {
      width: 20px;
      height: 20px;
      display: block;
      flex: 0 0 auto;
      fill: currentColor;
    }

    /* Contact Section */
    .contact {
      padding: 80px 0;
      background: white;
    }

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

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

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .card {
      background: white;
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border: 1px solid #f0f0f0;
    }

    .card h3 {
      color: var(--green-dark);
      font-size: 1.25rem;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .info-row {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid #f3f3f3;
    }

    .info-row:last-child { border-bottom: none; }

    .info-title {
      font-weight: 800;
      color: var(--green-dark);
      margin-bottom: 2px;
      font-size: 0.98rem;
    }

    .info-text {
      color: var(--text-muted);
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .info-link {
      color: var(--green-main);
      text-decoration: none;
      font-weight: 800;
    }

    .info-link:hover { text-decoration: underline; }

    .map-wrap {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #f0f0f0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      background: #fff;
    }

    .map-head {
      padding: 16px 18px;
      background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
      border-bottom: 1px solid #f0f0f0;
    }

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

    iframe { width: 100%; height: 380px; border: 0; 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 WA */
    .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: 900px) {
      .contact-grid { grid-template-columns: 1fr; }
      iframe { height: 340px; }
    }

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

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

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