body {
  padding-top: 70px;
  font-family: 'Poppins', sans-serif;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HERO */
.hero-section {
  position: relative;
  height: 95vh;
  background: url("images/pic-2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

/* TRUST BAR */
.trust-bar h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

/* PROJECT CARDS */
.project-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}

.project-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ENQUIRY */
#enquiry input, 
#enquiry select {
  height: 50px;
}

/* WHATSAPP FLOATING CTA */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* GALLERY */
.gallery-img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.03);
}

/* CITY CARDS */
.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.city-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.city-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.city-content a {
  color: #ffc107;
  font-weight: 600;
  text-decoration: none;
}

.modal-content {
  border-radius: 16px;
}

.modal-title {
  font-size: 20px;
}

.modal-body input,
.modal-body select {
  height: 48px;
}


/* MOBILE STICKY CTA */
@media (max-width: 768px) {
  .sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    padding: 10px;
    z-index: 999;
    display: flex;
    justify-content: space-around;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
}
