/* ===== HERO POTENSI ===== */
.hero-potensi {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('https://images.unsplash.com/photo-1506744038136-46273834b3fb');
  background-size: cover;
  background-position: center;
}

/* ===== POTENSI CONTAINER ===== */
.potensi-container {
  background-color: #fff;
  padding-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== POTENSI SECTION ===== */
.potensi-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.potensi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.potensi-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.potensi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.potensi-image img:hover {
  transform: scale(1.05);
}

.potensi-details {
  flex: 1;
  min-width: 300px;
}

.potensi-item {
  margin-bottom: 30px;
}

.potensi-item h3 {
  color: #27ae60;
  margin-bottom: 15px;
  font-size: 22px;
}

.potensi-item ul {
  list-style: none;
  padding: 0;
}

.potensi-item li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.potensi-item li i {
  margin-right: 10px;
  color: #27ae60;
  width: 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.advantage-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-card i {
  font-size: 24px;
  color: #27ae60;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  font-weight: 500;
}

.potensi-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #219653;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===== WISATA SECTION ===== */
.wisata-section {
  background: #f8f9fa;
}

.wisata-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.wisata-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.wisata-card:hover {
  transform: translateY(-10px);
}

.wisata-image {
  height: 200px;
  overflow: hidden;
}

.wisata-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.wisata-card:hover .wisata-image img {
  transform: scale(1.1);
}

.wisata-content {
  padding: 20px;
}

.wisata-content h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.wisata-location {
  color: #27ae60;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.wisata-location i {
  margin-right: 5px;
}

.wisata-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.wisata-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wisata-features span {
  background: #e8f5e9;
  color: #27ae60;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== PAKET WISATA ===== */
.wisata-package {
  margin-top: 50px;
}

.wisata-package h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.package-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.package-card.popular {
  border: 2px solid #27ae60;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.package-card h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 20px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.package-card li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.package-card li i {
  color: #27ae60;
  margin-right: 10px;
}

.package-price {
  font-size: 28px;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 20px;
}

.package-price span {
  font-size: 16px;
  color: #777;
  font-weight: normal;
}

/* ===== KERAJINAN SECTION ===== */
.craft-content {
  margin-top: 30px;
}

.craft-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.craft-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.craft-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.craft-image {
  height: 250px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.craft-card:hover .craft-image img {
  transform: scale(1.1);
}

.craft-info {
  padding: 20px;
}

.craft-info h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.craft-info p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.craft-price {
  color: #27ae60;
  font-weight: 700;
  font-size: 18px;
}

.craft-cta {
  text-align: center;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.craft-cta p {
  margin-bottom: 20px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-shopee {
  background: #ee4d2d;
}

.btn-shopee:hover {
  background: #d14124;
  box-shadow: 0 5px 15px rgba(238, 77, 45, 0.3);
}

/* ===== POTENSI LAINNYA ===== */
.other-potensi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.potensi-card {
  display: flex;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.potensi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.potensi-icon {
  font-size: 36px;
  color: #27ae60;
  margin-right: 20px;
  min-width: 50px;
}

.potensi-text h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.potensi-text p {
  color: #666;
  font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #f8f9fa;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #27ae60;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: #27ae60;
  min-width: 20px;
}

.contact-person {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #27ae60;
  outline: none;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .potensi-content {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .wisata-card,
  .package-card,
  .craft-card {
    max-width: 400px;
    margin: 0 auto;
  }
}