* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background-color: #f4f6f8;
  color: #333;
}

/* HEADER */
header {
  background-color: #0f3d2e;
  color: white;
  text-align: center;
  padding: 24px 16px;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

header p {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}

/* ABOUT */
#about {
  background: #ffffff;
  padding: 50px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

#about h2 {
  text-align: center;
  color: #0f3d2e;
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.about-box {
  background: #f4f6f8;
  border-radius: 10px;
  padding: 20px;
}

/* PROPERTY GRID */
#property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  padding: 20px;
}

/* CARD */
.property-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

/* THUMBNAIL */
.thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 26px;
  padding: 10px 14px;
  border-radius: 50%;
}

/* CONTENT */
.property-content {
  padding: 14px;
  font-size: 14px;
}

.property-content h2 {
  font-size: 16px;
  margin: 0 0 6px;
}

.location {
  font-size: 12px;
  color: #666;
}

.price {
  font-size: 15px;
  font-weight: bold;
  color: #0f3d2e;
}

/* WHATSAPP */
.whatsapp-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background-color: #25D366;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  flex-wrap: wrap;
}

.pagination button {
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: #ddd;
  cursor: pointer;
}

.pagination button.active {
  background: #0f3d2e;
  color: white;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #eaeaea;
  text-align: center;
  padding: 16px;
  font-size: 13px;
}
