@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #e84118;
  --primary-dark: #c73410;
  --primary-light: #ff6b4a;
  --secondary: #f5a623;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #2d2d2d;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #f7f8fa;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 64px 0;
}
.section-sm {
  padding: 40px 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 65, 24, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

/* ========== BADGE ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.badge-primary {
  background: rgba(232, 65, 24, 0.1);
  color: var(--primary);
}
.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}
.badge-verified {
  background: #eff6ff;
  color: #3b82f6;
}

/* ========== SECTION HEADING ========== */
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: rgba(232, 65, 24, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  white-space: nowrap;
}
.nav-logo span {
  color: var(--dark);
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.nav-city {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-city:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(232, 65, 24, 0.07);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-btn-post {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-btn-post:hover {
  background: var(--primary-dark);
}
.nav-btn-login {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.82) 0%,
    rgba(26, 26, 46, 0.55) 60%,
    rgba(26, 26, 46, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
#typing-text {
  border-right: none;
  animation: none;
}
.hero-title span {
  color: var(--secondary);
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--secondary);
  }
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 600px;
}

/* Search Box */
.search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-tabs {
  display: flex;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.search-tab {
  flex: 1;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.search-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #fff;
}
.search-tab:hover:not(.active) {
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}
.search-body {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 16px;
}
.search-field {
  flex: 1;
  position: relative;
}
.search-field input,
.search-field select {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.search-field select {
  padding-left: 16px;
}
.search-field input:focus,
.search-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.1);
}
.search-field:not(:last-child) {
  padding-right: 0;
  margin-right: 0;
}
.search-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}
.search-btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Stats Bar */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.hero-stat {
  color: #fff;
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--dark);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-item {
  background: var(--dark);
  padding: 24px 32px;
  text-align: center;
}
.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ========== PROPERTY CARD ========== */
.property-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prop-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.prop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .prop-img-wrap img {
  transform: scale(1.06);
}
.prop-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.prop-verified {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #3b82f6;
  display: flex;
  align-items: center;
  gap: 3px;
}
.prop-wishlist {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.prop-wishlist:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}
.prop-body {
  padding: 16px;
}
.prop-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
}
.prop-per {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.prop-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 6px 0 4px;
  line-height: 1.4;
}
.prop-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-specs {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.prop-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.prop-contact-btns {
  display: flex;
  gap: 8px;
}
.prop-btn {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.prop-btn-call {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.prop-btn-call:hover {
  background: var(--success);
  color: #fff;
}
.prop-btn-msg {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.prop-btn-msg:hover {
  background: #3b82f6;
  color: #fff;
}

/* ========== PROPERTIES GRID ========== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.properties-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ========== FEATURED PROPERTIES ========== */
.featured-section {
  background: #fff;
}
.cards-slider-wrap {
  position: relative;
}
.cards-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cards-slider::-webkit-scrollbar {
  height: 4px;
}
.cards-slider::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}
.cards-slider .property-card {
  min-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.slider-prev {
  left: -20px;
}
.slider-next {
  right: -20px;
}

/* ========== CITY GRID ========== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 160px;
  cursor: pointer;
}
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.city-card:hover img {
  transform: scale(1.08);
}
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.2) 60%
  );
  transition: var(--transition);
}
.city-card:hover .city-card-overlay {
  background: linear-gradient(
    to top,
    rgba(232, 65, 24, 0.75) 0%,
    rgba(26, 26, 46, 0.25) 60%
  );
}
.city-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
}
.city-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.city-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* ========== PROPERTY TYPE GRID ========== */
.prop-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.prop-type-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.prop-type-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.prop-type-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(232, 65, 24, 0.1),
    rgba(245, 166, 35, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
  transition: var(--transition);
}
.prop-type-card:hover .prop-type-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.prop-type-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.prop-type-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== ADVANTAGE SECTION ========== */
.advantage-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.advantage-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.advantage-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(232, 65, 24, 0.1),
    rgba(245, 166, 35, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.advantage-card:hover .advantage-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

/* ========== PROJECTS SECTION ========== */
.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-rera {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.project-tag {
  position: absolute;
  top: 12px;
  right: 12px;
}
.project-body {
  padding: 16px;
}
.project-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.project-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.project-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}
.project-config {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.testimonials-section .section-header h2 {
  color: #fff;
}
.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 14px;
}
.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.testimonial-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ========== APP BANNER ========== */
.app-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #ff6b4a 50%,
    var(--secondary) 100%
  );
  padding: 56px 0;
}
.app-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.app-banner-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.app-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 420px;
}
.app-store-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.store-btn-icon {
  font-size: 26px;
}
.store-btn-text {
  text-align: left;
}
.store-btn-sub {
  font-size: 10px;
  opacity: 0.75;
  display: block;
}
.store-btn-name {
  font-size: 15px;
  font-weight: 700;
  display: block;
}
.app-phones {
  font-size: 80px;
  text-align: right;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
}
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ========== PROPERTIES PAGE ========== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 40px 0;
  margin-top: 64px;
}
.page-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}
.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.85);
}

.properties-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  padding: 32px 0 60px;
}
.filter-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 84px;
  overflow: hidden;
}
.filter-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.filter-clear {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}
.filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.filter-chip.active,
.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 65, 24, 0.06);
}
.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.filter-checkbox input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}
.filter-checkbox span {
  font-size: 13px;
  color: var(--text);
}
.price-range-inputs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.price-range-inputs input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
}
.price-range-inputs input:focus {
  border-color: var(--primary);
}

.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.listings-count h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.listings-count p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.listings-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  outline: none;
  cursor: pointer;
}
.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.view-btn {
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.view-btn.active {
  background: var(--primary);
  color: #fff;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.listings-grid.list-view {
  grid-template-columns: 1fr;
}
.listings-grid.list-view .property-card {
  display: grid;
  grid-template-columns: 240px 1fr;
}
.listings-grid.list-view .prop-img-wrap {
  height: 100%;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  padding-bottom: 20px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.page-btn.active,
.page-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.page-ellipsis {
  color: var(--text-muted);
  padding: 0 4px;
}

/* ========== PROPERTY DETAIL ========== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 32px 0 60px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 160px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.gallery-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.gallery-main img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-main:hover img {
  transform: scale(1.04);
}
.gallery-thumb {
  position: relative;
  overflow: hidden;
}
.gallery-thumb:hover img {
  transform: scale(1.06);
}
.gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.detail-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.detail-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}
.detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 4px;
}
.detail-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.detail-spec {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.detail-spec-icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.detail-spec-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
}
.detail-spec-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.amenity-icon {
  font-size: 18px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 84px;
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.contact-form-group {
  margin-bottom: 14px;
}
.contact-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form-g.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 300px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 14px 14px 44px !important;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #fff;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  resize: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--primary);
}
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.contact-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.contact-btn-call {
  background: var(--success);
  color: #fff;
}
.contact-btn-call:hover {
  background: #059669;
}
.contact-btn-wa {
  background: #25d366;
  color: #fff;
}
.contact-btn-wa:hover {
  background: #1da851;
}
.contact-btn-email {
  background: var(--primary);
  color: #fff;
}
.contact-btn-email:hover {
  background: var(--primary-dark);
}

/* EMI Calculator */
.emi-calc {
}
.emi-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.emi-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.emi-field input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}
.emi-field-val {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.emi-result {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.emi-amount {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.emi-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* ========== POST PROPERTY PAGE ========== */
.post-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 48px 0;
  margin-top: 64px;
  text-align: center;
}
.post-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.post-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-size: 16px;
}
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.step-num.active {
  background: var(--primary);
  color: #fff;
}
.step-num.completed {
  background: var(--success);
  color: #fff;
}
.step-num.pending {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}
.step-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.step-label.pending {
  color: rgba(255, 255, 255, 0.4);
}
.step-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0;
}
.step-line.completed {
  background: var(--success);
}

.post-body {
  max-width: 760px;
  margin: 40px auto 60px;
  padding: 0 20px;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.form-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.09);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.form-type-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.form-type-option:hover,
.form-type-option.active {
  border-color: var(--primary);
  background: rgba(232, 65, 24, 0.06);
}
.form-type-option .icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.form-type-option .name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.photo-upload-area:hover {
  border-color: var(--primary);
  background: rgba(232, 65, 24, 0.03);
}
.photo-upload-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.photo-upload-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.photo-upload-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
  margin-top: 64px;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.about-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.about-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
}
.about-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 28px auto 14px;
}
.team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.team-role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 20px;
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding: 60px 0;
}
.contact-info {
}
.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 65, 24, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ========== UTILITY ========== */
.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--text-muted);
}
.font-bold {
  font-weight: 700;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-8 {
  margin-bottom: 8px;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.hidden {
  display: none !important;
}
