.banner-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND */
.banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('images/slider/bannerdanube.png') center/cover no-repeat;
  z-index: 1;
}

/* OVERLAY */
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* CARD */
.banner-card {
  position: relative;
  z-index: 3;
  max-width: 700px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

/* TEXT */
.banner-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 20px;
}

/* BUTTON */
.banner-btn {
  display: inline-block;
  padding: 12px 40px; /* default (desktop) */
  background: #488c64;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 20px;
  text-align: center;
}

/* 🔷 Large screens (1200px+) */
@media (min-width: 1200px) {
  .banner-btn {
    padding: 12px 80px;
    font-size: 20px;
  }
}

/* 🔷 Tablets (768px - 1199px) */
@media (max-width: 1199px) {
  .banner-btn {
    padding: 12px 60px;
    font-size: 18px;
  }
}

/* 🔷 Mobile (max 767px) */
@media (max-width: 767px) {
  .banner-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

/* 🔷 Small Mobile (max 480px) */
@media (max-width: 480px) {
  .banner-btn {
    font-size: 15px;
    padding: 12px;
  }
}

/* PRICE BOX */
.banner-prices {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.price-box {
  flex: 1;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.price-box:last-child {
  border-right: none;
}

.price-box .type {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.price-box .bhk {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
  color: #fff;
}

.price-box .price {
  font-size: 24px;
  color: #ffffff;
  font-weight: 800;
}



@media (max-width: 768px) {

  /* Banner spacing fix */
  .banner-section {
    min-height: auto;
    padding: 150px 15px;
  }

  .banner-card {
    padding: 25px 15px;
  }

  .banner-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .banner-subtitle {
    font-size: 17px !important;
  }

  /* BUTTON */
  .banner-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  /* 🔥 MAIN FIX (IMPORTANT) */
  .banner-prices {
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
  }

  /* PRICE ITEMS */
  .price-box {
    border: none;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background: transparent;
  }

  .price-box:last-child {
    border-bottom: none;
  }

  /* TEXT */
  .price-box .bhk {
    font-size: 18px;
  }

  .price-box .price {
    font-size: 16px;
  }
}