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

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

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul { list-style: none; }

:root {
  --primary: #ff5a3c;
  --dark: #071c1f;
  --heading: #0b2c3d;
  --text: #5c727d;
  --light-bg: #f2f6f7;
  --white: #ffffff;
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 90, 60, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-arrow { font-size: 18px; line-height: 1; }
.center { text-align: center; }
.section-light { background: var(--light-bg); }
.mt-32 { margin-top: 32px; }

/* CHECK LIST */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #8aa0aa;
  font-size: 16px;
  line-height: 1.75;
  list-style: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a3c;
}

/* SECTION BASE */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary);
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.eyebrow svg { flex-shrink: 0; }

/* ========================
   HEADER
======================== */
.header { width: 100%; background: #fff; }

.topbar {
  background: var(--dark);
  color: #fff;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.topbar-item img { width: 14px; height: 14px; object-fit: contain; }
.topbar-right a { display: inline-flex; align-items: center; justify-content: center; }
.topbar-right img { width: 14px; height: 14px; object-fit: contain; }

.navbar { background: #fff; }

.navbar-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { width: auto; height: 38px; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #233638;
  transition: 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
  flex-shrink: 0;
}

.login-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #071c1f;
}

.signup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(255, 90, 60, 0.2);
  transition: 0.25s ease;
}

.signup-link:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #071c1f;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }


/* ========================
   HERO
======================== */
.hero {
  background: #eef3f6;
  padding: 40px 0 70px;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: 40px;
  align-items: center;
  min-height: 760px;
}

.hero-arrow {
  position: absolute;
  left: -220px;
  top: 250px;
  width: 155px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-top: 40px;
}

.hero-content h1 {
  max-width: 500px;
  margin-bottom: 28px;
  color: #071c1f;
  font-family: 'Poppins', sans-serif;
  font-size: 57px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-content p {
  max-width: 430px;
  margin-bottom: 36px;
  color: #8aa0aa;
  font-size: 16px;
  line-height: 1.8;
}

.hero .btn-primary {
  min-width: 170px;
  height: 58px;
  background: #ff5a3c;
  color: #fff;
  box-shadow: 0 18px 35px rgba(255, 90, 60, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 740px;
  max-width: 100%;
  height: 560px;
  background: #cfcfcf;
  overflow: hidden;
}

.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-revenue-card {
  position: absolute;
  left: -35px;
  bottom: 105px;
  width: 190px;
  min-height: 170px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  z-index: 3;
}

.revenue-icon { width: 34px; height: 34px; margin-bottom: 18px; object-fit: contain; }

.hero-revenue-card h4 {
  margin-bottom: 10px;
  color: #071c1f;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.hero-revenue-card p { color: #8aa0aa; font-size: 16px; }

.hero-how-it-works {
  position: absolute;
  right: 0;
  bottom: 105px;
  height: 60px;
  min-width: 190px;
  padding: 0 16px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ff5a3c;
  color: #fff;
  z-index: 3;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.play-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #ff5a3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero-house-tabs {
  position: absolute;
  left: 0;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 26px;
}

.house-tab {
  width: 110px;
  height: 62px;
  background: #a8a8a8;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 600;
}

.house-tab.active { background: #9c9c9c; }

.hero-house-tabs > .house-tab:nth-child(2),
.hero-house-tabs > .house-tab:nth-child(3) { margin-left: -26px; }

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
  padding-bottom: 10px;
}

.hero-pagination .line { width: 28px; height: 2px; background: #071c1f; }
.hero-pagination .page { color: #9ca3af; font-size: 14px; font-weight: 500; }
.hero-pagination .page.active { color: #071c1f; font-weight: 700; }

/* ========================
   SHARED LAYOUT
======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-heading { margin-bottom: 52px; }
.section-heading.center { text-align: center; }

.section-heading h2 {
  margin-bottom: 16px;
  color: #071c1f;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.section-heading p {
  color: #8aa0aa;
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   COMMERCIAL
======================== */
.commercial {
  padding-top: 110px;
  padding-bottom: 90px;
  background: #fff;
}

.commercial-cards { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }

.info-card {
  width: 100%;
  max-width: 340px;
  min-height: 250px;
  padding: 42px 28px 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(7, 28, 31, 0.08);
  text-align: center;
  transition: 0.25s ease;
}

.info-card:hover { transform: translateY(-6px); }

.info-card.active {
  background: #ff5a3c;
  color: #fff;
  box-shadow: 0 18px 50px rgba(255, 90, 60, 0.28);
}

.info-card h3 { margin-bottom: 18px; color: #071c1f; font-size: 24px; font-weight: 700; }
.info-card p { color: #8aa0aa; font-size: 16px; line-height: 1.75; }
.info-card.active h3, .info-card.active p { color: #fff; }

/* ========================
   DREAM LIVING SPACES
======================== */
.dream {
  padding-top: 40px;
  padding-bottom: 110px;
}

.dream-images {
  position: relative;
  min-height: 500px;
}

.dream-img-lg {
  width: 88%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.dream-img-lg img { width: 100%; height: 100%; object-fit: cover; }

.dream-img-sm {
  position: absolute;
  width: 45%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  right: 0;
  top: 80px;
}

.dream-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.rating-badge {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 120px;
  height: 120px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rating-stars { display: flex; gap: 2px; }

.star {
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
}

.rating-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

.dream-content { max-width: 520px; }

.dream-content h2 {
  margin-bottom: 16px;
  color: #071c1f;
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
}

.dream-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #899aa2;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 392px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  margin-bottom: 8px;
  color: #071c1f;
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.feature-item p {
  color: #899aa2;
  font-size: 16px;
  line-height: 1.5;
}

/* ========================
   TODAY SELLS PROPERTIES
======================== */
.about {
  padding-top: 10px;
  padding-bottom: 110px;
}

.about-content { max-width: 520px; }

.about-content h2 {
  margin-bottom: 16px;
  color: #071c1f;
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
}

.about-desc {
  font-size: 16px;
  color: #899aa2;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* PROP LIST */
.prop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.prop-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #899aa2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prop-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* HOUSE SLIDER */
.house-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.house-cards { display: flex; gap: 16px; align-items: flex-end; }

.house-card { cursor: pointer; }

.house-card-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
  width: 88px;
  height: 60px;
}

.house-card-img img { width: 100%; height: 100%; object-fit: cover; }

.house-card.active .house-card-img { width: 114px; height: 80px; border: 2px solid rgba(0,0,0,0.1); }

.house-card span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.slider-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar { width: 63px; height: 2px; background: #ebebeb; position: relative; }
.progress-fill { width: 23px; height: 2px; background: #071c1f; }

.page-numbers { display: flex; align-items: baseline; gap: 4px; }

.page-numbers .current {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #071c1f;
}

.page-numbers .other {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #627193;
}

/* ABOUT GALLERY */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
  align-items: stretch;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-gallery img:first-child {
  grid-row: 1 / span 2;
}

/* ========================
   SERVICES
======================== */
.services {
  background: #f2f8fb;
  padding-top: 110px;
  padding-bottom: 110px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.25s ease;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: #ff5a3c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #071c1f;
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.service-card p {
  color: #8c8c8c;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  transition: color 0.2s;
}

.service-link:hover { color: var(--primary); }
.service-link span { font-size: 18px; }

/* ========================
   FEATURED PROPERTY
======================== */
.featured {
  padding-top: 110px;
  padding-bottom: 100px;
}

.featured-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.featured-top h2 {
  margin-bottom: 10px;
  color: #071c1f;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.featured-top p { color: #8aa0aa; font-size: 16px; line-height: 1.75; }

.featured-tabs { display: flex; gap: 16px; flex-wrap: wrap; }

.tab {
  border: none;
  background: transparent;
  color: #8aa0aa;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.tab.active { color: var(--primary); }

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(7, 28, 31, 0.08);
  transition: 0.25s ease;
}

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

.property-img {
  height: 320px;
  overflow: hidden;
}

.property-img img { width: 100%; height: 100%; object-fit: cover; }

.property-body { padding: 22px 22px 24px; }

.property-body h3 {
  margin-bottom: 8px;
  color: #071c1f;
  font-size: 20px;
  font-weight: 700;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.property-location span {
  color: #8aa0aa;
  font-size: 14px;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price {
  color: var(--primary);
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.property-arrow {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #f2f6f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-arrow.active {
  background: var(--primary);
}

/* ========================
   UNIT BANNER
======================== */
.unit-banner {
  background: #c4c4c4;
  padding: 0;
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 510px;
}

.unit-badge {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  z-index: 2;
}

.unit-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1.5%;
}

.unit-badge strong {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5%;
}

.unit-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(7, 28, 31, 0.12);
  display: flex;
  align-items: stretch;
  overflow: visible;
  width: 583px;
  min-height: 150px;
}

.unit-card-img {
  width: 150px;
  flex-shrink: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.unit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unit-card-img .img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-card-img .img-badge img {
  width: 100%;
  height: 100%;
  display: block;
}

.unit-card-info {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.unit-price {
  color: #071c1f;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.5%;
}

.unit-address {
  color: #6d7781;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -1%;
  margin-bottom: 8px;
}

.unit-amenities {
  display: flex;
  gap: 12px;
  align-items: center;
}

.amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #627193;
}

.amenity-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 90, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================
   TESTIMONIAL
======================== */
.testimonial {
  padding-top: 110px;
  padding-bottom: 110px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-image img { width: 100%; border-radius: 12px; object-fit: cover; }

.testimonial-content { max-width: 500px; }

.testimonial-content .quote {
  margin-bottom: 24px;
  color: #6f7f86;
  font-size: 18px;
  line-height: 1.9;
}

.testimonial-content h3 { margin-bottom: 6px; color: #071c1f; font-size: 22px; font-weight: 700; }
.testimonial-content span { color: #8aa0aa; font-size: 15px; }

/* ========================
   RENTING
======================== */
.renting { padding-top: 30px; padding-bottom: 110px; }

.city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 38px;
}

.city-card {
  min-height: 160px;
  padding: 28px 24px;
  border-radius: 10px;
  background: #8f8f8f;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.city-card h3 { max-width: 220px; font-size: 22px; font-weight: 700; }

.city-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-height: 40px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.subscribe-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
}

.subscribe-form input {
  flex: 1;
  min-height: 58px;
  border: 1px solid #d9e2e8;
  border-radius: 10px;
  padding: 0 18px;
  outline: none;
  font-size: 15px;
}

.subscribe-form input::placeholder { color: #9aa8ae; }

/* ========================
   BLOG
======================== */
.blog { padding-top: 20px; padding-bottom: 110px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(7, 28, 31, 0.08);
}

.blog-card img { width: 100%; height: 260px; object-fit: cover; }
.blog-body { padding: 22px 24px; }
.blog-body h3 { margin-bottom: 12px; color: #071c1f; font-size: 22px; font-weight: 700; }
.blog-body p { color: #8aa0aa; font-size: 15px; line-height: 1.75; }

/* ========================
   CONTACT
======================== */
.contact { padding-top: 30px; padding-bottom: 120px; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
  color: #071c1f;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 520px;
}

.contact-desc {
  color: #8c8c8c;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-image { margin-top: 36px; }
.contact-image img { width: 100%; max-width: 520px; border-radius: 10px; object-fit: cover; }

.contact-form-box {
  background: #f2f8fb;
  border-radius: 12px;
  padding: 34px 28px;
  box-shadow: 0 12px 40px rgba(7, 28, 31, 0.06);
}

.contact-form-box h3 {
  margin-bottom: 24px;
  color: #071c1f;
  font-size: 30px;
  font-weight: 700;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e2e8;
  border-radius: 10px;
  background: #fff;
  padding: 16px 18px;
  outline: none;
  font-size: 15px;
  color: #071c1f;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa8ae; }

.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 0;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 80px 0 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo svg { flex-shrink: 0; }

.footer-logo h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.footer-brand > p {
  color: #899aa2;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 12px; }

.social-icon-box {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.social-icon-box:hover {
  border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 14px; }

.footer-links a {
  color: #899aa2;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-address {
  color: #899aa2;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.newsletter-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
}

.newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-input button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 4px solid var(--primary);
}

.footer-bottom span {
  color: #899aa2;
  font-size: 14px;
}

.footer-bottom span:last-child {
  color: rgba(255,255,255,0.4);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1199px) {
  .two-col,
  .contact-wrapper,
  .testimonial-wrapper { grid-template-columns: 1fr; }

  .featured-top { flex-direction: column; align-items: flex-start; }

  .services-grid,
  .property-grid,
  .blog-grid,
  .city-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .testimonial-wrapper { max-width: 760px; }
}

@media (max-width: 991px) {
  .commercial, .dream, .about, .services, .featured, .testimonial, .renting, .blog, .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading h2,
  .dream-content h2,
  .about-content h2,
  .featured-top h2,
  .contact-info h2 { font-size: 34px; }

  .services-grid, .property-grid, .blog-grid, .city-cards { grid-template-columns: 1fr; }

  .subscribe-form { flex-direction: column; }

  .unit-badge { position: static; margin-right: 16px; }
  .unit-banner-inner { justify-content: flex-start; gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar-inner { min-height: auto; flex-wrap: wrap; justify-content: center; padding: 20px 0; }
  .nav-menu { order: 3; width: 100%; justify-content: center; margin-left: 0; flex-wrap: wrap; gap: 20px; }
  .nav-actions { margin-left: 0; }
  .nav-menu a, .login-link { font-size: 16px; }
  .hero-content h1 { font-size: 40px; }
  .hero-content p { font-size: 15px; }

  .hero-wrapper { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .hero-main-image { position: relative; width: 100%; height: 340px; }
  .hero-house-tabs, .hero-revenue-card, .hero-how-it-works, .hero-arrow { display: none; }

  .dream-images { min-height: 320px; }
  .dream-img-lg { height: 320px; width: 85%; }
  .dream-img-sm { height: 240px; top: 60px; }
  .dream-content h2, .about-content h2 { font-size: 32px; line-height: 40px; }

  .section-heading { margin-bottom: 36px !important; }
  .section-heading h2, .featured-top h2, .contact-info h2 { font-size: 28px; }

  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img { min-height: 200px; }

  .property-img { height: 220px; }

  .unit-card { min-width: auto; flex-direction: column; }
  .unit-card-img { width: 100%; height: 180px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .rating-badge { width: 100px; height: 100px; }
  .star { font-size: 12px; }
  .rating-text { font-size: 10px; }
}

@media (max-width: 576px) {
  .container { width: calc(100% - 24px); }
  .hero { padding: 60px 0; }
  .hero-content h1 { font-size: 34px; }
  .btn { min-height: 52px; padding: 0 24px; font-size: 15px; }
  .signup-link { min-width: 112px; height: 48px; font-size: 15px; }

  .dream-content h2, .about-content h2 { font-size: 26px; line-height: 34px; }
  .dream-images { min-height: 240px; }
  .dream-img-lg { height: 240px; width: 80%; }
  .dream-img-sm { height: 180px; top: 40px; }
  .rating-badge { width: 80px; height: 80px; }

  .feature-icon { width: 44px; height: 44px; }
  .feature-item h3 { font-size: 18px; }
  .feature-list { gap: 20px; }

  .service-icon { width: 56px; height: 56px; }
  .service-card { padding: 30px 20px; }
  .service-card h3 { font-size: 20px; }
}
