.project-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
    url("../img/ongoing/4.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.project-hero-content {
  color: #fff;
  width: 100%;
}

.project-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-hero .location-tag {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-hero .rera-tag {
  display: inline-block;
  background: var(--color-primary);
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

.quick-stats {
  background: var(--color-primary);
  padding: 30px 0;
  color: #fff;
}

.quick-stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-stat-item:last-child {
  border-right: none;
}

.quick-stat-item i {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--color-terracotta);
}

.quick-stat-item h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.quick-stat-item p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
}

.section-title-center {
  text-align: center;
}

.section-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.overview-section {
  padding: 80px 0;
  background: var(--color-section-muted);
}

.overview-content h3 {
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.overview-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-feature i {
  color: var(--color-primary);
  font-size: 18px;
}

/* Floor Plans Section */
.floor-plans-section {
  padding: 80px 0;
}

.floor-plan-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.floor-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floor-plan-image {
  height: 250px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.floor-plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-plan-image .placeholder {
  text-align: center;
  color: #999;
}

.floor-plan-image .placeholder i {
  font-size: 60px;
  margin-bottom: 10px;
}

.floor-plan-info {
  padding: 25px;
}

.floor-plan-info h4 {
  color: #333;
  font-size: 22px;
  margin-bottom: 10px;
}

.floor-plan-info .bhk-type {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.floor-plan-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.floor-plan-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.floor-plan-detail i {
  color: var(--color-primary);
}

.floor-plan-price {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Amenities Section */
.amenities-section {
  padding: 80px 0;
  background: var(--color-section-muted);
}

.amenity-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.amenity-card i {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.amenity-card h5 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 30px;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: var(--color-section-muted);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-map {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details h4 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.location-details ul {
  list-style: none;
  padding: 0;
}

.location-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

.location-details ul li i {
  color: var(--color-primary);
  font-size: 20px;
  margin-top: 3px;
}

.location-details ul li strong {
  color: #333;
}

/* Site Visit Form */
.booking-section {
  padding: 80px 0;
}

.booking-form-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.booking-form-header {
  background: var(--color-primary);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.booking-form-header h3 {
  margin: 0;
  font-size: 28px;
}

.booking-form-header p {
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.booking-form-body {
  padding: 40px;
}

.booking-form .form-group {
  margin-bottom: 25px;
}

.booking-form label {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.booking-form label.required::after {
  content: " *";
  color: #dc3545;
}

.booking-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.booking-form select.form-control {
  cursor: pointer;
}

.booking-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-book-site-visit {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-book-site-visit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.success-message i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

/* Download Brochure Section */
.download-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: #fff;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.download-text h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.download-text p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.btn-download-brochure {
  background: #fff;
  color: var(--color-primary);
  border: none;
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-download-brochure:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Price Section */
.price-section {
  padding: 80px 0;
  background: var(--color-section-muted);
}

.price-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--color-section-muted);
}

/* Responsive */
@media (max-width: 991px) {
  .project-hero h1 {
    font-size: 40px;
  }

  .quick-stat-item {
    border-right: none;
    margin-bottom: 20px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .download-content {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .project-hero {
    height: 60vh;
    min-height: 400px;
  }

  .project-hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .floor-plan-details {
    grid-template-columns: 1fr;
  }
}
