:root {
  --primary: #0ea5e9;
  --dark: #0f172a;
  --bg: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.hero {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background Image */
  background: url("images/Sawah-Sembalun.jpeg") center/cover no-repeat;

  /* Overlay supaya teks tetap jelas */
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* gelap transparan */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 10px; /* ⬅️ kotak rounded */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.4);
}

section {
  padding: 70px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  position: relative;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* Judul paket */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Deskripsi paket */
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  padding-right: 40px;
}

/* Anchor Read More */
.read-more {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
  color: #16a34a;
}

form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 15px;
}

input, textarea, button {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

button {
  background: var(--primary);
  color: white;
  border: none;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 30px;
}

#kontak {
  padding: 70px 20px;
  text-align: center;

  /* Background Image */
  background: url("images/Welcome-kedai-sawah-sembalun.jpeg") center/cover no-repeat;

  /* Overlay agar teks tetap jelas */
  position: relative;
  color: white;
}

#kontak::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Overlay gelap transparan */
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Supaya semua isi tampil di atas overlay */
#kontak * {
  position: relative;
  z-index: 1;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px;
}

.wa-float { 
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 14px 18px;
  border-radius: 10px; /* ⬅️ kotak rounded */
  color: #ffffff;
  font-weight: 600;
  border: none;          /* ⬅️ hilangkan border */
  outline: none;         /* ⬅️ hilangkan garis putih */
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45);
  transition: all 0.25s ease;
  z-index: 999;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  filter: blur(8px);
  transition: .4s ease;
}

.gallery img.loaded {
  filter: blur(0);
}

.seo-text {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 15px;
  color: #334155;
}

.rental-section {
  padding: 64px 20px;
  background: #f8fafc;
}

.rental-card {
  max-width: 820px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-top: 6px solid #19a7e0;
}

.rental-intro {
  font-size: 16px;
  color: #334155;
  margin-bottom: 20px;
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.rental-table th {
  text-align: left;
  padding: 12px 0;
  color: #64748b;
  font-weight: 600;
}

.rental-table td {
  padding: 12px 0;
  font-weight: 700;
  color: #0f172a;
}

.rental-table .price {
  color: #22c55e;
  font-size: 18px;
}

.rental-info p {
  font-size: 15px;
  color: #334155;
  margin-bottom: 12px;
}

.warning-title {
  color: #f59e0b;
  font-weight: 700;
  margin-top: 18px;
}

.rental-info ul {
  padding-left: 20px;
}

.rental-info li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}

.extra-service-section {
  padding: 64px 20px;
  background: #ffffff;
}

.extra-card {
  max-width: 820px;
  margin: auto;
  background: #f8fafc;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border-left: 6px solid #2fb3f1;
}

.extra-item {
  margin-bottom: 22px;
}

.extra-item h4 {
  color: #16a34a;
  font-size: 16px;
  margin-bottom: 6px;
}

.extra-item p {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.vehicle-list {
  margin-top: 10px;
  padding-left: 18px;
}

.vehicle-list li {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 6px;
}

.vehicle-list small {
  color: #64748b;
}

.note {
  font-size: 14px;
  color: #0284c7;
  margin-top: 8px;
}

.extra-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
  padding-top: 14px;
  font-size: 14px;
  color: #475569;
}


.wa-btn {
  display: block;
  margin-top: 14px;
  padding: 14px 16px;
  text-align: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px; /* kotak rounded */
  text-decoration: none;
  transition: all 0.25s ease;
}

.wa-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.45);
}

.wa-primary {
  background: linear-gradient(135deg, #22c55e, #0ea5a5);
}

.wa-primary:hover {
  background: linear-gradient(135deg, #16a34a, #0891b2);
}


.pricing-section {
  padding: 70px 20px;
  background: #f9fbfc;
}

.section-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 45px;
}

/* Grid 5 card berjajar */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card style sama seperti paket favorit */
.pricing-box {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.pricing-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.pricing-box h3 {
  font-size: 17px;
  margin-bottom: 16px;
  color: #0f172a;
}

/* Isi tabel tanpa garis */
.pricing-info div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-info span {
  color: #0f172a;
  
}

.pricing-info b {
  
  
  color: #0f172a;
  
}

/* Harga hijau */
.price {
  color: #22c55e;
  font-weight: 900;
}

/* Booking link */
.booking-link {
  display: block;
  text-align: right;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
  text-decoration: none;
}

.booking-link:hover {
  text-decoration: underline;
}

/* Responsive: otomatis turun */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Catatan bawah */
.note {
  margin-top: 26px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}