.gallery-content {
  padding: 90px 20px;
  text-align: center;

  background:
    radial-gradient(circle at 50% 20%, rgba(255,215,0,0.06), transparent 50%),
    linear-gradient(180deg, #050505, #0a0507);
}

.gallery-content-container {
  max-width: 800px;
  margin: auto;
}

.gallery-content h2 {
  font-size: 30px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-content p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* SECTION */
.gallery-pro {
  padding: 110px 20px;

  background:
    radial-gradient(circle at 30% 20%, rgba(255,215,0,0.08), transparent 40%),
    linear-gradient(180deg, #050505, #000);
}

/* GRID */
.gallery-pro-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.gallery-pro-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */
.gallery-pro-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;

  padding: 4px 10px;
  font-size: 10px;
  border-radius: 20px;
}

.vip { background: gold; color: #000; }
.new { background: crimson; color: #fff; }
.verified { background: #00c853; color: #fff; }
.premium { background: #8e24aa; color: #fff; }

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding: 15px;

  background: linear-gradient(transparent, rgba(0,0,0,0.85));

  opacity: 0;
  transition: 0.4s;
}

/* TEXT */
.overlay h3 {
  color: #fff;
  margin-bottom: 8px;
}

/* BUTTON */
.overlay .btn {
  font-size: 12px;
  padding: 6px 14px;
}

/* HOVER */
.gallery-pro-card:hover img {
  transform: scale(1.08);
}

.gallery-pro-card:hover .overlay {
  opacity: 1;
}

@media(max-width:768px){

  .gallery-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-pro-card img {
    height: 220px;
  }

}
/* ===== GALLERY CTA SECTION ===== */
.gallery-cta {
  padding: 100px 20px;
  text-align: center;

  background:
    radial-gradient(circle at 50% 40%, rgba(255,215,0,0.12), transparent 60%),
    linear-gradient(180deg, #050505, #000);
}

/* HEADING */
.gallery-cta h2 {
  font-size: 34px;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.gallery-cta p {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTONS WRAPPER */
.gallery-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* BUTTON BASE */
.gallery-cta .cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 45px;
  padding: 0 28px;

  border-radius: 30px;
  font-size: 14px;

  text-decoration: none;
  transition: 0.3s;
}

/* GOLD BUTTON */
.btn.gold {
  background: linear-gradient(145deg, #ffd700, #ffb700);
  color: #000;
}

/* OUTLINE BUTTON */
.btn.outline {
  border: 1px solid gold;
  color: #fff;
}

/* HOVER */
.btn.gold:hover {
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.btn.outline:hover {
  background: gold;
  color: #000;
}
@media(max-width:768px){

  .gallery-cta {
    padding: 70px 15px;
  }

  .gallery-cta h2 {
    font-size: 26px;
  }

  .gallery-cta p {
    font-size: 14px;
  }

  /* BUTTON STACK */
   .gallery-cta .cta-buttons {
    flex-direction: column;
    align-items: center; /* 🔥 center align */
    gap: 10px;
  }

  .gallery-cta .cta-buttons a {
     width: 80%;   /* ❌ 100% hatao */
    max-width: 260px; /* 🔥 premium control */
    height: 42px;
    font-size: 13px;
  }

}
@media(max-width:768px){

  .location-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-card {
    padding: 25px;
  }

}