.floor-plan {
  padding: 40px 15px;
  background: #f9f9f9; /* soft background */
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.floor-plan h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e1503; /* brand color */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.floor-plan .floor {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floor-plan .floor:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.floor-plan .floor h3 {
  font-size: 1.5rem;
  color: #65350f;
  margin-bottom: 12px;
  font-weight: 500;
}

.floor-plan .floor img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tenants {
  padding: 50px 20px;
  margin: 30px;
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: #f5f6fa;
  font-family: "Roboto", sans-serif;
}

.tenants h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2e1503; /* brand color */
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.floor-tenants {
  margin-bottom: 40px;
}

.floor-tenants h3 {
  font-size: 1.6rem;
  color: #65350f;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #004aad;
  display: inline-block;
  padding-bottom: 5px;
}

.tenant-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.tenant-list li {
  font-size: 1rem;
  color: #333;
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
}

.tenant-list li::before {
  content: "•"; /* bullet */
  color: #004aad; /* brand color bullet */
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}


/* ===== Floor Plan & Tenants Media Queries ===== */
@media screen and (max-width: 992px) {
  .floor-plan {
    padding: 30px 15px;
  }

  .floor-plan h2 {
    font-size: 1.3rem;
  }

  .floor-plan .floor h3 {
    font-size: 1.0rem;
  }

  .floor-plan .floor img {
    max-width: 100%;
    height: auto;
  }

  .tenants h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .floor-tenants h3 {
    font-size: 1.0rem;
  }

  .tenant-list li {
    font-size: 0.95rem;
    padding-left: 20px;
  }
}

@media screen and (max-width: 576px) {
  .floor-plan {
    padding: 20px 10px;
  }

  .floor-plan h2 {
    font-size: 1.6rem;
  }

  .floor-plan .floor h3 {
    font-size: 1.2rem;
  }

  .tenants h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .floor-tenants h3 {
    font-size: 1.3rem;
  }

  .tenant-list li {
    font-size: 0.9rem;
    padding-left: 18px;
  }
}
