*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #f1f8e9;
  --green-mid: #c8e6c9;
  --text: #1a1a1a;
  --text-muted: #666;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--green-light);
  color: var(--text);
  min-height: 100vh;
}

/* CLOSE BUTTON */
.btn-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  font-weight: 400;
}

.btn-close:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  background: url('images/rice-fields1.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-subtitle {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--green-mid);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* MAIN TABLE SECTION */
.services-section {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 5vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
  color: var(--text);
  margin-bottom: clamp(24px, 4vw, 48px);
}

/* TABLE WRAPPER */
.table-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* CATEGORY ROW */
.category-row td {
  background: var(--green);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  padding: 14px 24px;
  letter-spacing: 1px;
}

/* CATEGORY ICON IMG */
.category-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

/* HEADER ROW */
.header-row th {
  background: var(--green-light);
  color: var(--green-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  text-align: left;
  border-bottom: 1px solid var(--green-mid);
}

/* DATA ROWS */
tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: #fafff8;
}

tbody td {
  padding: 16px 24px;
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--text);
  vertical-align: middle;
}

.td-label {
  font-weight: 500;
  color: var(--green);
  width: 30%;
}

.td-price {
  font-weight: 600;
  color: var(--green-dark);
}

.td-duration {
  color: var(--text-muted);
  font-size: 13px;
}

/* SPACER ROW */
.spacer-row td {
  padding: 6px;
  background: var(--green-light);
}

/* ANIMATION */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section { padding: 24px 12px; }
  .category-row td { padding: 12px 16px; font-size: 16px; }
  .header-row th, tbody td { padding: 12px 16px; font-size: 13px; }
  .td-label { width: 40%; }
}

@media (max-width: 480px) {
  .header-row th, tbody td { padding: 10px 12px; font-size: 12px; }
}

/* FLOATING WHATSAPP */
.float-wa-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-wa svg {
  display: block;
  flex-shrink: 0;
  min-width: 28px;
  min-height: 28px;
}

.float-wa-label {
  display: none;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.float-wa:hover .float-wa-label {
  opacity: 1;
}

/* POPUP */
.float-wa-popup {
  background: #fff;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  animation: popupFade 0.3s ease;
}

.float-wa-popup.show {
  display: block;
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-wa-popup-header {
  background: #25d366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1da851;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-wa-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.float-wa-status {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  margin: 0;
}

.float-wa-close {
  margin-left: auto;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.float-wa-close:hover {
  opacity: 1;
}

.float-wa-body {
  padding: 16px;
  background: #f0f4f8;
}

.float-wa-body p {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: inline-block;
}

.float-wa-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.float-wa-btn:hover {
  background: #1da851;
}