/* ===============================
   GOOGLE FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */
}

body {
  background: #f5f6fa;
  color: #333;
}

/* ===============================
   HEADER
================================ */
.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.page-header h1 {
  font-size: 22px;
  font-weight: 600;
}

.back-arrow {
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.back-arrow:hover {
  background: #f0f0f0;
}

/* ===============================
   GRID
================================ */
.construction-grid {
  max-width: 1300px;
  margin: auto;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ===============================
   CARD
================================ */
.construction-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.construction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGES
================================ */
.main-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.images {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.images img {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

/* ===============================
   CONTENT
================================ */
.construction-card h3 {
  padding: 0 16px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

.construction-card p {
  padding: 6px 16px;
  font-size: 14px;
  color: #555;
}

.construction-card i {
  color: #1e90ff;
}

/* ===============================
   DETAILS
================================ */
.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
}

.details span {
  background: #f1f4ff;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}

/* ===============================
   BUDGET
================================ */
.budget {
  background: linear-gradient(135deg, #1e90ff, #4facfe);
  color: #ffffff;
  padding: 14px 16px;
  font-size: 14px;
}

.budget p {
  padding: 4px 0;
}

/* ===============================
   CONTACT
================================ */
.contact {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  text-align: center;
}

.contact strong {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}

.contact a {
  text-decoration: none;
  color: #1e90ff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact a:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .main-img {
    height: 200px;
  }

  .details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 18px;
  }

  .main-img {
    height: 180px;
  }

  .details {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   LOCATION LINK
================================ */
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 16px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(255, 95, 109, 0.4);
  transition: all 0.3s ease;
}

.location-link i {
  font-size: 16px;
}

.location-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 95, 109, 0.55);
}

/* Mobile friendly */
@media (max-width: 480px) {
  .location-link {
    font-size: 13px;
    padding: 8px 12px;
  }
}
