/* === Reset & Global === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f9fbf6;
  color: #1d2b20;
  line-height: 1.6;
}

/* === Container === */
.container {
  width: min(1100px, 90%);
  margin: auto;
  padding: 20px 0;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e1eee7;
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo img {
  height: 40px;
}
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #1d2b20;
  transition: color 0.2s;
}
.nav a:hover {
  color: #2E9A4F;
}

/* === Hero === (Diperbarui) */
.hero {
  background: linear-gradient(160deg, #eaf5ee, #f9fbf6); /* Warna latar belakang fallback */
  padding: 60px 0;

  /* --- Tambahan untuk gambar latar belakang --- */
  background-image: url('img/Gemini_Generated_Image_apk3qyapk3qyapk3.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  
  background-blend-mode: multiply; 
  background-color: rgba(234, 245, 238, 0.7); 
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.hero p {
  margin-bottom: 20px;
  color: #555;
}
.hero-cta {
  display: flex;
  gap: 12px;
}
.hero-cta .btn {
  font-size: 16px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: #2E9A4F;
  color: #fff;
}
.btn-primary:hover {
  background: #1a562c;
}
.btn-outline {
  border: 2px solid #2E9A4F;
  color: #2E9A4F;
  background: transparent;
}
.btn-outline:hover {
  background: #eaf5ee;
}

/* === Sections === */
.section {
  padding: 60px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 30px;
}
.section-head h2 {
  font-size: 28px;
}
.section-head p {
  color: #555;
  margin-top: 6px;
}

/* === Cards (Paket Wisata) === */
.grid {
  display: grid;
  gap: 24px;
}
.cards {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e1eee7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.card-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  background: #def7e5;
  color: #087154;
  align-self: flex-start;
}
.badge-green { background: #c6ebd1; color: #1a562c; }
.badge-dark-green { background: #a2d1b4; color: #0a4d2e; }
.badge-orange { background: #ffe0c2; color: #a0530d; }
.card-title {
  font-size: 18px;
}
.card-list {
  padding-left: 18px;
  font-size: 14px;
  color: #444;
}
.card-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-weight: 700;
  color: #1a562c;
}

.card-img {
  width: 100%;
  height: 180px; /* Anda bisa sesuaikan tinggi ini sesuai kebutuhan */
  object-fit: contain; /* Perubahan di sini: dari 'cover' menjadi 'contain' */
  border-radius: 14px 14px 0 0;
  margin-bottom: 12px;
}

/* === Form Booking === */
.form {
  background: #fff;
  border: 1px solid #e1eee7;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  padding: 24px;
  max-width: 700px;
  margin: auto;
}
.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
label {
  font-weight: 600;
}
input, select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font: inherit;
}
input:focus, select:focus {
  outline: none;
  border-color: #2E9A4F;
  box-shadow: 0 0 0 3px rgba(46,154,79,0.2);
}
.form-actions {
  text-align: right;
}

/* === Footer === (UPDATED) */
.site-footer {
  background: #1a562c;
  color: #fff;
  padding: 50px 0 20px;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.footer-column h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  /* Properti baru ditambahkan di bawah */
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Style baru untuk gambar logo di footer */
.footer-column h4 img {
  height: 28px; /* Anda bisa sesuaikan ukuran tinggi logo */
  width: auto;
}
.footer-column p {
  color: #ddd;
}
.social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}
.social-links a {
  color: #fff;
  background:  #1a562c;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  font-weight: bold;
  transition: background 0.2s;
}
.social-links a:hover {
  background: #36e169;
}
.footer-links, .contact-info {
  list-style: none;
  padding: 0;
}
.footer-links li, .contact-info li {
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}
/* === End of Footer === */

/* === Card Image */
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin-bottom: 12px;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* === Responsiveness === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
}

/* === Form Enhancements === */
.form-divider {
  border: none;
  border-top: 1px solid #e1eee7;
  margin: 20px 0;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkbox-group .checkbox-item {
  margin-bottom: 8px;
}
.radio-group .radio-item {
  display: block;
  margin-bottom: 10px;
}
.form-hint {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}
.total-price {
  text-align: right;
  margin: 20px 0;
}
.total-price h4 {
  font-weight: normal;
  color: #555;
}
.total-price h3 {
  font-size: 28px;
  color: #1a562c;
}

/* === Payment Page Layout === */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.booking-summary {
  background: #eaf5ee;
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
}
.booking-summary h4 {
  margin-bottom: 15px;
  border-bottom: 1px solid #c6ebd1;
  padding-bottom: 10px;
}
.booking-summary p {
  margin-bottom: 8px;
}
.booking-summary ul {
  padding-left: 20px;
  font-size: 15px;
  color: #333;
}
.summary-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #c6ebd1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

/* === Success Page === */
.text-center {
  text-align: center;
}
.success-icon {
  font-size: 60px;
  color: #2E9A4F;
  margin-bottom: 20px;
}
.payment-instructions {
    background: #fff;
    border: 1px solid #e1eee7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
}

/* === Responsive Adjustments === */
@media (max-width: 900px) {
  .form-row-split {
    grid-template-columns: 1fr;
  }
  .payment-layout {
    grid-template-columns: 1fr;
  }
}

.label-hint {
  color: red;
  font-weight: normal;
  font-size: 14px;
}