@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #f1913d;
  --primary-light: rgba(241, 145, 61, 0.1);
  --primary-lighter: #fef7f1;
  --secondary: #2c2e33;
  --heading: #2c2e33;
  --text: #5c5e61;
  --text-2: #161e2d;
  --note: #a8abae;
  --line: #ececec;
  --white: #ffffff;
  --black: #000000;
  --color-green: #06a788;
  --color-red: #da3838;
  --color-gold: #c79e34;
  --color-blue: #1563df;
  --color-purple: #7695ff;
  --font-main: 'Lexend', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: all .3s; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.9rem; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-fluid { max-width: 100%; padding: 0 40px; }

/* Sections */
section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

/* Heading Section */
.heading-section { margin-bottom: 50px; }
.heading-section h2 { margin-bottom: 14px; }
.heading-section p { color: var(--text); }
/* .heading-section p { color: var(--text); max-width: 550px; } */
/* .heading-section.text-center p { margin: 0 auto; } */

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: #e07c2a; border-color: #e07c2a; }
.btn-outline {
  background: transparent;
  color: var(--heading);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all .3s;
}
.header-inner { padding: 0 40px; }
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.header-logo img { height: 40px; }
.header-logo .logo-dark { display: none; }

/* Nav */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  border-radius: var(--radius);
  transition: all .3s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--primary); }
.main-nav > ul > li > a i { font-size: 10px; transition: transform .3s; }
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 100;
}
.main-nav > ul > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--text);
  border-radius: 5px;
}
.dropdown-menu a:hover { background: var(--primary-lighter); color: var(--primary); }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
}
.header-phone svg { color: var(--primary); }
.btn-mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--heading);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/section/banner-1.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 140px 40px 80px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-content p {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 550px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

/* Search Box */
.search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 820px;
}
.search-tabs { display: flex; gap: 4px; margin-bottom: 20px; }
.search-tab {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--line);
  color: var(--text);
  transition: all .3s;
}
.search-tab.active, .search-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.search-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px auto;
  gap: 12px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--note); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  outline: none;
  transition: border-color .3s;
  background: #fff;
  appearance: none;
}
.form-control:focus { border-color: var(--primary); }
.search-box .btn { height: 48px; }

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat h3 { color: #fff; font-size: 2rem; }
.hero-stat p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ===== PROPERTY CARD ===== */
.property-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
  height: 100%;
}
.property-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.property-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.property-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.property-card:hover .img-wrap img { transform: scale(1.06); }
.card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.tag {
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.tag-featured { background: var(--primary); color: #fff; }
.tag-sale { background: var(--color-green); color: #fff; }
.tag-rent { background: var(--color-blue); color: #fff; }
.tag-new { background: var(--color-gold); color: #fff; }
.card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity .3s;
}
.property-card:hover .card-actions { opacity: 1; }
.card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--heading);
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card-action-btn:hover { background: var(--primary); color: #fff; }
.card-body { padding: 20px; }
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--heading);
}
.card-title a:hover { color: var(--primary); }
.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
}
.card-location i { color: var(--primary); }
.card-meta {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
}
.card-meta-item strong { color: var(--heading); font-weight: 600; }
.card-meta-item i { color: var(--primary); font-size: 16px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.card-price small { font-size: 12px; color: var(--note); font-weight: 400; }

/* ===== GRID ===== */
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { flex: 1; padding: 0 12px; }
.col-2 { width: 16.666%; padding: 0 12px; }
.col-3 { width: 25%; padding: 0 12px; }
.col-4 { width: 33.333%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-8 { width: 66.666%; padding: 0 12px; }
.col-12 { width: 100%; padding: 0 12px; }
.mb-24 { margin-bottom: 24px; }
.g-24 { gap: 24px; }

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property-grid.col-4 { grid-template-columns: repeat(4, 1fr); }
.property-grid.col-2 { grid-template-columns: repeat(2, 1fr); }

/* ===== SECTION BACKGROUNDS ===== */
.bg-light { background: #f8f9fa; }
.bg-primary-light { background: var(--primary-lighter); }
.bg-dark { background: var(--secondary); }

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.neighborhood-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.neighborhood-card.tall { grid-row: span 2; }
.neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
  min-height: 200px;
}
.neighborhood-card:hover img { transform: scale(1.05); }
.neighborhood-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.neighborhood-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}
.neighborhood-content h4 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.neighborhood-content span { font-size: 13px; opacity: .85; }

/* ===== STATS ===== */
.stats-section { background: var(--secondary); color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; opacity: .7; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: all .3s;
}
.step-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--primary);
  transition: all .3s;
}
.step-card:hover .step-icon { background: var(--primary); color: #fff; }
.step-number {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 { margin-bottom: 12px; }

/* ===== AGENTS ===== */
.agent-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
  text-align: center;
}
.agent-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.agent-card .img-wrap { aspect-ratio: 1; overflow: hidden; }
.agent-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.agent-card:hover .img-wrap img { transform: scale(1.06); }
.agent-info { padding: 20px; }
.agent-info h5 { margin-bottom: 4px; }
.agent-role { font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.agent-stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.agent-stat { font-size: 13px; color: var(--text); }
.agent-stat strong { display: block; color: var(--heading); font-size: 15px; }
.agent-social { display: flex; justify-content: center; gap: 8px; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: all .3s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Agents Grid */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--primary-lighter); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #ffa920; margin-bottom: 16px; font-size: 14px; }
.testimonial-text { font-size: 14.5px; line-height: 1.75; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author h6 { margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--note); }
.quote-icon { font-size: 40px; color: var(--primary); opacity: .2; line-height: 1; margin-bottom: 8px; font-family: Georgia, serif; }

/* ===== NEWSLETTER BANNER ===== */
.newsletter-section {
  background: url('../images/section/section-about-1.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,46,51,0.92) 0%, rgba(44,46,51,0.8) 100%);
}
.newsletter-content { position: relative; z-index: 2; max-width: 600px; }
.newsletter-content h2 { color: #fff; margin-bottom: 16px; }
.newsletter-content p { opacity: .8; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form .form-control { flex: 1; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
#footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--primary); font-size: 18px; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-col h5 { color: #fff; font-size: 15px; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color .3s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all .3s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--primary); }

/* ===== PAGE TITLE ===== */
.page-title {
  position: relative;
  padding: 120px 0 60px;
  background: url('../images/section/page-title-1.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.page-title-content { position: relative; z-index: 2; }
.page-title-content h1 { color: #fff; margin-bottom: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--primary); }

/* ===== PROPERTY LISTING PAGE ===== */
.listing-sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.listing-sidebar h4 { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.filter-group { margin-bottom: 24px; }
.filter-group label { display: block; font-size: 13px; font-weight: 600; color: var(--heading); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
.filter-group .form-control { font-size: 14px; }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tag {
  padding: 6px 14px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s;
  color: var(--text);
}
.filter-tag.active, .filter-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.price-range { display: flex; gap: 10px; }
.price-range .form-control { width: 50%; }

.listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.listing-top h6 { color: var(--text); font-weight: 400; }
.listing-top h6 strong { color: var(--heading); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all .3s;
  background: #fff;
}
.view-btn.active, .view-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Property List Item */
.property-list-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
  transition: all .3s;
  margin-bottom: 24px;
}
.property-list-item:hover { box-shadow: var(--shadow-hover); }
.property-list-item .img-wrap { width: 320px; flex-shrink: 0; }
.property-list-item .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.property-list-item .card-body { flex: 1; padding: 28px; }

/* ===== PROPERTY DETAIL ===== */
.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.gallery-main img { width: 100%; height: 460px; object-fit: cover; }
.gallery-grid { display: grid; grid-template-rows: repeat(2, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.property-title-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.property-title-bar h1 { font-size: 2rem; }
.property-title-bar .price { font-size: 1.8rem; font-weight: 700; color: var(--primary); white-space: nowrap; }

.property-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.feature-item {
  background: #f8f9fa;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.feature-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
.feature-item strong { display: block; font-size: 16px; font-weight: 700; color: var(--heading); }
.feature-item span { font-size: 12px; color: var(--note); }

.property-section { margin-bottom: 40px; }
.property-section h3 {
  font-size: 1.25rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.amenity-item i { color: var(--primary); font-size: 16px; }

/* Contact Agent Box */
.agent-contact-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.agent-contact-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.agent-contact-header img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.agent-contact-header h5 { margin-bottom: 4px; }
.agent-contact-header span { font-size: 13px; color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-control { padding: 13px 16px; }
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.contact-info-box {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
}
.contact-info-box h3 { color: #fff; margin-bottom: 16px; }
.contact-info-box p { opacity: .7; margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-text span { font-size: 12px; opacity: .6; display: block; margin-bottom: 3px; }
.contact-item-text a, .contact-item-text p { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500; }
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 8px; }
.contact-form-box p { color: var(--text); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-full-form { display: flex; flex-direction: column; gap: 16px; }
.contact-full-form textarea { min-height: 130px; resize: vertical; }

/* ===== AGENTS PAGE ===== */
.agent-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
}
.agent-detail-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.agent-detail-img { aspect-ratio: 4/3; overflow: hidden; }
.agent-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.agent-detail-card:hover .agent-detail-img img { transform: scale(1.05); }
.agent-detail-body { padding: 24px; }
.agent-detail-body h4 { margin-bottom: 4px; }
.agent-detail-body .role { color: var(--primary); font-size: 13px; margin-bottom: 16px; }
.agent-detail-body p { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }
.agent-contact-links { display: flex; gap: 10px; }
.agent-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
  border: 1.5px solid var(--line);
  color: var(--heading);
}
.agent-contact-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.agent-contact-link i { font-size: 15px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 50px; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: all .3s;
  background: #fff;
}
.page-btn.active, .page-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn.disabled { opacity: .4; cursor: not-allowed; }

/* ===== MAP ===== */
.map-section iframe { border-radius: var(--radius-lg); display: block; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--note); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.w-100 { width: 100%; }

/* Star rating */
.rating { display: flex; gap: 3px; color: #ffa920; font-size: 14px; }

/* Badges */
.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: rgba(6,167,136,0.1); color: var(--color-green); }

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .3s;
  overflow-y: auto;
  padding: 80px 24px 40px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--heading);
}
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--heading); }
.mobile-nav a:hover { color: var(--primary); }

/* Scroll to top */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(241,145,61,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  border: none;
}
#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: #e07c2a; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease both; }
.fade-in-up-2 { animation: fadeInUp .6s .15s ease both; }
.fade-in-up-3 { animation: fadeInUp .6s .3s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .main-nav, .header-phone { display: none; }
  .btn-mobile-menu { display: flex !important; }
  .header-right .btn:not(.btn-mobile-menu) { display: none; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhood-card.tall { grid-row: span 1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; }
  .property-features-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .property-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .agents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-row { grid-template-columns: 1fr; }
  .property-title-bar { flex-direction: column; }
  .container-fluid { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .property-list-item { flex-direction: column; }
  .property-list-item .img-wrap { width: 100%; height: 220px; }
}
