/* ================= GLOBAL ================= */
.section-title {
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  /* background: #dc3545; */
  background: #cba35b;
  margin: 12px 0 24px;
}

/* ================= BANNER ================= */
.project-banner {
  position: relative;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
}

.project-banner h1 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.project-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 10px 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* ================= OVERVIEW ================= */
.overview-text {
  color: #6c757d;
  line-height: 1.8;
  text-align: justify;
}

/* ================= LOCATION ================= */
.location-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* ================= AMENITIES ================= */
.amenity-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.amenity-card img {
  height: 45px;
  margin-bottom: 10px;
}

/* ================= PRICE ================= */
.price-card {
  border: 1px solid #ddd;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  transition: .3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* ================= MAP ================= */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
}


/* ------- */
/* ================= PROFILE LAYOUT ================= */

.profile-layout {
  background: #ffffff;
}

/* Section title */
.profile-layout .section-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Separator */
.separator-wrapper {
  margin-bottom: 30px;
}

.separator {
  width: 60px;
  height: 3px;
  /* background: #dc3545; */
  background: #cba35b;
  transform: skew(-20deg);
}

/* Image */
.profile-image-link {
  display: block;
}

.profile-image {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.profile-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive spacing */
@media (max-width: 768px) {
  .profile-layout {
    padding: 40px 0;
  }
}


/* ================= DOWNLOADS SECTION ================= */

.downloads-section {
  background: #ffffff;
}

/* Title */
.downloads-section .section-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Separator */
.dez-separator-outer {
  margin-bottom: 30px;
}

.dez-separator {
  width: 60px;
  height: 3px;
}

.style-skew {
  transform: skew(-20deg);
}

/* Download list */
.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Download item */
.download-item {
  margin-bottom: 15px;
}

/* Download link */
.download-link {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

/* Hover effect */
.download-link:hover {
  /* background: #dc3545; */
  background: #cba35b;
  color: #ffffff;
  /* border-color: #dc3545; */
  border-color: #cba35b;
}

/* Icons */
.download-link i {
  font-size: 16px;
}

/* File name */
.file-name {
  flex: 1;
  margin: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 576px) {
  .download-link {
    width: 100%;
  }
}
