/* Luxury Villas 230m Page Styles */
.site-header {
  position: relative;
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
}
.luxury-villas-230m-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.back-button:hover {
  background-color: #f0f0f0;
}
.project-hero {
  position: relative;
  height: 50vh;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Luxury-Villas-230m/house-front.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.project-hero img { display: none; }
.hero-text { max-width: 100%; width: 100%; padding: 2rem; text-align: center; }
.hero-text h2 { font-size: 3rem; margin-bottom: 1rem; }
.project-details { display: flex; flex-direction: column; gap: 3rem; padding: 3rem 2rem; width: 100%; max-width: 100%; margin: 0 auto; }
.project-info { display: flex; flex-direction: column; gap: 2rem; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.project-overview {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.project-overview ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.project-overview ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.05rem;
  color: #333;
}
.project-overview ul li:before {
  content: "✓";
  color: #34abeb;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  top: 0;
}
@media (max-width: 900px) {
  .project-overview ul {
    grid-template-columns: 1fr;
  }
}
.features { width: 100%; max-width: 1000px; margin: 0 auto 1rem; background: #f8f9fa; padding: 2rem; border-radius: 8px; }
.features h4 { color: #34abeb; margin-bottom: 1rem; text-align: center; font-size: 1.3rem; border-bottom: 2px solid #34abeb; padding-bottom: 0.5rem; }
.features ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; width: 100%; }
.features li { margin: 0; padding: 0.5rem 1.5rem 0.5rem 2.5rem; position: relative; background: white; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: transform 0.2s ease; display: flex; align-items: center; min-height: 36px; }
.features li:before { content: "✓"; color: #34abeb; position: absolute; left: 1rem; font-size: 1.1rem; }
.features li:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
@media (max-width: 768px) { .features ul { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.project-gallery-grid { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 2rem; }
.gallery { display: flex; flex-direction: column; gap: 3rem; width: 100%; max-width: 1400px; margin: 0 auto; }
.gallery-category { margin-bottom: 2rem; width: 100%; }
.gallery-category h3 { font-size: 1.5rem; color: #333; margin-bottom: 1rem; padding-left: 1rem; border-left: 4px solid #34abeb; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; padding: 1rem; width: 100%; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item p { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: white; padding: 0.5rem; font-size: 0.9rem; text-align: center; margin: 0; }
@media (max-width: 768px) { .project-info { grid-template-columns: 1fr; padding: 0 1rem; } .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.fab { position: fixed; bottom: 2rem; right: 2rem; background-color: #25d366; color: white; width: 160px; height: 50px; border-radius: 25px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); cursor: pointer; z-index: 1000; border: none; font-size: 1rem; transition: transform 0.2s; }
.fab:hover { transform: scale(1.05); }
.booking-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1001; align-items: center; justify-content: center; }
.booking-modal.active { display: flex; }
.booking-form { background: white; padding: 2rem; border-radius: 8px; width: 90%; max-width: 500px; position: relative; }
.close-btn { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 24px; cursor: pointer; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group select { width: 100%; padding: 0.5rem; border: 1px solid #ddd; border-radius: 4px; }
.form-group button { background-color: #25d366; color: white; border: none; padding: 0.75rem 1.5rem; border-radius: 4px; cursor: pointer; width: 100%; margin-top: 1rem; }
.site-footer { background: #f8f9fa; padding: 2rem 0; text-align: center; position: relative; overflow: hidden; }
.footer-flex { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-facebook-link { display: inline-block; width: 28px; height: 28px; transition: transform 0.2s; }
.footer-facebook-link:hover { transform: scale(1.1); }
.footer-copyright { margin: 0; font-size: 0.875rem; color: #666; }
