/* hero section css  */
/* Hero Section Wrapper */
.hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #0a1a2f; fallback dark */
  /* background: linear-gradient(135deg, #ffffff, #ffc0d6); */
  /* background: linear-gradient(135deg, rgba(6,0,41,0.95), rgba(218,165,32,0.9)); */
  background: linear-gradient(135deg, #060029 70%, #b8961a 100%);
  isolation: isolate;
}

/* Background Image with overlay for readability */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7) contrast(1.05);
}

/* dark overlay to make text pop */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(125deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%); */
  background: linear-gradient(125deg, rgba(6, 0, 41, 0.8) 50%, rgba(120, 90, 20, 0.5) 100%);

  z-index: 1;
}

/* Main content card */
.hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 1rem;
  /* background: rgba(255, 255, 255, 0.92); */
  backdrop-filter: blur(3px);
  border-radius: 10px;
  /* box-shadow: 0 30px 45px -20px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
}

/* Radio group: Commercial, Residential, Plot */
/* .radio-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 0;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: rgba(255, 255, 240, 0.5);
  padding: 0.3rem 0.5rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  font-weight: 600;
  color: #1f2937;
}

.radio-option:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid #2c7a4d;
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: 0.1s linear;
  background: white;
}

.radio-option input[type="radio"]:checked {
  border: 5px solid #1f8a4c;
  background-color: white;
}

.radio-option label {
  font-size: 0.7rem;
  letter-spacing: -0.2px;
  cursor: pointer;
  color: #1e2a3e;
} */

/* Filter card styling */
.filter-card {
  background: white;
  border-radius: 80px;
  padding: 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
}

.input-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.input-field label {
  display: block;
  font-size: 0.70rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 60px;
  transition: all 0.2s;
  padding: 1rem 1rem;
  border-color: #b8961a;
  box-shadow: 0 0 0 3px rgba(184, 150, 26, 0.2);
}

.input-wrapper:focus-within {
  border-color: #060029;
  box-shadow: 0 0 0 3px rgba(6, 0, 41, 0.2);
  background: white;
}

.input-wrapper i {
  color: #9ca3af;
  font-size: 1.1rem;
}

.input-field input, .budget-trigger {
  width: 100%;
  padding: 0.6rem 0.4rem 0.6rem 0.3rem;
  border: none;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  outline: none;
  font-family: 'Inter', sans-serif;
  color: #111827;
}

.budget-trigger {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.budget-trigger span:first-child {
  flex: 1;
}

/* Dropdown menu for budget */
.budget-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
  z-index: 50;
  max-height: 180px;
  overflow-y: auto;
  display: none;
  border: 1px solid #eef2f6;
}

.budget-dropdown.active {
  display: block;
}

.budget-item {
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
  font-weight: 500;
  color: #1f2937;
  border-bottom: 1px solid #f1f5f9;
}

.budget-item:hover {
  background: #060029cc;
  color: #FFFFFF;
}

/* Location suggestions */
.suggestions-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
  z-index: 50;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  border: 1px solid #eef2f6;
}

.suggestions-list.active {
  display: block;
}

.suggestion-item {
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 500;
}

.suggestion-item i {
  color: #2c7a4d;
  width: 20px;
}

.suggestion-item:hover {
  background: #f0fdf4;
}

.search-button {
  appearance: none;
  background-color: #b8961a;
  border: 0.125em solid;
  border-color: #b8961a;
  box-shadow: 0 0 0 3px rgba(184, 150, 26, 0.2);
  border-radius: 30px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  /* display: inline-block; */
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  outline: none;
  padding: 6px 14px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.search-button:disabled {
  pointer-events: none;
}

.search-button:hover {
  color: #fff;
  background-color: #060029;
  box-shadow: 0 0 0 3px rgba(184, 150, 26, 0.2);
  transform: translateY(-2px);
}

.search-button:active {
  box-shadow: none;
  transform: translateY(0);
}

/* Small result / feedback */
.search-feedback {
  /* margin-top: 1.5rem; */
  margin-bottom: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c3e50;
  background: rgba(255, 255, 240, 0.7);
  padding: 0.5rem;
  border-radius: 60px;
  transition: all 0.2s;
}

/* Device friendly */
@media (max-width: 780px) {
  .hero-content {
    padding: 1.5rem 1rem;
    margin: 1.5rem;
  }

  .radio-group {
    gap: 0.8rem;
  }


  .radio-option label {
    font-size: 1rem;
  }

  .filter-card {
    padding: 1rem 1rem;
    border-radius: 10px;

  }


  .filter-row {
    flex-direction: column;
    gap: 1.2rem;
  }

  .input-field {
    width: 100%;
  }

  .input-wrapper {
    padding: 0.5rem 0.5rem;

  }

  .search-btn {
    width: 100%;
    margin-top: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    border-radius: 10px;
  }

  .radio-option label {
    font-size: 0.9rem;
  }
}

/* subtle animation */
.hero-content {
  animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */

/* WHY BUY FROM US  CSS  */
/* main section container – unique asymmetric layout with modern flair */
.why-us-section {
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 5rem 2rem;

  position: relative;
  overflow-x: hidden;
}

/* subtle background texture / abstract shape for depth */
.why-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(197, 160, 89, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* unique grid: mix of responsive masonry-like but clean cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* card design — fresh, elevated, buttery smooth */
.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(2px);
  border-radius: var(--border-radius-card);
  padding: 2rem 1.8rem 2rem 1.8rem;
  transition: var(--transition-default);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* unique hover effect with golden border glow */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.5);
  background: #FFFFFB;
}

/* dynamic icon zone: we use modern pseudo-element plus SVG / unicode hybrid */
.icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(197, 160, 89, 0.12);
  border-radius: var(--border-radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: var(--transition-default);
  position: relative;
}

.feature-card:hover .icon-wrapper {
  background: var(--accent-gold);
  transform: scale(0.96) rotate(2deg);
}

/* custom SVG icons (unique, minimal yet expressive) */
.icon-svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
  fill: none;
  transition: var(--transition-default);
}

.feature-card:hover .icon-svg {
  stroke: white;
  stroke-width: 1.8;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* filled variant for some icons to keep rich look, but mostly outline with premium touch */
.icon-svg-filled {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.6;
}

.feature-card:hover .icon-svg-filled {
  stroke: white;
}

/* card typography */
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* micro-interaction line (accent underline on hover) */
.card-link-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.3px;
  transition: var(--transition-default);
  border-bottom: 1px dashed rgba(197, 160, 89, 0.4);
  padding-bottom: 2px;
}

.feature-card:hover .card-link-marker {
  gap: 0.7rem;
  border-bottom-color: var(--accent-gold);
  color: #b48b3c;
}

/* unique floating decoration (tiny accent dots) */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s;
}

.feature-card:hover::after {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
}

/* fully responsive: small devices fine-tuning */
@media (max-width: 768px) {
  .why-us-section {
    padding: 3rem 1.5rem;
  }

  .feature-card {
    padding: 1.6rem 1.4rem;
  }

  .feature-card h3 {
    font-size: 1.45rem;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .icon-svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 1.25rem;
  }

  .section-header .overline {
    font-size: 0.7rem;
  }
}

/* optional "extra wow" — smooth scroll reveal effect (no JS required, but adds freshness) */
@keyframes subtleFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: subtleFadeUp 0.6s ease-out backwards;
  animation-delay: calc(var(--order, 0) * 0.08s);
}

/* accessibility & touch friendly */
.feature-card:active {
  transform: scale(0.98);
}

/* ================================================= */
/* ================================================= */

/* LISTEN FROM REAL / TESTIMONIAL CSS  */

/* SECTION */
/* ================= SECTION ================= */
.testimonial-section {
  background: var(--bg-page);
  font-family: var(--font-body);
}

/* ================= LAYOUT ================= */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT ================= */
.testimonial-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-left span {
  color: var(--accent-gold);
}

.sub-text {
  color: var(--text-secondary);
  margin: 20px 0;
  font-size: 1rem;
}

/* ================= NAV BUTTON ================= */
.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition-default);
}

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

/* ================= SLIDER ================= */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= CARD ================= */
.testimonial-card {
  min-width: 320px;
  height: 420px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;

  background: var(--card-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-default);
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* IMAGE */
.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.1));
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}

/* QUOTE */
.quote {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* NAME */
.content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* DETAILS */
.content span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ================= ACTIVE CARD ================= */
.testimonial-card.active {
  transform: scale(1.05);
}

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

/* TABLET */
@media(max-width: 992px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-left {
    text-align: center;
  }

  .nav-buttons {
    justify-content: center;
  }
}

/* MOBILE */
@media(max-width: 768px) {

  .section-header h2 {
    font-size: 2rem;
  }

  .testimonial-left h2 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    min-width: 260px;
    height: 360px;
  }

  .quote {
    font-size: 0.85rem;
  }
}

/* SMALL MOBILE */
@media(max-width: 480px) {

  .testimonial-card {
    min-width: 230px;
    height: 320px;
  }

  .nav-btn {
    width: 42px;
    height: 42px;
  }
}


.testimonial-section .slider-track {
  display: flex;
  gap: 24px;
  animation: infiniteScroll 20s linear infinite;
  width: fit-content;
}

.testimonial-section .testimonial-slider:hover .slider-track {
  animation-play-state: paused;
}


/* ===================================================== */
/* ===================================================== */

/* CLIENTAL CSS  */

.fund {
  width: 90%;
  margin: auto;
}

.funding-section {
  padding: 50px 0;
}

.funding-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.funding-left h2 {
  font-size: 34px;
  font-weight: 600;
  background: #2d2d2d;
  color: #fff;
  padding: 18px 30px;
  border-radius: 14px;
  margin: 0;
}

.highlight {
  color: var(--accent-gold);
  font-weight: bold;
}

/* RIGHT SLIDER */
.funding-right {
  width: 60%;
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200%);
  animation: scroll 18s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  margin-right: 20px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hover Pause */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width: 768px) {
  .funding-wrapper {
    flex-direction: column;
  }

  .funding-right {
    width: 100%;
  }

  .funding-left h2 {
    font-size: 24px;
    text-align: center;
  }
}

/* ====================================================== */
/* ====================================================== */

/* COUNTER CSS  */

/* Counter Section Styles */
.counter-section {
  background: var(--bg-page);
  padding: 5rem 0;
  position: relative;
  font-family: var(--font-body);
}

.counter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.counter-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-card);
  text-align: center;
  transition: var(--transition-default);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(255, 255, 245, 0.98);
}

.counter-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.05) 100%);
  border-radius: var(--border-radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  stroke-width: 1.5;
}

.counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-deep);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.count {
  display: inline-block;
}

.plus,
.percent {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-left: 0.1rem;
}

.counter-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.sub-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: inline-block;
  margin-top: 0.25rem;
}

.rating-badge {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  max-width: 320px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition-default);
}

.rating-badge:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars span {
  color: var(--accent-gold);
  font-size: 1.4rem;
  line-height: 1;
}

.rating-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.rating-text strong {
  color: var(--accent-deep);
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .counter-section {
    padding: 3rem 0;
  }

  .counter-container {
    padding: 0 1.2rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .counter-card {
    padding: 1.5rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .plus,
  .percent {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .rating-badge {
    padding: 0.9rem 1.5rem;
    gap: 0.8rem;
  }

  .rating-stars span {
    font-size: 1rem;
  }

  .rating-text {
    font-size: 0.85rem;
  }

  .rating-text strong {
    font-size: 1rem;
  }
}

/* ========================================================= */
/* ========================================================= */

/* PROPERTY CARD CSS  */

.trending-section {
  background: var(--bg-page);
  padding: 5rem 0;
  position: relative;
  font-family: var(--font-body);
  overflow: hidden;
}

.trending-container {
  margin: 0 auto;
  padding: 0 2rem;
}

/* Filter Buttons */
.filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 245, 0.6);
  padding: 0.5rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.filter-btn {
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-default);
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.1);
}

.filter-btn.active {
  background: var(--accent-gold);
  color: white;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Slider Styles */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.slider-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(197, 160, 89, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  z-index: 10;
}

.slider-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  stroke-width: 2;
}

.slider-nav:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.slider-nav:hover svg {
  stroke: white;
}

.slider-track-wrapper {
  overflow-x: auto;
  width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-overflow-scrolling: touch;
}

.slider-track-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.slider-track-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  align-items: stretch;
  /* 🔥 IMPORTANT */

}

/* Card Styles */
.property-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  transition: var(--transition-default);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.15);
  cursor: pointer;
  scroll-snap-align: start;

}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
}

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e2d9 0%, #ddd5ca 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.property-card:hover .card-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gold);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.property-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(44, 62, 43, 0.9);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  min-height: 280px;
}

.property-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.property-location {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-location::before {
  content: "📍";
  font-size: 0.75rem;
}

.property-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.detail-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  margin-top: 0.2rem;

}

.price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.price-unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.emi {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.check-price-btn {
  width: 100%;
  padding: 0.55rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  background-color: var(--accent-gold);
  border-radius: 100px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.7rem;
  cursor: pointer;
  transition: var(--transition-default);
  font-family: var(--font-body);
  margin-top: auto;
}

.check-price-btn .btn-icon {
  /* width: 1.05rem; */
  /* height: 1.05rem; */
  /* margin-right: 0.55rem; */
  /* vertical-align: middle; */
}

.check-price-btn:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}



/* Responsive Design */
@media (max-width: 1024px) {
  .property-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .trending-section {
    padding: 3rem 0;
  }

  .trending-container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .filter-buttons {
    gap: 0.5rem;
    padding: 0.4rem;
    flex-wrap: wrap;
    border-radius: 2rem;
  }

  .filter-btn {
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    background: var(--footer-bg-gradient-start);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
  }

  .property-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .property-price {
  direction: column;
}
  .property-type {
  display: none;
}

  .slider-track {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .card-image {
    height: 200px;
  }

  .property-title {
    font-size: 1.2rem;
  }
  .property-price {
  flex-direction: column;
}
  .price {
    font-size: 1.2rem;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }
}

/* Description limit (default) */
.description-box .desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 👈 kitni lines dikhani hai */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Expanded state */
.description-box.active .desc-text {
  -webkit-line-clamp: unset;
}

/* View more button */
.view-more-btn {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
}


/* ======================================================== */
/* ======================================================== */

/* WHY TRUST ZIEHO CSS  */

/* container & spacing */
.trust-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}



/* trust grid: modern 3 column, responsive */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0 2rem;
}

/* card styling — uses root card-bg and shadow-soft */
.trust-card {
  background: var(--card-bg);
  backdrop-filter: blur(2px);
  border-radius: var(--border-radius-card);
  padding: 2.2rem 1.8rem 2.2rem 1.8rem;
  transition: var(--transition-default);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.18);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.35);
  background: rgba(255, 255, 248, 0.96);
}

/* icon wrapper */
.icon-wrapper {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(44, 62, 43, 0.05) 100%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-icon);
  margin-bottom: 1.6rem;
  transition: var(--hover-transition);
}

.trust-card:hover .icon-wrapper {
  background: rgba(197, 160, 89, 0.2);
  transform: scale(0.98);
}

.icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-gold);
  transition: var(--transition-default);
}

.trust-card h3 {
  font-size: 1.65rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.trust-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* small decorative detail / micro-link */
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.2rem;
  margin-top: 0.2rem;
  transition: var(--hover-transition);
}

.card-meta i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.trust-card:hover .card-meta i {
  transform: translateX(4px);
}

/* trust badge highlight row — extra confidence ribbon */
.trust-assurance-strip {
  background: var(--overlay-light);
  border-radius: 4rem;
  padding: 1.4rem 2rem;
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(4px);
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
}

.assurance-item i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.assurance-item span {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.assurance-item strong {
  color: var(--accent-deep);
  font-weight: 700;
}

/* small responsive touches */
@media (max-width: 1024px) {
  .trust-grid {
    gap: 1.5rem;
  }

  .trust-card {
    padding: 1.8rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-assurance-strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 2rem;
  }

  .trust-section {
    padding: 3rem 1.5rem 4rem;
  }
}

@media (max-width: 480px) {

  .icon-wrapper {
    width: 54px;
    height: 54px;
  }

  .icon-wrapper i {
    font-size: 1.6rem;
  }
}

/* subtle background element: warm elegance */
.bg-subtle-texture {
  position: relative;
  isolation: isolate;
}

.bg-subtle-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 160, 89, 0.03) 1.2px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
}

/* fine adjustments for modern readability */
.trust-card h3+p {
  margin-bottom: 1rem;
}

/* ================================================== */
/* ================================================== */

/* HERO SECTION RADIO BUTTONS CSS  */
/* {{-- Radio buttons CSS for DESKTOP  --}} */
/* Container */
.radio-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

/* Each item */
.radio-inputs>* {
  flex: 0 0 auto;
}

/* Tile */
.radio-tile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 180px;
  min-height: 50px;
  padding: 12px 20px 12px 50px;
  border-radius: 25px;
  border: 2px solid rgba(6, 0, 41, 0.15);
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
}

/* Indicator */
.radio-tile::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #b5bfd9;
  border-radius: 50%;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  transition: 0.25s;
}

/* Icon */
.radio-icon {
  margin-right: 8px;
}

.radio-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #494949;
}

/* Label */
.radio-label {
  font-size: 13px;
  color: #707070;
}

/* Checked */
.radio-input:checked+.radio-tile {
  border-color: #b8961a;
  background: linear-gradient(135deg, #060029 70%, #b8961a 100%);
  box-shadow: 0 8px 20px rgba(6, 0, 41, 0.4);
}

.radio-input:checked+.radio-tile::before {
  background: #b8961a;
  border-color: #b8961a;
}

.radio-input:checked+.radio-tile .radio-icon svg,
.radio-input:checked+.radio-tile .radio-label {
  color: #fff;
  fill: #fff;
}

/* Hover */
.radio-tile:hover {
  transform: translateY(-2px);
  border-color: #b8961a;
  box-shadow: 0 10px 20px rgba(6, 0, 41, 0.25);
}

/* Hide input */
.radio-input {
  position: absolute;
  opacity: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {

  .radio-inputs {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }

  .radio-inputs>label {
    width: auto;
  }

  .radio-tile {
    min-width: 80px;
    min-height: 50px;
    padding: 10px;
    border-radius: 12px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .radio-tile::before {
    top: 6px;
    left: 6px;
    transform: scale(0);
  }

  .radio-icon {
    margin: 0 0 5px 0;
  }

  .radio-label {
    font-size: 12px;
    text-align: center;
  }
}






/* ============================================= */
/* {{-- Radio buttons CSS for MOBILE  --}} */
/* .radio-inputs-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-inputs-2>* {
  margin: 6px;
}

.radio-input-2:checked+.radio-tile-2 {
   border-color: #b8961a;
  background: linear-gradient(135deg, #060029 70%, #b8961a 100%);
  box-shadow: 0 8px 20px rgba(6, 0, 41, 0.4);
  color: #fff;
}

.radio-input-2:checked+.radio-tile-2:before {
 background-color: #b8961a;
  border-color: #b8961a;
  transform: scale(1);
  opacity: 1;
}

.radio-input-2:checked+.radio-tile-2 .radio-icon-2 i {
  color: #fff;
}

.radio-input-2:checked+.radio-tile-2 .radio-label-2 {
   color: #fff;
}

.radio-input-2:focus+.radio-tile-2 {
    border-color: #b8961a;
  box-shadow: 0 0 0 4px rgba(184, 150, 26, 0.2);
}

.radio-input-2:focus+.radio-tile-2:before {
  transform: scale(1);
  opacity: 1;
}

.radio-tile-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 80px;
  border-radius: 0.5rem;
  border: 2px solid rgba(6, 0, 41, 0.15);
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}

.radio-tile-2:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.radio-tile-2:hover {
border-color: #b8961a;
  box-shadow: 0 10px 20px rgba(6, 0, 41, 0.25);
}

.radio-tile-2:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon-2 i {
  width: 2rem;
  height: 2rem;
  fill: #494949;
   color: #060029;
}

.radio-input-2:checked + .radio-tile-2 {
  border-color: #b8961a;
}

.radio-label-2 {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 13px;
}

.radio-input-2 {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
} */
/* ============================================== */
/* ============================================== */

/* FAQ CSS  */
/* container & layout */

/* unique FAQ grid + card style — elegant, interactive, premium */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(2px);
  border-radius: 1.5rem;
  transition: var(--transition-default);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.2);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
  background: rgba(255, 255, 248, 0.96);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.q-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 160, 89, 0.12);
  border-radius: var(--border-radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
  transition: var(--hover-transition);
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.toggle-indicator {
  background: rgba(44, 62, 43, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  font-size: 1.2rem;
  transition: var(--transition-default);
}

.faq-item.active .toggle-indicator i {
  transform: rotate(180deg);
}

.toggle-indicator i {
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  padding: 0 2rem;
  background: linear-gradient(to bottom, rgba(197, 160, 89, 0.02), transparent);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 2rem 1.6rem 2rem;
}

.answer-inner {
  padding-top: 0.2rem;
  padding-bottom: 0.6rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.2rem;
  margin-top: 0.25rem;
}

.answer-inner p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.answer-inner ul, .answer-inner .extra-detail {
  margin-top: 0.5rem;
  color: #4b4a43;
  font-size: 0.95rem;
  list-style-type: none;
}

.answer-inner ul li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.answer-inner ul li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  width: 1.2rem;
}

/* additional unique flair: micro-interaction + gold underline */
.faq-question:hover .q-icon {
  background: rgba(197, 160, 89, 0.22);
  transform: scale(1.02);
}

/* decorative accent */
.faq-decor {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.faq-decor span {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  opacity: 0.3;
  border-radius: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {

  .faq-question {
    padding: 1.2rem 1.2rem;
  }

  .question-content {
    gap: 0.8rem;
  }

  .q-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .answer-inner {
    padding-left: 0.8rem;
  }
}




/* smooth active states */
/* button, .faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
} */

/* ============================================ */
/* ============================================ */