/* ========================= HERO SECTION ========================= */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b0b0b;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  transform: scale(1.1);
  transition: transform 8s ease-in-out;
}
.hero-section:hover .hero-bg { transform: scale(1.2); }

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(15, 10, 5, 0.8), rgba(20, 20, 20, 0.2));
  z-index: 1;
}

/* ===== Center Hero Text Card ===== */
.hero-container {
  position: relative;
  z-index: 2;
  width: 90%; 
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  flex: none;
  color: #fff;
  font-family: 'Roboto', sans-serif; /* body/subheading text */
  text-align: center;
}

.hero-text-card {
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  max-width: 600px;
  width: 100%;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif; /* heading */
  font-size: 48px; font-weight: 800; line-height: 1.2;
  margin-bottom: 25px; color: #fff;
}
.hero-text h1 span { color: #B88F44; }

.hero-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #e4e4e4;
  text-align: center;
  margin: 0 auto 40px auto;   /* Fully centered */
  width: 100%;                /* takes full width */
  max-width: 500px;           /* optional: control width */
  line-height: 1.8;
}

.hero-btn {
  display: inline-block; background: #B88F44; color: #fff;
  padding: 16px 40px; border-radius: 8px; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(184, 143, 68, 0.4);
  font-family: 'Roboto', sans-serif;
}
.hero-btn:hover {
  background: #1F1709; transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(184, 143, 68, 0.6);
}

/* Animations */
.animate-slide { animation: slideIn 1.2s ease forwards; }
.animate-fade { animation: fadeIn 2s ease forwards; }
.animate-up { animation: slideUp 1.8s ease forwards; }

@keyframes slideIn { from{opacity:0;transform:translateX(-60px);} to{opacity:1;transform:translateX(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes slideUp { from{opacity:0;transform:translateY(50px);} to{opacity:1;transform:translateY(0);} }

@media (max-width: 992px) {
  .hero-container { flex-direction: column; }
  .hero-text h1 { font-size: 46px; }
  .hero-text-card { padding: 30px; }
}
@media (max-width: 576px) {
  .hero-text h1 { font-size: 34px; }
  .hero-btn { padding: 14px 30px; font-size: 15px; }
  .hero-text-card { padding: 25px; }
}

/* ========================= ABOUT SECTION ========================= */
.about-section { background-color: #fff; padding: 100px 0; }
.about-container {
  width: 90%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 80px;
}
.about-left img {
  width: 105%; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.about-right h2 {
  font-family: 'Poppins', sans-serif; /* heading */
  font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 25px; 
}
.about-right p {
  font-family: 'Roboto', sans-serif; /* body text */
  font-size: 18px; line-height: 1.8; color: #555; margin-bottom: 20px;
}
.about-btn {
  display: inline-block; margin-top: 15px; background-color: #1F1709; color: #fff; font-size: 16px;
  padding: 14px 36px; border-radius: 6px; text-decoration: none; font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(184, 143, 68, 0.4);
  font-family: 'Roboto', sans-serif;
}
.about-btn:hover { background-color: #B88F44; transform: translateY(-2px); }

@media (max-width: 992px) {
  .about-container { flex-direction: column; text-align: center; gap: 50px; }
  .about-right h2 { font-size: 36px; }
}
@media (max-width: 576px) {
  .about-section { padding: 60px 20px; }
  .about-right h2 { font-size: 28px; }
  .about-btn { padding: 12px 28px; font-size: 15px; }
}

/* ========================= PROPERTY CARDS ========================= */
.property-link { display: block; text-decoration: none; }

.property-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.property-card:hover {
  transform: scale(1.03);
  border-color: #B88F44;
  box-shadow: 0 10px 25px rgba(184,143,68,0.3);
}

.property-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.property-card:hover .property-img {
  transform: scale(1.05);
  filter: brightness(70%);
}

.property-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  z-index: 2;
}
.property-card:hover .property-overlay { opacity: 1; }

.property-overlay h5 { font-family: 'Poppins', sans-serif; font-size: 20px; margin-bottom: 10px; }
.property-overlay p, .property-overlay span { font-family: 'Roboto', sans-serif; font-size: 16px; margin: 0; }

.view-more-btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px; font-weight: 600;
  margin-top: 15px;
  background-color: #1F1709;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(184, 143, 68, 0.4);
}
.view-more-btn:hover { background-color: #B88F44; transform: translateY(-2px); }

@media(max-width: 992px) {
  .property-img { height: 250px; }
  .view-more-btn { font-size: 16px; padding: 10px 25px; }
}
@media(max-width: 576px) {
  .property-img { height: 200px; }
  .view-more-btn { font-size: 14px; padding: 8px 20px; }
}

/* ========================= FIXED IMAGE SECTION ========================= */
.fixed-image-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../images/fixed-image.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.fixed-image-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}
@media(max-width:992px){
  .fixed-image-section { height: 250px; } 
}

/* ========================= MAP LOCATOR SECTION ========================= */
.property-locator-section {
  background: #fff;
  padding: 80px 20px;
}

.locator-header {
  text-align: center;
  margin-bottom: 20px;
}

.locator-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2e2e2e;
}

.locator-header p {
  font-family: 'Roboto', sans-serif;
  color: #6c6c6c;
  font-size: 18px;
}

/* Country Tabs */
.country-tabs {
  text-align: center;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.country-tab {
  font-family: 'Roboto', sans-serif;
  background-color: #1F1709;
  color: #fff;
  padding: 14px 36px;
  margin: 5px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(184,143,68,0.4);
  border: none;
  cursor: pointer;
}

.country-tab.active,
.country-tab:hover {
  background: #B88F44;
}

/* Map Layout */
.locator-layout {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

#map {
  width: 95%;
  height: 600px;
  border-radius: 16px;
  border: 1px solid #f0edea;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

#map:hover {
  border-color: #B88F44;
  box-shadow: 0 0 25px rgba(184,143,68,0.4);
  transform: translateY(-3px);
}

/* Full Map Button */
.full-map-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.full-map-button-link {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  background: #000;
  padding: 10px 22px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.full-map-button-link:hover {
  color: #fff;
  background-color: #B88F44;
}

/* Responsive */
@media(max-width: 992px) {
  #map { height: 400px; }
  .locator-header h1 { font-size: 34px; }
  .country-tabs { justify-content: center; }
}

@media(max-width: 414px) {
  .full-map-button-wrapper { margin-top: 15px; }
}

/* ========================= WHATSAPP BUTTON ========================= */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
