/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  color: #222;
}

.site-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* HEADER */
.project-header {
  text-align: center;
  margin-bottom: 40px;
}
.project-header h1 {
  font-size: 34px;
  color: #d4af37;
}
.project-header p {
  color: #555;
  font-size: 16px;
}

/* QUICK SUMMARY */
.quick-summary h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 15px;
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.summary-table th {
  background: #d4af37;
  color: #000;
  padding: 12px;
  width: 35%;
}
.summary-table td {
  padding: 12px;
  border: 1px solid #eee;
}

/* SLIDER */
.slider-wrapper {
  max-width: 900px;
  margin: 40px auto;
}
.slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.slider img {
  width: 100%;
  display: none;
}
.slider img.active {
  display: block;
}
.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
}
.slider .prev { left: 10px; }
.slider .next { right: 10px; }

/* EMI */
.emi-box {
  max-width: 420px;
  margin: 50px auto;
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.emi-box h3 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 15px;
}
.emi-box input,
.emi-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}
.emi-box button {
  background: #d4af37;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* CONTENT */
.project-section {
  margin-top: 50px;
}
.project-section h2 {
  color: #d4af37;
  margin-bottom: 12px;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 5px;
}
.project-section p,
.project-section ul {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* MAP */
.map-section {
  margin-top: 60px;
  text-align: center;
}
.map-box {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .project-header h1 {
    font-size: 26px;
  }
}
