.banner-container {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
}
.banner-container img {
  width: 100%;
  max-width: 1600px; /* optional: to avoid too large on desktops */
  height: auto;
  border-radius: 8px; /* optional: smooth corners */
}
@media (max-width: 768px) {
  .banner-container img {
    width: 95%; /* slightly bigger on mobile */
  }
}

.amenities-section {
  width: 100%;
  padding: 50px 20px;
  text-align: center;
  /* Blue + Gold gradient background */
}

.amenities-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0f0f0f; /* Ensure heading shows on gradient */
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.amenity-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

.amenity-item span {
  font-size: 16px;
  color: #050505; /* white text for visibility */
}

.amenity-item:hover {
  transform: translateY(-5px);
}

/* Tablet view */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

/*price*/
.price-section {
  width: 100%;
  background: var(--theme-bg); /* Blue to Gold gradient */
  padding: 50px 0;
}

.price-container {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-header h2 {
  font-size: 24px;
  color: #111111;
  font-weight: bold;
  text-align: center;
}

.price-header img {
  height: 60px;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-table {
  flex: 2;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #f9f9f9;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  font-size: 16px;
}

table th {
  background: var(--btn-bg);
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--btn-hover);
  color: #000;
}

.price-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center;
}

.price-image img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.btn-cost {
  background: var(--btn-bg2);
  color: #fff;
  padding: 12px 20px;
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 0; /* 🔹 Added spacing below image */
}

.btn-cost:hover {
  background: var(--btn-hover);
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .price-grid {
    flex-direction: column;
  }
}

/* floor plan*/

/* Section Background */
.floor-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--btn-bg),
    #756508
  ); /* Blue to Gold gradient */
  padding: 50px 0;
  padding: 50px 0;
  color: #fff;
}

.floor-container {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.floor-container h2 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
  color: white;
}

/* Grid Layout */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Floor Item */
.floor-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.floor-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  filter: blur(4px); /* 🔹 Blur effect */
  transition: filter 0.3s ease;
}

/* Button Centered */
.floor-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 20px;
  background: var(--btn-bg);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.floor-item a:hover {
  background: var(--btn-hover);
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floor-container h2 {
    font-size: 22px;
  }
}

/*heighlight*/
.highlights {
  padding: 60px 20px;
  background: #fff;
}

.highlights .container {
  max-width: 1200px;
  margin: auto;
}

.highlight-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.highlight-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-content {
  flex: 1;
  min-width: 300px;
}

.highlight-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.highlight-content ul {
  list-style: none;
  padding: 0;
}

.highlight-content ul li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #444;
}

.highlight-content ul li::before {
  content: "✔";
  color: #7b3ff2; /* Accent color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/*video*/
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  background: url("/images/slider/1.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

.video-center {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 900px; /* limit video size */
  aspect-ratio: 16/9; /* keep aspect ratio */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
}

.video-center iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Map Section */

/* Section Background */
.project-location {
  width: 100%;
  background: #f5f5f5; /* Light grey */
  padding: 60px 0;
}

/* Content Container */
.project-location .container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.project-location h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* Paragraph */
.project-location p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

/* Map */
.map-container {
  width: 100%;
  margin-bottom: 40px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

/* Info Box */
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
  font-size: 32px;
  color: #2a7ae2;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

/* Custom CSS MOBIL */
@media (max-width: 768px) {
  .icon-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .schedule-btn-mobile {
    width: 100%;
  }
}
.price-grid {
  overflow-x: auto;
}

.ripple-surface .ripple-wave {
  display: inline-block !important;
  position: absolute !important;
}
/* .swiper-inner {
  background: url(/images/slider/1.webp) 0% 0% / cover no-repeat;
} */
/* Mobile adjustment */
@media (max-width: 768px) {
  .swiper-inner {
    background: url("/images/slider/1.webp") center center / cover no-repeat !important;
  }
}
/* Overlay only on mobile */
@media (max-width: 767px) {
  .slider-title-block {
    position: relative;
  }
  .mobile-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    z-index: 1;
  }
  .slider-title-block > h1,
  .slider-title-block > ul {
    position: relative;
    z-index: 2;
  }
}
