.elementor-30 .elementor-element.elementor-element-ec620ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-30:not(.elementor-motion-effects-element-type-background), body.elementor-page-30 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#ffffff;}:root{--page-title-display:none;}/* Start custom CSS *//* GLOBAL */
body {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('YOUR-IMAGE-HERE.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin: 5px;
  transition: 0.3s ease;
}

.btn.primary {
  background: #5a3b2e;
  color: #fff;
}

.btn.primary:hover {
  background: #3f281f;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #3f281f;
}

.btn.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* WELCOME */
.welcome {
  background: #faf7f4;
  text-align: center;
}

.welcome p {
  max-width: 750px;
  margin: auto;
  font-size: 1.05rem;
}

/* APARTMENTS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

/* WHY */
.why {
  background: #fff;
  text-align: center;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.features li {
  background: #faf7f4;
  padding: 18px;
  border-radius: 8px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #3f281f, #5a3b2e);
  color: white;
  text-align: center;
  padding: 90px 0;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}/* End custom CSS */