/* -----------------------------------
  Template Name: Sheltek - Real Estate HTML Template

  NOTE: This is Footer style file. All footer related style included in this file.

--------------------------------------*/

/* =================================
  Footer
================================= */
.footer-area {
  background-attachment: inherit;
}
.footer-widget {
}
.footer-titel {
  color: #fefefe;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/*footer-address*/
.footer-address > li + li {
  /*border-top: 1px solid #73716f;*/
  padding-top: 15px;
}
.footer-address > li {
  overflow: hidden;
  padding-bottom: 10px;
}
.address-icon {
  float: left;
  width: 15%;
}
.address-info {
  float: left;
  width: 85%;
}
.address-info > span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}

/*footer-latest-news*/
.footer-widget.middle {
  margin: auto;
  width: calc(100% - 100px);
}
.footer-latest-news > li {
  overflow: hidden;
}
.footer-latest-news > li + li {
  padding-top: 34px;
}
.latest-news-image {
  float: left;
  width: 18%;
}
.latest-news-info {
  float: left;
  padding-left: 20px;
  width: 82%;
}
.latest-news-info > p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0;
}
.latest-news-info > h6 {
  color: #c7c7c7;
  font-family: "montserrat";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}

/*footer-contact*/
.footer-contact > p {
  font-size: 12px;
  line-height: 20px;
}
.footer-contact input {
  border-color: #706e6d;
  height: 35px;
  font-size: 12px;
}
.footer-contact textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #706e6d;
  box-shadow: none;
  font-size: 12px;
  font-weight: 300;
  height: 80px;
  line-height: 22px;
  margin-bottom: 17px;
  padding: 5px 10px;
}
.footer-contact button {
  background: #c5c5c5 none repeat scroll 0 0;
  color: #000000;
  padding: 3px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.footer-contact button:hover {
  background: #95c41f none repeat scroll 0 0;
  color: #fff;
}
.footer-contact input::-webkit-input-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact input::-moz-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact input:-ms-input-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact input:-moz-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact textarea::-webkit-input-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact textarea::-moz-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact textarea:-ms-input-placeholder {
  color: #919191;
  font-size: 12px;
}
.footer-contact textarea:-moz-placeholder {
  color: #919191;
  font-size: 12px;
}
/*copyright*/
.footer-bottom {
  background: rgba(23, 23, 23, 0.7) none repeat scroll 0 0;
  border-top: 1px solid #484848;
  padding: 20px 0;
}
.copyright > p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 0;
}
.copyright a {
  color: #95c41f;
}

.address-info > span,
.latest-news-info > p,
.footer-contact > p,
.footer-contact input,
.footer-contact textarea,
.copyright > p {
  /*color: #919191;*/
  color: #ccc;
}

/* 1. Wrapper untuk List */
.list-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 160px; /* Tinggi awal (sekitar 3-4 baris) */
  transition: max-height 0.8s ease-in-out; /* Animasi buka/tutup halus */
}

/* 2. Efek Fade Out (Bayangan Gradasi) */
.list-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; /* Tinggi area pudar */
  /* PENTING: Ganti warna RGB di bawah sesuai warna background footer website Anda */
  /* Contoh ini menggunakan Hitam (0,0,0) transparan ke Hitam Solid */
  background: linear-gradient(
    to bottom,
    rgba(34, 34, 34, 0),
    rgba(34, 34, 34, 1)
  );
  pointer-events: none; /* Agar klik tembus ke bawah */
  transition: opacity 0.3s;
}

/* 3. State ketika dibuka (Expanded) */
.list-wrapper.expanded {
  max-height: 5000px; /* Nilai besar agar semua konten muat */
}

/* Hilangkan bayangan saat dibuka */
.list-wrapper.expanded::after {
  opacity: 0;
}

/* Styling Link */
.property-list-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.2s;
}
.property-list-footer a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* Tombol */
.btn-show-more {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
  outline: none;
}
.btn-show-more:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.btn-show-more {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
  display: inline-block;
}
.btn-show-more:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

/* Class untuk menyembunyikan item */
.hidden-item {
  display: none;
}
