/* ----------------------------------------------------
   ROOT VARIABLES & GLOBAL SETTINGS
---------------------------------------------------- */
:root {
  --primary-gold: #52688f;
  --secondary-gold: #e5c57f;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --text-grey: #666;
  --light-grey: #f8f9fa;
}

body {
  font-family: "Lato", sans-serif;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Playfair Display", serif;
}

/* ----------------------------------------------------
   NAVBAR
---------------------------------------------------- */
.navbar {
  background: transparent !important;
  box-shadow: none;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  transition: 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #000;
}

.navbar-brand span {
  color: var(--primary-gold);
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #95b1e0 !important;
}

.btn-gold {
  background: #fff;
  color: var(--primary-gold) !important;
  padding: 12px 30px;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 0;
}

.btn-gold:hover {
  background: var(--primary-gold);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: var(--primary-gold) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .btn-gold {
  color: #fff !important;
}

.navbar.scrolled .btn-gold {
  background: #fff !important;
  color: var(--primary-gold) !important;
}

/* Mobile toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("slider.mp4");
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ----------------------------------------------------
   STATS
---------------------------------------------------- */
.stats-bar {
  background: var(--dark-bg);
  color: #fff;
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-item h3 {
  color: var(--primary-gold);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------------------------
   SECTION TITLES
---------------------------------------------------- */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin: 15px auto 0;
  display: block;
}

/* ----------------------------------------------------
   ABOUT SECTION
---------------------------------------------------- */
.about-text h4 {
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-text h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-grey);
  line-height: 1.8;
}

/* Image frame */
.team-img-wrapper {
  position: relative;
}

.team-img-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--primary-gold);
  border-left: 5px solid var(--primary-gold);
}

.team-img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* ----------------------------------------------------
   PROPERTY CARDS
/* ================================
   PROPERTY CARD — PREMIUM STYLE
=================================== */
.property-card {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.property-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.property-card:hover .property-img-container img {
  transform: scale(1.1);
}

.status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-gold);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.card-body {
  padding: 25px;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.property-location {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.property-details {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
}

.property-price {
  color: var(--dark-bg);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

/* VIEW BUTTON — Premium Dark Style */
.btn-view {
  background: #1f2937;
  color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-block;
}

/* Slide Hover Effect */
.btn-view:hover {
  background: #ffffff;
  border: 1px solid #1f2937;
  color: #1f2937;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ================================
   RESPONSIVE
=================================== */

@media (max-width: 768px) {
  .property-img {
    height: 210px;
  }

  .property-title {
    font-size: 19px;
  }

  .property-price {
    font-size: 20px;
  }
}

/* ----------------------------------------------------
   AWARDS
---------------------------------------------------- */
.awards-section {
  background: #acbedd2e;
}

.award-img:hover {
  /* filter: grayscale(0%); */
  opacity: 1;
}

/* ----------------------------------------------------
   TESTIMONIALS
---------------------------------------------------- */
.testimonial-section {
  background: var(--dark-bg);
  color: #fff;
  text-align: center;
}

.testimonial-item {
  padding: 20px 100px;
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-author {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.carousel-indicators [data-bs-target] {
  background: var(--primary-gold);
}

/* ----------------------------------------------------
   ABOUT HERO
---------------------------------------------------- */
.about-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.about-hero video,
.about-hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6));
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.breadcrumb-custom {
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* ----------------------------------------------------
   CONTACT FORM
---------------------------------------------------- */
.contact-section {
  background: #acbedd2e;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 15px 0;
  border-radius: 0;
}

.form-control:focus {
  border-bottom-color: var(--primary-gold);
  box-shadow: none;
}

.disclaimer-text {
  font-size: 0.75rem;
  color: #888;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  background: var(--primary-gold) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  color: #fff;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-heading {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: #fff;
  margin-right: 15px;
}

.footer-bottom {
  border-top: 1px solid #dddddd;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

.team-section {
  background: #acbedd2e;
}
/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 768px) {
  .navbar-collapse {
    background: var(--primary-gold) !important;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .testimonial-item {
    padding: 20px;
  }

  .stats-bar {
    margin-top: 0;
  }

  .team-img-wrapper::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .property-img {
    height: 180px;
  }

  .team-name {
    font-size: 18px;
  }
}
.project-list-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-list-item h5 {
  margin: 0;
  font-size: 1.1rem;
}

.project-list-item a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.steps-section {
  padding: 28px 0 80px;
  background: #fff;
}

.step-row {
  align-items: center;
  margin-bottom: 0;
  border-bottom: 1px solid #f2f4f6;
}

.step-row:last-child {
  border-bottom: 0;
}

.step-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 8px 28px var(--card-shadow);
  display: block;
}

.step-card {
  padding: 48px 38px;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 14px;
  color: #0f1724;
}

.step-body {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.step-body ul {
  margin-left: 0.9rem;
  padding-left: 1rem;
}

.step-body ul li {
  margin-bottom: 10px;
}

/* CTA BAND */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 44px 18px;
  text-align: center;
  margin: 32px auto;
  border-radius: 6px;
}

.cta-band h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  font-size: 18px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.btn-cta {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* responsive */
@media (max-width: 991px) {
  .about-hero {
    padding: 36px 0;
    height: 50%;
  }
  .hero-content p {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: none;
  }

  .step-img {
    height: 220px;
  }

  .step-card {
    padding: 28px 18px;
  }

  .about-hero h1 {
    font-size: 25px;
    margin-top: 29px;
  }
}

@media (max-width: 575px) {
  .step-number {
    font-size: 13px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-card {
    padding: 20px 14px;
  }
}

.awards-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center; /* vertically center images inside the row */
  flex-wrap: nowrap; /* prevent wrapping inside a slide */
}

/* award image box: fixed size + cover */
.award-img {
  flex: 0 0 140px; /* fixed box width */
  height: 100px; /* same height for all images */
  object-fit: cover; /* crop and fill */
  border-radius: 8px;
  display: block;
}

/* responsive adjustments */
@media (max-width: 768px) {
  .award-img {
    flex: 0 0 110px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .award-img {
    flex: 0 0 80px;
    height: 70px;
  }
}
