.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.hero-content {
    color: #f8fafc;
}

#tagline {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2em;
    word-spacing: 1px;
    letter-spacing: -2px;
    color: white;
}

.btn-make-an-enquiry {
    background-color:rgb(224, 245, 145)!important;
    border: none !important;
    border-radius: 20px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: black;
    min-width: 120px;
    min-height: 40px;
    padding: 10px 25px !important;
}

.btn-make-an-enquiry:hover {
    background-color: rgba(33, 24, 24, 0.735) !important;
    border: none;
}

.btn-discover-more {
    background-color: rgb(237, 237, 237) !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 120px;
    min-height: 40px;
    padding: 6px 20px !important;
    color: #1a1a1a;

}

.btn-discover-more:hover {
    color: #f8fafc;
    background-color: rgba(33, 24, 24, 0.735) !important;
    border: none;
}

/* section 2   */

.tentang-kami {
  padding: 80px 20px;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

.container-tentang {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.tentang-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

/* p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  color: #444;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
} */

strong {
  color: #000;
}

.btn-lengkap {
  margin-top: 30px;
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

.btn-selengkapnya {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
  padding: 10px 0;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-selengkapnya:hover {
  color: #2e7d32;
  border-bottom: 2px solid #2e7d32;
  transform: translateX(4px);
}

.icon {
  transition: transform 0.3s ease;
}

.btn-selengkapnya:hover .icon {
  transform: translateX(4px);
}

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* section 3 */

.business-fields {
  padding: 80px 20px;
  background-color: #f4f4f4;
}

.title-business-fields{
    margin-left: 2em;
}

.fields-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.field-card {
  position: relative;
  width: 240px;
  height: 180px;
  background-color: #ddd;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.field-card h3 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  margin: 0;
  font-size: 20px;
  color: #fff;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.field-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Slightly dark */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.field-card .overlay span {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

.field-card:hover {
  transform: scale(1.03);
}

.field-card:hover .overlay {
  opacity: 1;
}

/* section 4  */

.kontak-kami {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.title-kontak {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.kontak-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.kontak-info {
  flex: 1 1 45%;
  font-size: 16px;
  line-height: 1.6;
}

.kontak-info ul {
  list-style: none;
  padding: 0;
}

.kontak-info li {
  margin-bottom: 10px;
}

.kontak-form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.kontak-form input,
.kontak-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.kontak-form button {
  background-color: #006241;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontak-form button:hover {
  background-color: #004e33;
}

.visi-misi {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.visi,
.misi {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.misi {
  background-color: white;
  color: #2e7d32;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.visi {
  background-color: #2e7d32;
}

.content-visi-misi {
  max-width: 400px;
  text-align: center;
}

.visi-judul, .misi-judul {
  margin-bottom: 20px;
  font-size: 40px;
  text-align: center;
  justify-content: center;
}

.content-visi-misi p {
  font-size: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .visi-misi {
    flex-direction: column;
    height: auto;
  }

  .visi,
  .misi {
    width: 100%;
    clip-path: none;
  }
}