* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  z-index: 999;
}

/* Important: Header container flex */
.header .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* pushes nav to right */
}

/* Logo */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #B28A5A;
}

/* Reserve space for fixed header */
.site-main {
  padding-top: 90px;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background-image: url('/frontAssets/imgs/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
} */

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.hero-content span {
  font-weight: bold;
}

.search-box button {
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

/* ===== SEARCH TABS ===== */
.search-tabs {
  display: flex;
  margin-top: 250px;
  margin-bottom: 15px;
}

.search-tabs button {
  padding: 10px 25px;
  border-radius: 20px;
  border: none;
  margin-right: 10px;
  background: #c9a44c;
  color: #fff;
  cursor: pointer;
}

.search-tabs .active {
  background: #c9a44c;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 900px;
  max-width: 95%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.search-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 12px;
  background: #f9f9f9;
  gap: 8px;
  white-space: nowrap;
  color: #000;
}

.search-item select,
.search-item input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
}

.search-item.grow {
  flex: 1;
}

.search-btn {
  background: #c9a44c;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 15px;
}

.search-btn:hover {
  opacity: 0.9;
}

/* ===== HOT PROPERTIES ===== */
.hot-properties {
  padding: 60px 5%;
  background: #fff;
}

.section-header h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #000000;
}

/* ===== SLIDER ===== */
.slider-wrapper {
  position: relative;
}

.slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.property-card {
  min-width: 380px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #c9a44c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
}

.location {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.price {
  font-size: 17px;
  margin-bottom: 20px;
  color: #666;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-btn {
  background: #c9a44c;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #c9a44c;
}

.icons {
  font-size: 20px;
  display: flex;
  gap: 12px;
}

/* ===== ARROWS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.slider-wrapper {
  position: relative;
  padding: 0 60px;
}

/* SECTION */
.property-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 70px 5%;
  background: #ffffff;
  /* SAME THEME */
}

/* RENAME .card ? .property-box */
.property-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 420px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.property-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.property-box:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.property-box .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}

/* TEXT */
.property-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.property-box a {
  color: #c9a44c;
  /* YOUR EXISTING GOLD */
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
}

.brand-section {
  padding: 60px 5%;
  background: #ffffff;
}

.brand-title {
  font-size: 22px;
  margin-bottom: 25px;
  color: #000000;
}

.brand-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.brand-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.brand-item {
  min-width: 260px;
  height: 140px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.brand-item img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* arrows */
.brand-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
}

.brand-btn.left {
  left: -10px;
}

.brand-btn.right {
  right: -10px;
}

.brand-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}


/* ===== FOOTER ===== */
.site-footer {
  background: #f9f7f5;
  padding: 70px 5% 0;
  color: #333;
  border-top: 1px solid #eee;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #000000;
}

.footer-logo span {
  color: #000000;
}

.footer-about {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.footer-col h5 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #000000;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c9a44c;
  padding-left: 5px;
}

.footer-contact li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #c9a44c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c9a44c;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


/* About me Css */
.about-section {
  padding: 100px 5%;
  background: #ffffff;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transform: translateX(-60px);
  opacity: 1;
  transition: all 1s ease;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.about-section.show .about-content {
  transform: translateX(0);
  opacity: 1;
}

.about-content h2 {
  font-size: 42px;
  color: #c9a44c;
  margin-bottom: 10px;
}

.about-content h2 span {
  color: #b7a18f;
}

.about-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #888;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  margin-bottom: 30px;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #c9a44c;
  color: #000000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #c9a44c;
  transform: translateY(-3px);
}

/* ACTIVE ANIMATION */
.about-section.show .about-image,
.about-section.show .about-content {
  transform: translateX(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 380px;
  }

  .about-content h2 {
    font-size: 34px;
  }
}

/* Blogs Css */

.blog-section {
  padding: 100px 5%;
  background: #f9f7f5;
  overflow: hidden;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: 40px;
  color: #000000;
}

.blog-header h2 span {
  color: #000000;
}

.blog-header p {
  margin-top: 10px;
  color: #777;
  font-size: 16px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.blog-card.show {
  transform: translateY(0);
  opacity: 1;
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* TAG */
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c9a44c;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* CONTENT */
.blog-content {
  padding: 26px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-content a {
  color: #c9a44c;
  text-decoration: none;
  font-weight: 600;
}

/* CTA */
.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.blog-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #c9a44c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background: #9d8976;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header h2 {
    font-size: 32px;
  }
}


/* ===== ABOUT US PAGE CSS ===== */

/* ===== Inner Hero ===== */
.inner-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  background: url('/frontAssets/imgs/about-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.inner-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

/* Title */
.inner-hero h1 {
  font-size: 64px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 18px 40px rgba(0, 0, 0, .6);
}

.inner-hero h1 span {
  color: #c9a44c;
}

/* Subtitle */
.inner-hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-top: 6px;
}

/* Golden glow */
.inner-hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, rgba(201, 164, 76, .35), transparent 60%);
  filter: blur(18px);
  animation: floatGlow 6s ease-in-out infinite;
  z-index: 1;
}

/* Float animation */
@keyframes floatGlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .inner-hero {
    height: 60vh;
    min-height: 420px;
  }

  .inner-hero h1 {
    font-size: 42px;
  }
}

/* ===== About Section (Luxury) ===== */
.about-page {
  position: relative;
  padding: 120px 10%;
  background: #fff;
}

/* Grid */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text */
.about-text {
  position: relative;
  padding-left: 36px;
}

.about-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 120px;
  background: linear-gradient(#c9a44c, transparent);
  border-radius: 10px;
}

/* Small tag */
.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #c9a44c;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-text h2 span {
  color: #c9a44c;
}

.subtitle {
  font-size: 16px;
  font-weight: 500;
  opacity: .75;
  margin-bottom: 26px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* Buttons */
.about-actions {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 14px 36px;
  background: linear-gradient(135deg, #c9a44c, #e6c87a);
  color: #000;
  border-radius: 40px;
  font-weight: 600;
  transition: all .35s ease;
  box-shadow: 0 18px 36px rgba(201, 164, 76, .35);
}

.primary-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(201, 164, 76, .55);
}

/* Ghost button */
.ghost-btn {
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, .15);
  color: #333;
  font-weight: 500;
  transition: all .35s ease;
}

.ghost-btn:hover {
  border-color: #c9a44c;
  color: #c9a44c;
}

/* Image */
.about-img {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .35);
}

/* Dark glass overlay */
.img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right,
      rgba(0, 0, 0, .15),
      rgba(0, 0, 0, .35));
  z-index: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.about-img:hover img {
  transform: scale(1.08);
}

/* Floating hover */
.about-img:hover {
  transform: translateY(-12px);
  transition: transform .6s ease;
}

/* Responsive */
@media(max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 380px;
  }
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 1s ease forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 1s ease forwards;
}

.delay-1 {
  animation-delay: .2s;
}

.delay-2 {
  animation-delay: .4s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Mission Section (Luxury) ===== */
.mission-section {
  position: relative;
  padding: 120px 10%;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  overflow: hidden;
}

/* Subtle background glow */
.mission-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(201, 164, 76, .12);
  filter: blur(140px);
  top: -200px;
  left: -200px;
}

.mission-header {
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
}

.mission-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.mission-header span {
  color: #c9a44c;
}

.mission-header p {
  margin-top: 12px;
  opacity: .75;
  font-size: 16px;
}

/* Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  position: relative;
  z-index: 1;
}

/* Card */
.mission-card.premium {
  position: relative;
  padding: 45px 35px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1b1b1b, #111);
  color: #fff;
  text-align: center;
  transition: all .5s ease;
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}

/* Golden top line */
.mission-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a44c, transparent);
}

/* Icon */
.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(201, 164, 76, .15);
  color: #c9a44c;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .5s ease;
}

/* Highlight middle card */
.mission-card.highlight {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
  border-color: rgba(201, 164, 76, .3);
}

/* Hover effects */
.mission-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 50px 90px rgba(0, 0, 0, .7);
}

.mission-card:hover .mission-icon {
  background: #c9a44c;
  color: #000;
  transform: scale(1.1);
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.mission-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
}

/* Responsive */
@media(max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card.highlight {
    transform: none;
  }
}

/* ===== Why Choose Us (Elite Version) ===== */
.why-us {
  position: relative;
  padding: 120px 10%;
  background: linear-gradient(180deg, #f9f9f9, #ffffff);
  overflow: hidden;
}

/* Background glow */
.why-us::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(201, 164, 76, .12);
  filter: blur(120px);
  bottom: -200px;
  right: -200px;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.why-header span {
  color: #c9a44c;
}

.why-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Card */
.why-card.premium {
  position: relative;
  background: #fff;
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all .45s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
  overflow: hidden;
}

/* Top gold line */
.why-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a44c, transparent);
}

/* Icon */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(201, 164, 76, .15);
  color: #c9a44c;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .45s ease;
}

/* Highlight middle card */
.why-card.highlight {
  transform: translateY(-18px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .15);
  border-color: rgba(201, 164, 76, .35);
}

/* Hover */
.why-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, .2);
}

.why-card:hover .why-icon {
  background: #c9a44c;
  color: #000;
  transform: scale(1.15) rotate(6deg);
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Responsive */
@media(max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card.highlight {
    transform: none;
  }
}

.why-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(201, 164, 76, .4);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .4;
  }
}

/* ===== Stats Section (Elite) ===== */
.stats-section {
  position: relative;
  padding: 140px 10%;
  background: linear-gradient(135deg, #000, #111);
  overflow: hidden;
}

/* Glow overlay */
.stats-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 76, .18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(201, 164, 76, .12), transparent 60%);
}

.stats-header {
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  z-index: 1;
}

.stats-header h2 {
  font-size: 44px;
  font-weight: 700;
}

.stats-header span {
  color: #c9a44c;
}

.stats-header p {
  margin-top: 14px;
  font-size: 16px;
  opacity: .8;
}

/* Grid */
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Box */
.stat-box.premium {
  position: relative;
  padding: 50px 30px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, #111, #000);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
  transition: all .5s ease;
  overflow: hidden;
}

/* Gold border glow */
.stat-box.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 76, .25);
  opacity: 0;
  transition: opacity .5s ease;
}

.stat-box.premium:hover::before {
  opacity: 1;
}

/* Highlight center stat */
.stat-box.highlight {
  transform: translateY(-20px);
  box-shadow: 0 60px 120px rgba(0, 0, 0, .8);
}

/* Icon */
.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(201, 164, 76, .18);
  color: #c9a44c;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .5s ease;
}

/* Number */
.stat-box h3 {
  font-size: 46px;
  color: #c9a44c;
  margin-bottom: 8px;
}

/* Hover */
.stat-box:hover {
  transform: translateY(-25px);
}

.stat-box:hover .stat-icon {
  background: #c9a44c;
  color: #000;
  transform: scale(1.15) rotate(8deg);
}

.stat-box p {
  font-size: 15px;
  opacity: .85;
  color: #fff;
}

/* Responsive */
@media(max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box.highlight {
    transform: none;
  }
}

/* ===== CTA Section (Elite Luxury) ===== */
.about-cta {
  position: relative;
  padding: 140px 10%;
  background: linear-gradient(135deg, #000, #111);
  text-align: center;
  overflow: hidden;
}

/* Golden glow */
.about-cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(201, 164, 76, .2);
  filter: blur(160px);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .05), transparent 70%);
}

/* Content */
.cta-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  color: #fff;
  z-index: 1;
}

.about-cta h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.about-cta span {
  color: #c9a44c;
}

.about-cta p {
  margin-top: 20px;
  font-size: 17px;
  opacity: .85;
  line-height: 1.7;
}

/* Buttons */
.cta-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 16px 42px;
  background: linear-gradient(135deg, #c9a44c, #e5c77a);
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .35s ease;
  box-shadow: 0 20px 40px rgba(201, 164, 76, .35);
}

.primary-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(201, 164, 76, .55);
}

/* Secondary Button */
.secondary-btn {
  padding: 16px 42px;
  border-radius: 50px;
  border: 1px solid rgba(201, 164, 76, .5);
  color: #c9a44c;
  font-weight: 500;
  transition: all .35s ease;
}

.secondary-btn:hover {
  background: rgba(201, 164, 76, .1);
  transform: translateY(-6px);
}

/* Responsive */
@media(max-width: 900px) {
  .about-cta h2 {
    font-size: 36px;
  }
}

.primary-btn {
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 20px 40px rgba(201, 164, 76, .35);
  }

  50% {
    box-shadow: 0 30px 60px rgba(201, 164, 76, .6);
  }

  100% {
    box-shadow: 0 20px 40px rgba(201, 164, 76, .35);
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeLeft 1s forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  animation: fadeRight 1s forwards;
}

.delay-1 {
  animation-delay: .2s
}

.delay-2 {
  animation-delay: .4s
}

.delay-3 {
  animation-delay: .6s
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: none
  }
}

/* Responsive */
@media(max-width:900px) {

  .about-wrapper,
  .mission-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 380px;
  }
}

/* Services page css */
/* =====================================
   CLEAN HERO IMAGE (NO GRADIENT WASH)
===================================== */
.lxr-hero-img {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: url('/frontAssets/imgs/services-hero.jpg') center/cover no-repeat;
}

/* VERY LIGHT OVERLAY (JUST FOR READABILITY) */
.lxr-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  /* key fix */
}

/* TEXT CONTAINER */
.lxr-hero-img-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

/* HEADLINE */
.lxr-hero-img-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.lxr-hero-img-content span {
  color: var(--lxr-gold);
}

/* DESCRIPTION */
.lxr-hero-img-content p {
  margin: 22px 0 35px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* ACTIONS */
.lxr-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================================
   RESPONSIVE HERO
===================================== */
@media (max-width: 992px) {
  .lxr-hero-img {
    height: 75vh;
    padding: 0 6%;
  }

  .lxr-hero-img-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .lxr-hero-img {
    height: auto;
    padding: 120px 6% 100px;
  }

  .lxr-hero-img-content h1 {
    font-size: 2.3rem;
  }
}

/* =====================================
   LXR WHITE THEME VARIABLES
===================================== */
:root {
  --lxr-gold: #caa85c;
  --lxr-dark: #0e1116;
  --lxr-text: #1a1a1a;
  --lxr-muted: #6f6f6f;
  --lxr-bg: #ffffff;
  --lxr-soft: #f7f7f7;
  --lxr-card: #ffffff;
  --lxr-border: rgba(0, 0, 0, 0.08);
}

/* =====================================
   LXR HERO (LIGHT)
===================================== */
.lxr-hero {
  position: relative;
  height: 70vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,
      #ffffff,
      #f4f4f4);
}

.lxr-hero::after {
  content: none;
}

.lxr-hero-content {
  text-align: center;
  max-width: 760px;
  padding: 0 20px;
}

.lxr-hero-content h1 {
  font-size: 3.4rem;
  color: var(--lxr-text);
  font-weight: 700;
}

.lxr-hero-content span {
  color: var(--lxr-gold);
}

.lxr-hero-content p {
  margin-top: 14px;
  color: var(--lxr-muted);
  font-size: 1.05rem;
}

/* =====================================
   LXR SERVICES (ULTRA LUXURY)
===================================== */
.lxr-services {
  padding: 120px 8%;
  background: #ffffff;
}

.lxr-services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
}

.lxr-services-header::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--lxr-gold);
  opacity: .8;
}

.lxr-services-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: .5px;
}

.lxr-services-header span {
  color: var(--lxr-gold);
}

.lxr-services-header p {
  margin-top: 14px;
  color: var(--lxr-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Grid */
.lxr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.lxr-service-card {
  position: relative;
  padding: 50px 38px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(202, 168, 92, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  overflow: hidden;
}

/* ===== ENHANCED BLOG ANIMATIONS & LAYOUT ===== */
:root {
  --accent: #B28A5A;
  --accent-dark: #8a643d;
  --muted: #666;
  --card-radius: 12px;
}

/* reveal helper used for scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.995);
  transition: opacity 560ms cubic-bezier(.2, .9, .25, 1), transform 560ms cubic-bezier(.2, .9, .25, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Blog card polish */
.blog-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 560ms cubic-bezier(.2, .9, .25, 1);
}

.blog-card:hover img {
  transform: scale(1.06);
}

/* Floating read-more button adjustments */
.btn-readmore-float {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* Hero tweaks */
.blog-hero {
  box-shadow: 0 10px 40px rgba(34, 34, 34, 0.08);
  transform-origin: center;
  transition: transform 420ms ease;
}

.blog-hero.in-view {
  transform: translateY(0) scale(1);
}

.blog-hero h1 {
  animation: heroPop 720ms cubic-bezier(.2, .9, .25, 1) both;
}

@keyframes heroPop {
  from {
    transform: translateY(18px) scale(.98);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/* Related articles grid spacing */
.recent-blogs {
  padding-top: 28px;
}

.recent-blogs .blog-grid {
  gap: 26px;
}

/* Small responsive improvements */
@media (max-width: 768px) {
  .blog-hero {
    padding: 36px 14px;
  }

  .btn-readmore-float {
    left: 8px;
    bottom: 14px;
  }
}


.lxr-service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent, rgba(202, 168, 92, 0.35), transparent);
  opacity: 0;
  transition: opacity .45s ease;
}

.lxr-service-card:hover::before {
  opacity: 1;
}

.lxr-service-card:hover {
  transform: translateY(-14px);
  border-color: var(--lxr-gold);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.14);
}

.lxr-service-icon {
  font-size: 2.6rem;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform .45s ease;
}

.lxr-service-card:hover .lxr-service-icon {
  transform: translateY(-6px);
}

.lxr-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.lxr-service-card p {
  color: var(--lxr-muted);
  line-height: 1.75;
}

/* Featured card */
.lxr-featured {
  border-color: var(--lxr-gold);
  box-shadow: 0 35px 90px rgba(202, 168, 92, .20);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.lxr-featured .lxr-service-icon {
  font-size: 2.9rem;
}

.lxr-featured .lxr-featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  background: rgba(202, 168, 92, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .lxr-services-header h2 {
    font-size: 2.2rem;
  }

  .lxr-service-card {
    padding: 38px 26px;
  }
}

/* =====================================
   LXR ELITE PROCESS (WOW FACTOR)
===================================== */
.lxr-process-elite {
  padding: 140px 8%;
  background: linear-gradient(180deg, #ffffff, #bbbbbb);
}

/* Header */
.lxr-process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.lxr-process-eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lxr-gold);
  margin-bottom: 16px;
}

.lxr-process-header h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.lxr-process-header span {
  color: var(--lxr-gold);
}

.lxr-process-header p {
  color: var(--lxr-muted);
  font-size: 1.05rem;
}

/* Track */
.lxr-process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
}

/* Subtle journey line */
.lxr-process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(202, 168, 92, .5),
      transparent);
}

/* Step Card */
.lxr-process-step {
  position: relative;
  background: #ffffff;
  padding: 60px 36px 44px;
  border-radius: 26px;
  border: 1px solid rgba(202, 168, 92, .25);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .08);
  transition: all .45s ease;
}

/* Floating number badge */
.lxr-step-badge {
  position: absolute;
  top: -26px;
  left: 36px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f0f0f;
  border: 2px solid var(--lxr-gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--lxr-gold);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

/* Step Content */
.lxr-process-step h4 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.lxr-process-step p {
  color: var(--lxr-muted);
  line-height: 1.7;
}

/* Hover interaction */
.lxr-process-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 75px rgba(0, 0, 0, .12);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 992px) {
  .lxr-process-track::before {
    display: none;
  }

  .lxr-process-step {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .lxr-process-header h2 {
    font-size: 2.2rem;
  }
}

/* =====================================
   LXR ELITE CTA (PRIVATE-WEALTH LEVEL)
===================================== */
.lxr-elite-cta {
  position: relative;
  padding: 160px 8%;
  background: #ffffff;
  overflow: hidden;
}

/* NEW: Background image */
.lxr-elite-bg {
  position: absolute;
  inset: 0;
  background-image: url('/frontAssets/imgs/services-bg.jpg');
  /* change this */
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: .65;
  z-index: 0;
}

/* overlay for readability */
.lxr-elite-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.22));
  z-index: 1;
}

/* Subtle architectural background mark */
.lxr-elite-bg-mark {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(202, 168, 92, .08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, .04), transparent 45%);
  z-index: 2;
}

/* Main elite card */
.lxr-elite-card {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 80px 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  border: 1px solid rgba(202, 168, 92, .35);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.14);
  animation: eliteFadeUp 1s ease both;
  z-index: 3;
}

/* Eyebrow text (private advisory signal) */
.lxr-elite-eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lxr-gold);
  margin-bottom: 24px;
}

/* Gold divider */
.lxr-elite-divider {
  width: 0;
  height: 2px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg,
      transparent,
      var(--lxr-gold),
      transparent);
  animation: eliteDivider 1.2s ease forwards;
}

/* Headline */
.lxr-elite-card h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--lxr-text);
  margin-bottom: 24px;
}

.lxr-elite-card h2 span {
  color: var(--lxr-gold);
}

/* Copy */
.lxr-elite-card p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--lxr-muted);
  max-width: 680px;
  margin: 0 auto 50px;
}

/* Actions */
.lxr-elite-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card hover (subtle authority motion) */
.lxr-elite-card:hover {
  transform: translateY(-6px);
  transition: .4s ease;
}

/* =====================================
   ANIMATIONS
===================================== */
@keyframes eliteFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eliteDivider {
  from {
    width: 0;
  }

  to {
    width: 140px;
  }
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .lxr-elite-card {
    padding: 55px 30px;
  }

  .lxr-elite-card h2 {
    font-size: 2.3rem;
  }
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .lxr-hero-content h1 {
    font-size: 2.4rem;
  }

  .lxr-section {
    padding: 80px 6%;
  }
}

/* =====================================
   LXR BUTTON - PRIMARY (LUXURY)
===================================== */
.lxr-btn-primary {
  display: inline-block;
  padding: 15px 42px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #111;
  background: linear-gradient(135deg, #f3d18a, #d4b05c);
  border: 1px solid rgba(202, 168, 92, 0.7);
  box-shadow:
    0 12px 24px rgba(202, 168, 92, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Shine effect */
.lxr-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.lxr-btn-primary:hover::after {
  transform: translateX(100%);
}

/* Hover */
.lxr-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 32px rgba(202, 168, 92, 0.45),
    0 30px 90px rgba(0, 0, 0, 0.22);
}

/* Active press */
.lxr-btn-primary:active {
  transform: translateY(-1px);
  box-shadow:
    0 12px 22px rgba(202, 168, 92, 0.35),
    0 18px 60px rgba(0, 0, 0, 0.18);
}

/* =====================================
   LXR BUTTON - OUTLINE (VISIBLE LUXURY)
===================================== */
.lxr-btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 0.95rem;

  color: #1a1a1a;
  /* darker text for visibility */
  background: rgba(255, 255, 255, 0.95);

  border: 1.5px solid rgba(202, 168, 92, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(202, 168, 92, 0.18);

  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}

/* Gold highlight line */
.lxr-btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(202, 168, 92, 0.55), transparent);
  transform: translateX(-100%);
  transition: transform .55s ease;
}

.lxr-btn-outline:hover::after {
  transform: translateX(100%);
}

/* Hover */
.lxr-btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(202, 168, 92, 0.12);
  color: #111;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.08),
    0 30px 80px rgba(202, 168, 92, 0.22);
}

/* Active press */
.lxr-btn-outline:active {
  transform: translateY(-1px);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.06),
    0 18px 45px rgba(202, 168, 92, 0.16);
}


/* Property landing page css */
/* ================= HERO SECTION ================= */

.property-hero-section {
  background: #f2f2f2;
  padding: 30px 0 50px;
}

/* ================= GALLERY WRAPPER ================= */

.property-gallery-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* ================= GALLERY FLEX ================= */

.property-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* ================= MAIN IMAGE ================= */

.gallery-main {
  flex: 0 0 74%;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 620px;
  /* ? Bigger Hero Image */
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.4s ease;
}

/* Smooth zoom effect */
.gallery-main img:hover {
  transform: scale(1.03);
}

/* ================= SIDE IMAGES ================= */

.gallery-side {
  flex: 0 0 13%;
  position: relative;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.gallery-side img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 22px;
  filter: blur(2px);
  transition: 0.3s ease;
}

.gallery-side:hover {
  opacity: 1;
}

.gallery-side:hover img {
  filter: blur(0);
}

/* ================= ARROWS ================= */

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.nav-arrow:hover {
  background: #000;
  transform: translateY(-50%) scale(1.1);
}

/* ================= DOTS ================= */

.gallery-dots {
  text-align: center;
  margin-top: 22px;
}

.gallery-dots .dot {
  height: 9px;
  width: 9px;
  margin: 0 6px;
  background: #cfcfcf;
  display: inline-block;
  border-radius: 50%;
  transition: 0.3s ease;
}

.gallery-dots .dot.active {
  background: #000;
  width: 26px;
  border-radius: 10px;
}

@media (max-width: 991px) {

  .property-gallery {
    flex-direction: column;
  }

  .gallery-side {
    display: none;
  }

  .gallery-main {
    flex: 100%;
  }

  .gallery-main img {
    height: 380px;
  }
}

/* ===== PROPERTY DETAIL PAGE ===== */

.property-hero-section {
  position: relative;
  background: linear-gradient(135deg, #000 0%, #111 100%);
  padding: 20px 0 40px;
  color: #fff;
}

.property-breadcrumb {
  padding: 10px 0;
  font-size: 14px;
}

.property-breadcrumb a {
  color: #c9a44c;
  text-decoration: none;
}

.property-breadcrumb .active {
  color: #fff;
}

.property-gallery-wrapper {
  position: relative;
  margin-top: 20px;
}

.property-gallery {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gallery-side {
  position: relative;
  width: 200px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  flex: 1;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: #c9a44c;
}

.property-detail-section {
  padding: 50px 0;
}

.property-left-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.property-price {
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #c9a44c;
}

/* ===== CONTACT PAGE CSS ===== */
.contact-hero {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(45, 32, 20, 0.92), rgba(49, 44, 35, 0.92));
  position: relative;
}

.contact-page {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}



 .section-tag {
  display: inline-block;
  color: #c9a44c;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

 h2,
.contact-form h3 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #111;
}
d
 .contact-details p {
  color: #555;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details strong {
  display: block;
  margin-bottom: 8px;
  color: #222;
}

.contact-form form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group.small {
  max-width: 140px;
}

.field-group label {
  color: #333;
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #333;
  background: #fff;
}

.field-group textarea {
  min-height: 160px;
  resize: vertical;
}

.field-error {
  color: #d63333;
  font-size: 13px;
  margin-top: 4px;
}

.contact-form .alert {
  margin-bottom: 24px;
}

.contact-form .primary-btn {
  width: 220px;
  justify-self: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .contact-page {
    padding: 60px 0 80px;
  }

  .inner-hero {
    min-height: 320px;
  }
}

.price-label {
  display: block;
  font-size: 14px;
  color: #666;
}

.property-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.property-meta span {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.property-meta span:nth-child(1) {
  animation-delay: 0.1s;
}

.property-meta span:nth-child(2) {
  animation-delay: 0.2s;
}

.property-meta span:nth-child(3) {
  animation-delay: 0.3s;
}

.property-meta span:nth-child(4) {
  animation-delay: 0.4s;
}

.property-meta span:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 164, 76, 0.3);
  background: linear-gradient(135deg, #c9a44c 0%, #ffffff 100%);
  color: #fff;
}

.property-meta span:hover i {
  color: #fff;
  animation: bounce 0.6s ease;
}

.property-meta span i {
  color: #c9a44c;
  font-size: 18px;
  transition: color 0.3s ease;
}

.property-meta span::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.property-meta span:hover::after {
  left: 100%;
}

.property-description h3,
.property-features h3,
.property-location h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.property-description p {
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-item {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e5e5e5;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
  animation-delay: 0.7s;
}

.feature-item:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #c9a44c 0%, #ffffff 100%);
}

.feature-item:hover i,
.feature-item:hover span {
  color: #fff;
}

.feature-item i {
  font-size: 24px;
  color: #c9a44c;
  transition: color 0.3s ease;
}

.feature-item span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.location-map img {
  border-radius: 10px;
  margin-top: 15px;
}

.property-form-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-form-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #c9a44c;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #b8943a;
}



/* ===== LUXURY CONTACT CARD ===== */
.luxury-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #c9a44c, transparent, #c9a44c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ===== CONTACT DETAILS ===== */
.modern-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.detail-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(201, 164, 76, 0.25);
}

/* ICON STYLE */
.detail-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a44c, #f5e6b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* TEXT */
.detail-item strong {
  font-size: 14px;
  color: #888;
}

.detail-item p {
  margin: 0;
  font-weight: 600;
  color: #111;
}

/* ===== WHY BOX UPGRADE ===== */
.luxury-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.luxury-box::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.25), transparent 60%);
}

.luxury-box h3 {
  margin-bottom: 16px;
  color: #fff;
}

.luxury-box .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.luxury-box .features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.luxury-box i {
  color: #c9a44c;
}

/* Responsive */
@media (max-width: 768px) {
  .property-gallery {
    flex-direction: column;
  }

  .gallery-side {
    width: 100%;
    height: 200px;
  }

  .gallery-main {
    height: 250px;
  }

  .property-meta {
    flex-direction: column;
    gap: 10px;
  }

  .col-lg-8,
  .col-lg-4 {
    width: 100%;
  }

  .form-slide-wrapper {
    margin-top: 30px;
  }
}