@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* =============================================
   THEME COLORS
   #851544  – Deep Rose (primary brand)
   #f5e4cf  – Warm Cream (backgrounds / light)
   #c59a5b  – Golden Tan (accent / highlight)
   ============================================= */

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* ──────────────── NAVBAR ──────────────── */
.navbar {
  position: sticky;
  top: 0;
  background-color: #ffff;
  box-shadow: 0 0 10px rgba(133, 21, 68, 0.3);
  z-index: 100;
  padding: 2px !important;
}

.navbar-brand img {
  max-height: 45px;
}

@media (max-width: 1200px) {
  .navbar-brand img {
    max-height: 45px;
  }
  .navbar {
    padding: 0.2rem 0.2rem !important;
    text-align: center;
  }
}

.navbar-toggler {
  color: #851544 !important;
  font-size: 1.3rem;
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-size: 16px;
  color: #851544;
  font-weight: 500;
}

.nav-link:hover {
  color: #c59a5b;
}

/* ──────────────── POPUP FORM (20 sec) ──────────────── */
.premium-modal {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(8, 8, 8, 0.2);
  margin: 10px;
  background: #f5e4cf;
}

.premium-header {
  background: #f5e4cf;
  padding: 22px;
  position: relative;
  border-bottom: 1px solid rgba(197, 154, 91, 0.35);
}

.gold-line {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c59a5b, transparent);
  margin-bottom: 12px;
}

.badge-pill {
  display: inline-block;
  border: 1px solid rgba(197, 154, 91, 0.6);
  color: #851544;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
  background: #f5e4cf;
}

.premium-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #851544;
  line-height: 1.3;
  margin-bottom: 6px;
}

.premium-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(133, 21, 68, 0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.premium-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #f5e4cf;
  border: 1px solid rgba(197, 154, 91, 0.35);
  color: #851544;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-close:hover {
  background: rgba(197, 154, 91, 0.15);
}

.premium-body {
  padding: 18px 22px 22px;
  background: #f5e4cf;
}

.gold-accent-line {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c59a5b, transparent);
  margin-bottom: 16px;
}

.input-wrap {
  position: relative;
  margin-bottom: 10px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #c59a5b;
}

.fancy-input {
  border-radius: 9px !important;
  border: 1.5px solid rgba(197, 154, 91, 0.35) !important;
  padding: 11px 12px 11px 38px !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
  background: #fff !important;
  color: #851544 !important;
  box-shadow: none !important;
}

.fancy-input::placeholder {
  color: rgba(133, 21, 68, 0.4);
}

.fancy-input:focus {
  border-color: #c59a5b !important;
  box-shadow: 0 0 0 3px rgba(197, 154, 91, 0.15) !important;
}

.submit-btn {
  background: #851544 !important;
  color: #f5e4cf !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  padding: 13px !important;
  border-radius: 9px !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

.submit-btn:hover {
  background: #c59a5b !important;
  color: #f5e4cf !important;
}

.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .premium-header { padding: 18px; }
  .premium-title { font-size: 18px; }
  .premium-subtitle { font-size: 11px; }
  .premium-body { padding: 15px; }
  .fancy-input { font-size: 12px !important; padding: 10px 10px 10px 38px !important; }
  .submit-btn { font-size: 13px !important; padding: 11px !important; }
  .badge-pill { font-size: 8px; padding: 3px 10px; }
  .premium-close { width: 26px; height: 26px; font-size: 16px; }
}

/* ──────────────── COMMON POPUP FORM ──────────────── */
.modal-content.premium-modal {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(133, 21, 68, 0.2);
  background: #f5e4cf;
}

@media (max-width: 768px) {
  .modal-dialog { margin: 15px; }
  .premium-header { padding: 18px; }
  .premium-title { font-size: 18px; }
  .premium-subtitle { font-size: 11px; }
  .premium-body { padding: 15px; }
  .fancy-input { font-size: 12px !important; padding: 10px 10px 10px 38px !important; }
  .submit-btn { font-size: 13px !important; padding: 11px !important; }
  .badge-pill { font-size: 8px; padding: 3px 10px; }
  .premium-close { width: 26px; height: 26px; font-size: 16px; }
}

/* ──────────────── HOME / CAROUSEL ──────────────── */
#home {
  height: 91vh;
  overflow: hidden;
  position: relative;
}

.carousel-img {
  height: 91vh;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  from { transform: scale(1.1); }
  to   { transform: scale(1.2); }
}

.carousel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #f5e4cf;
  z-index: 2;
  max-width: 600px;
  padding-bottom: 110px;
}

.carousel-content h3 {
  font-size: 32px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.carousel-content h3 span {
  color: #d6b183;
}

.carousel-content .location {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.carousel-content .details {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

.carousel-content .price {
  font-size: 25px;
  font-weight: 500;
  color: #f5e4cf;
  margin-bottom: 25px;
  background: #851544;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

.carousel-content .price span {
  font-weight: 700;
  font-size: 30px;
  color: #ecc58a;
}

.carousel-content .highlights {
  list-style: none;
  padding: 0;
}

.carousel-content .highlights li {
  font-size: 22px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  font-weight: 500;
}

.carousel-content .highlights li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #c59a5b;
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-delay-1 { animation-delay: 0.4s; }
.fade-in-delay-2 { animation-delay: 0.8s; }
.fade-in-delay-3 { animation-delay: 1.2s; }
.fade-in-delay-4 { animation-delay: 1.6s; }
.fade-in-delay-5 { animation-delay: 2s; }

/* ──────────────── STATS BAR ──────────────── */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(26,18,8,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,150,62,0.3);
}

.hero-stats-inner {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.2rem 1rem;
  border-right: 1px solid rgba(197, 154, 91, 0.25);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #c59a5b;
  line-height: 1;
}

.stat-label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 228, 207, 0.7);
  margin-top: 4px;
}

@media (max-width: 768px) {
  #home { height: auto; }
  .carousel-overlay { display: none; }
  .carousel-control-next-icon,
  .carousel-control-prev-icon { display: none; }
  .carousel-img { height: 300px; animation: none; }
  .carousel-content {
    position: static;
    transform: none;
    max-width: 100%;
    background: #000;
    padding: 20px 15px;
    text-align: center;
  }
  .carousel-content h1 { font-size: 25px; margin-bottom: 10px; margin-top: 20px; }
  .carousel-content .location { font-size: 16px; margin-bottom: 8px; }
  .carousel-content .details { font-size: 20px; margin-bottom: 12px; }
  .carousel-content .price { font-size: 14px; margin-bottom: 15px; padding: 8px 10px; }
  .carousel-content .price span { font-size: 20px; }
  .carousel-content .highlights li { font-size: 14px; margin-bottom: 6px; }
  .hero-stats { position: static; }
  .hero-stats-inner { flex-wrap: wrap; }
  .stat-item { width: 50%; flex: none; }
}

/* ──────────────── OVERVIEW ──────────────── */
.luxury-overview {
  background: #f5e4cf;
  padding: 40px 20px;
  position: relative;
  border-top: 1px solid #c59a5b;
}

.overviewtitle-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.over-section-title {
  font-size: 30px;
  color: #851544;
  font-family: 'Cormorant Garamond', serif;
}

.over-section-title em {
  font-family: 'Great Vibes', cursive;
  color: #c59a5b;
  font-size: 1.2em;
  margin: 0 6px;
  display: inline-block;
  transform: translateY(-2px);
}

.over-section-label {
  text-align: left;
  color: #851544;
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.underline {
  width: 80px;
  height: 4px;
  background: #c59a5b;
  margin-top: 8px;
}

.overview-intro,
.overview-detail {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: #4a2a1a;
  margin-bottom: 20px;
}

.over-image-side { position: relative; }

.over-image-wrapper {
  position: relative;
  display: inline-block;
}

.over-image-wrapper img {
  border-radius: 12px;
  max-width: 100%;
  z-index: 2;
  position: relative;
  box-shadow: 0 20px 40px rgba(133, 21, 68, 0.15);
  border: 1px solid #c59a5b;
}

.over-gold-frame {
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 8px solid #c59a5b;
  border-radius: 12px;
  z-index: 1;
}

@media (max-width: 992px) {
  .luxury-overview { padding: 10px 1px; }
  .over-title { font-size: 38px; text-align: center; }
  .overviewtitle-wrapper { text-align: center; margin-bottom: 20px; }
  .underline { margin: 8px auto; }
  .overview-intro, .overview-detail { font-size: 15px; text-align: center; }
  .over-image-side { margin-top: 10px; text-align: center; }
  .over-image-wrapper img { max-width: 80%; }
  .over-gold-frame { display: none; }
}

@media (max-width: 768px) {
  .over-title { font-size: 32px; }
  .overview-intro, .overview-detail { font-size: 14px; line-height: 1.6; }
  .over-image-wrapper img { max-width: 90%; }
}

@media (max-width: 576px) {
  .over-title { font-size: 20px; }
  .over-section-label { text-align: center; font-size: 15px; }
  .overview-intro, .overview-detail { font-size: 13px; }
  .luxury-overview { padding: 20px 10px; }
}

/* ──────────────── PROJECT HIGHLIGHTS ──────────────── */
.highlights-strip {
  background: #f5e4cf;
  padding: 70px 20px;
}

.hs-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  color: rgba(133, 21, 68, 0.6);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 2.2rem;
  color: #851544;
  font-family: 'Cormorant Garamond', serif;
}

.title-of {
  font-family: 'Great Vibes', cursive;
  color: #c59a5b;
  font-size: 1.2em;
  margin: 0 6px;
  display: inline-block;
  transform: translateY(-2px);
}

.hs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(197, 154, 91, 0.15);
}

.hs-card {
  background: #fff8f2;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(197, 154, 91, 0.2);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #851544;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hs-card:hover {
  background: #fdeee0;
  border-color: rgba(197, 154, 91, 0.4);
}

.hs-card:hover::before { transform: scaleX(1); }

.hs-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.hs-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #851544;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hs-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(133, 21, 68, 0.55);
}

@media (max-width: 992px) { .hs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .hs-grid { grid-template-columns: repeat(1, 1fr); }
  .section-title { font-size: 1.6rem; }
}

/* ──────────────── AMENITIES ──────────────── */
#amenities {
  background: #f5e4cf;
  padding: 50px 20px;
}

.amenities-container {
  margin: auto;
  padding: 0 40px;
}

.amenities-header {
  text-align: left;
  margin-bottom: 2rem;
}

.amenity-section-title {
  font-size: 2.2rem;
  color: #851544;
  font-family: 'Cormorant Garamond', serif;
}

.amenity-section-title em {
  color: #c59a5b;
  font-family: 'Cormorant Garamond', serif;
}

.amenities-tabs {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(197, 154, 91, 0.35);
  width: fit-content;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.9rem 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(133, 21, 68, 0.55);
  background: transparent;
  border-right: 1px solid rgba(197, 154, 91, 0.25);
  cursor: pointer;
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
  background: #851544;
  color: #f5e4cf;
}

.amenities-panel { display: none; }
.amenities-panel.active { display: block; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.amenities-imgs { display: grid; grid-auto-flow: dense; gap: 0.75rem; }

.amenities-imgs img { width: 100%; height: 180px; object-fit: cover; display: block; }
.amenities-imgs img:first-child { grid-column: 1 / -1; height: 240px; }

.zone-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #851544;
}

.zone-desc {
  color: rgba(133, 21, 68, 0.6);
  margin-bottom: 1.5rem;
}

.zone-items { display: flex; flex-direction: column; gap: 0.75rem; }

.zone-item {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(197, 154, 91, 0.25);
  color: #4a2a1a;
  background: #fff8f2;
}

.amenity-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(197, 154, 91, 0.25);
  text-align: center;
}

.am-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #851544;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.am-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(133, 21, 68, 0.5);
}

@media (max-width: 1024px) {
  .amenities-container { padding: 0 20px; }
  .amenities-grid { gap: 2rem; }
  .amenity-section-title { font-size: 1.9rem; }
  .zone-title { font-size: 1.6rem; }
  .amenities-imgs img { height: 160px; }
  .amenities-imgs img:first-child { height: 200px; }
  .amenity-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .amenities-container { padding: 0 15px; }
  .amenities-header { text-align: center; }
  .amenity-section-title { font-size: 1.6rem; }
  .amenities-grid { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-imgs img { height: 180px; }
  .amenities-imgs img:first-child { height: 220px; }
  .zone-title { font-size: 1.4rem; }
  .zone-desc { font-size: 0.9rem; }
  .zone-item { font-size: 0.85rem; padding: 0.7rem; }
  .amenity-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding-top: 3rem; }
  .am-stat-num { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  #amenities { padding: 40px 10px; }
  .amenities-container { padding: 0 10px; }
  .amenity-section-title { font-size: 1.4rem; }
  .zone-title { font-size: 1.2rem; }
  .zone-desc { font-size: 0.8rem; }
  .zone-item { font-size: 0.8rem; padding: 0.65rem; }
  .amenity-stats { grid-template-columns: 1fr; gap: 1.2rem; }
  .am-stat-num { font-size: 2rem; }
  .am-stat-label { font-size: 0.6rem; }
}

@media (max-width: 768px) {
  .amenities-tabs { flex-wrap: wrap; margin-bottom: 10px; }
  .tab-btn {
    flex: 0 0 50%;
    width: 50%;
    text-align: center;
    padding: 0.8rem 0.6rem;
    font-size: 0.65rem;
    box-sizing: border-box;
    border-right: 1px solid rgba(197, 154, 91, 0.25);
    border-bottom: 1px solid rgba(197, 154, 91, 0.25);
  }
  .tab-btn:nth-child(2n) { border-right: none; }
  .tab-btn:nth-child(3), .tab-btn:nth-child(4) { border-bottom: none; }
}

/* ──────────────── CONFIGURATION ──────────────── */
.config-section {
  position: relative;
  background: url('images/westgate5.webp') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  overflow-x: hidden;
  border-top: 1px solid #c59a5b;
}

.config-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.config-title,
.config-container { position: relative; z-index: 2; }

.config-title {
  color: #f5e4cf;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 1px;
}

.config-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-bottom: 15px;
}

.config-card {
  min-width: 260px;
  padding: 30px 20px;
  background: rgba(245, 228, 207, 0.12);
  border-radius: 18px;
  border: 1px solid rgba(245, 228, 207, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.config-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(45deg, #c59a5b, #f5e4cf);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.config-card:hover { transform: translateY(-8px) scale(1.02); }

.config-type { font-size: 24px; color: #f5e4cf; margin-bottom: 10px; }

.config-area { font-size: 16px; color: rgba(245, 228, 207, 0.8); margin-bottom: 20px; }

.config-area span { color: #c59a5b; font-weight: bold; }

.config-btn {
  background: linear-gradient(45deg, #c59a5b, #f5e4cf);
  border: none;
  color: #851544;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.config-btn:hover {
  background: linear-gradient(45deg, #f5e4cf, #c59a5b);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .config-section { padding: 20px 10px; }
  .config-container { flex-direction: column; align-items: center; }
  .config-title { font-size: 20px; margin-bottom: 20px; }
  .config-card { min-width: 220px; padding: 24px; }
  .config-type { font-size: 20px; }
}

@media (max-width: 480px) {
  .config-section { padding: 20px 10px; }
  .config-container { flex-direction: column; align-items: center; }
  .config-card { min-width: 190px; padding: 18px; }
  .config-btn { font-size: 14px; padding: 10px 20px; }
}

/*------------------Plans Section-----------------*/
.project-plans{
  padding: 60px 20px;
  background:#f6efe6;
  border-top: 1px solid #7c5a25;
}

.plans-title h2{
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Cinzel", serif !important;
  font-weight: 500;
  letter-spacing: 1px;
  color: #851544;
}

.plans-wrapper{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.plan-item{
  text-align:center;
}

.plan-item img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: blur(2px);
  border-radius: 6px;
  border: 1px solid #b48a4a;
}

.plan-item h3{
  margin-top:12px;
  font-size:16px;
  color:#333;
}

.plan-item button{
  margin-top: 6px;
  padding: 7px 18px;
  border: none;
  background:#b48a4a;
  color:white;
  font-size: 14px;
  cursor: pointer;
}

@media(max-width:768px){
  .project-plans {
    padding: 20px 10px;
  }

  .plans-title {
    margin-bottom: 20px;
  }

  .plans-title h1 {
    font-size: 28px;
  }

  .plan-item h3 {
    margin-top: 8px;
    font-size: 14px;
  }

  .plan-item button {
    margin-top: 2px;
    padding: 4px 8px;
    font-size: 12px;
  }

  .plans-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap: 20px;
  }

  .plan-item img{
    height:130px;
  }

}


/* ──────────────── GALLERY ──────────────── */
.project-gallery {
  background: #f5e4cf;
  padding: 60px 20px;
  font-family: "Cinzel", serif;
  text-align: center;
}

.gallery-title {
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #851544;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.gallery-item { overflow: hidden; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border: 1px solid #c59a5b;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { box-shadow: 0 15px 30px rgba(133, 21, 68, 0.2); }

.gallery-item.large:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item.large:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }

@media (max-width: 992px) {
  .project-gallery { padding: 30px 10px; }
  .gallery-title { font-size: 22px; margin-bottom: 30px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 576px) {
  .project-gallery { padding: 30px 10px; }
  .gallery-title { font-size: 22px; margin-bottom: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
}

/* ──────────────── LOCATION ──────────────── */
.location-section {
  padding: 50px 20px;
  background: url('images/westgate7.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #f5e4cf;
  border-top: 1px solid #c59a5b;
}

.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.location-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #c59a5b;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.location-map { flex: 1.2; min-width: 400px; }

.location-info { flex: 1; display: flex; gap: 30px; align-items: center; }

.location-tabs {
  list-style: none;
  padding: 0; margin: 0;
  border-right: 2px solid rgba(245, 228, 207, 0.25);
  flex-shrink: 0;
  width: 220px;
}

.location-tabs li {
  padding: 14px 10px;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 600;
  cursor: pointer;
  color: rgba(245, 228, 207, 0.7);
  position: relative;
  transition: all 0.3s;
  border-bottom: 2px solid rgba(245, 228, 207, 0.12);
}

.location-tabs li.active { color: #c59a5b; }

.location-tabs li.active::before {
  content: "";
  position: absolute;
  left: -6px; top: 0;
  width: 3px; height: 100%;
  background: #c59a5b;
}

.location-content { flex: 1; display: flex; justify-content: center; }

.tab-content { display: none; text-align: left; }
.tab-content.active { display: block; }
.tab-content ul { list-style: disc; padding-left: 20px; margin: 0; }
.tab-content li { margin-bottom: 8px; color: #f5e4cf; font-size: 15px; }

@media (max-width: 992px) {
  .location-container { flex-direction: column; gap: 20px; }
  .location-map { min-width: auto; width: 100%; }
  .location-info { flex-direction: column; align-items: flex-start; width: 100%; }
  .location-tabs {
    display: flex; overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(245, 228, 207, 0.25);
    width: 100%; padding-bottom: 10px; margin-bottom: 15px;
  }
  .location-tabs li { border-bottom: none; border-right: 1px solid rgba(245, 228, 207, 0.12); white-space: nowrap; flex-shrink: 0; }
  .location-content { width: 100%; padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 576px) {
  .location-section { padding: 30px 10px; }
  .location-heading { font-size: 20px; margin-bottom: 20px; }
  .location-tabs li { font-size: 14px; padding: 10px 8px; }
  .tab-content li { font-size: 14px; }
  .location-map iframe { height: 300px; }
}

/* ──────────────── CONTACT ──────────────── */
.contact-us {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  font-family: "Cinzel", serif;
  background: url('images/westgate1.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-top: 1px solid #c59a5b;
  padding: 50px 20px;
}

.contact-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.contact-wrapper { display: flex; width: 100%; z-index: 2; position: relative; }

.contact-left {
  flex: 1;
  background: url('images/westgate2.webp') no-repeat center center;
  background-size: cover;
  padding: 60px 40px;
}

.contact-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f5e4cf;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #c59a5b;
}

.contact-form { display: flex; flex-direction: column; }

.contact-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid rgba(197, 154, 91, 0.4);
  border-radius: 6px;
  background: rgba(245, 228, 207, 0.15);
  color: #f5e4cf;
}

.contact-form input::placeholder { color: rgba(245, 228, 207, 0.6); }

.contact-form button {
  width: 100%;
  background: #851544;
  color: #f5e4cf;
  padding: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-form button:hover { background: #851544; }

.site-address {
  margin-top: 30px;
  font-size: 16px;
  color: #f5e4cf;
  line-height: 1.6;
}

.site-address h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c59a5b;
}

.cntphone { margin-top: 10px; font-weight: 600; color: #f5e4cf; }

@media (max-width: 992px) {
  .contact-wrapper { flex-direction: column; }
  .contact-left { height: 300px; min-height: 200px; background-position: center; padding: 0; }
  .contact-right { padding: 30px 20px; text-align: center; }
  .contact-subtitle { font-size: 16px; margin-bottom: 6px; }
  .contact-title { font-size: 26px; margin-bottom: 20px; }
  .contact-form input { font-size: 14px; padding: 12px; }
  .contact-form button { font-size: 14px; padding: 12px; }
  .site-address { margin-top: 25px; font-size: 14px; }
  .site-address h3 { font-size: 16px; }
}

@media (max-width: 576px) {
  .contact-us { background-position: center; background-size: cover; padding: 0; }
  .contact-left { height: 280px; min-height: 200px; }
  .contact-right { padding: 20px 15px; }
  .contact-subtitle { font-size: 14px; }
  .contact-title { font-size: 22px; }
  .contact-form input, .contact-form button { font-size: 13px; padding: 10px; }
  .site-address { font-size: 13px; margin-top: 20px; }
  .site-address h3 { font-size: 15px; }
}

/* ──────────────── FOOTER ──────────────── */
.project-footer {
  background: #851544;
  padding: 30px 20px;
  color: #f5e4cf;
  border-top: 1px solid #c59a5b;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rera-info { display: flex; align-items: center; text-align: left; }

.rera-img { width: 80px; height: auto; margin-right: 15px; }

.rera-details p { margin: 4px 0; font-size: 14px; color: rgba(245, 228, 207, 0.85); }

.rera-details a { color: #c59a5b; text-decoration: none; font-weight: 600; }
.rera-details a:hover { text-decoration: underline; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(197, 154, 91, 0.3);
  padding-top: 15px;
}

.disclaimer { font-size: 14px; color: rgba(245, 228, 207, 0.75); margin-bottom: 10px; line-height: 1.6; }

.privacy { font-size: 14px; color: #c59a5b; text-decoration: none; font-weight: 600; }
.privacy:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; text-align: center; }
  .rera-info { flex-direction: column; align-items: center; }
  .rera-img { margin: 0 0 10px 0; }
  .rera-details p { font-size: 13px; }
  .rera-details a { word-break: break-word; }
  .footer-bottom { padding-top: 20px; margin-bottom: 40px; }
  .disclaimer { font-size: 13px; line-height: 1.5; }
  .privacy { font-size: 13px; }
}

/* ──────────────── WHATSAPP / CALL ICONS ──────────────── */
#desktop-view {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 9999;
}

.icn {
  margin: 15px;
  width: 50px; height: 50px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite;
}

@keyframes zoomIcons {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.icn:hover { animation-play-state: paused; }

@keyframes gradient {
  0%   { background-position: 0 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@media (max-width: 768px) { .icn { width: 20px; height: 20px; } }
@media (max-width: 991px) { #desktop-view { display: none; } }

/* ──────────────── MOBILE ACTION BAR ──────────────── */
.mob-action {
  display: block;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background-color: #851544;
  box-shadow: 0 1px 6px 2px rgba(133, 21, 68, 0.5);
  z-index: 1030;
}

.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}

.mobile-view { display: none; }

@media (max-width: 991px) { .mobile-view { display: block; } }