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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.55);
  z-index: -1;
}

.hero__content {
  z-index: 1;
  padding: 0 20px;
}

.hero__title {
  font-size: 128px;
  font-weight: 700;
  letter-spacing: 16px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero__location {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn--primary {
  background: #6b6d3a;
  color: #fff;
}

.btn--primary:hover {
  background: #5a5c30;
}

.btn--dark {
  background: #1a1a1a;
  color: #fff;
}

.btn--dark:hover {
  background: #333;
}

/* ===== SECTION 2: STATS ===== */
.stats {
  background: #fff;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.stats__item {
  flex: 1;
  text-align: center;
}

.stats__number {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.stats__divider {
  width: 40px;
  height: 2px;
  background: #6b6d3a;
  margin: 0 auto 12px;
}

.stats__label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: lowercase;
  margin-bottom: 8px;
}

.stats__desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== SECTION 3: ABOUT ===== */
.about {
  width: 100%;
}

.about__top {
  display: flex;
  width: 100%;
  min-height: 500px;
}

.about__top-image {
  width: 50%;
  overflow: hidden;
}

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

.about__top-content {
  width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__top-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b6d3a;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about__top-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__top-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.about__bottom {
  display: flex;
  width: 100%;
  min-height: 500px;
}

.about__bottom-content {
  width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__bottom-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b6d3a;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about__bottom-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__bottom-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.about__bottom-image {
  width: 50%;
  overflow: hidden;
}

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

/* ===== SECTION 4: INVESTMENT ===== */
.investment {
  padding: 100px 80px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  background: #fff;
}

.investment__left {
  flex: 0 0 380px;
}

.investment__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b6d3a;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.investment__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.investment__text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.investment__right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.investment__card {
  background: #f8f8f6;
  border-radius: 16px;
  padding: 32px 28px;
}

.investment__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107,109,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.investment__card-icon svg {
  width: 24px;
  height: 24px;
  fill: #6b6d3a;
  stroke: #6b6d3a;
}

.investment__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.investment__card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

/* ===== SECTION 5: SMART HOME ===== */
.smart-home {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.smart-home__left {
  width: 50%;
  background: #eef0e5;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.smart-home__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.smart-home__text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
  max-width: 500px;
}

.smart-home__plans {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.smart-home__plan {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
}

.smart-home__plan-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.smart-home__plan-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  line-height: 1.4;
}

.smart-home__plan-price {
  font-size: 22px;
  font-weight: 700;
}

.smart-home__buttons {
  display: flex;
  gap: 16px;
}

.smart-home__right {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px;
}

.smart-home__right img {
  max-height: 520px;
  object-fit: contain;
}

.smart-home__badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 16px 20px;
}

.smart-home__badge-number {
  font-size: 28px;
  font-weight: 700;
}

.smart-home__badge-text {
  font-size: 12px;
  color: #777;
}

.smart-home__info {
  position: absolute;
  top: 40px;
  right: 40px;
  text-align: right;
}

.smart-home__info-label {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
}

.smart-home__info-text {
  font-size: 12px;
  color: #777;
}

/* ===== SECTION 6: AMENITIES ===== */
.amenities {
  width: 100%;
}

.amenities__row {
  display: flex;
  width: 100%;
  min-height: 480px;
}

.amenities__text {
  width: 50%;
  background: #fff;
  color: #1a1a1a;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenities__image {
  width: 50%;
  overflow: hidden;
}

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

.amenities__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b6d3a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.amenities__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.amenities__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.amenities__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amenities__list li {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  padding-left: 16px;
  position: relative;
}

.amenities__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #1a1a1a;
}

.amenities__buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ===== SECTION 7: CONTACT FORM ===== */
.contact {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.contact__subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 48px;
  text-align: center;
}

.contact__form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.contact__input:focus {
  border-color: #6b6d3a;
}

.contact__input::placeholder {
  color: #aaa;
}

.contact__submit {
  width: 100%;
  padding: 16px;
  background: #6b6d3a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}

.contact__submit:hover {
  background: #5a5c30;
}

/* ===== SECTION 8: LOCATION ===== */
.location {
  display: flex;
  width: 100%;
  min-height: 500px;
}

.location__map {
  width: 50%;
  min-height: 500px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__content {
  width: 50%;
  background: #1a1a1a;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.location__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.location__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location__details li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

.location__details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #6b6d3a;
}

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

/* Tablet */
@media (max-width: 1024px) {
  /* Hero */
  .hero__title {
    font-size: 64px;
    letter-spacing: 6px;
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__buttons .btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Stats */
  .stats {
    flex-wrap: wrap;
    padding: 40px 30px;
    gap: 30px;
  }

  .stats__item {
    flex: 0 0 calc(33.33% - 20px);
  }

  .stats__number {
    font-size: 30px;
  }

  /* About */
  .about__top,
  .about__bottom {
    flex-direction: column;
  }

  .about__top-image,
  .about__top-content,
  .about__bottom-content,
  .about__bottom-image {
    width: 100%;
    flex: none;
  }

  .about__top-content,
  .about__bottom-content {
    padding: 50px 40px;
  }

  .about__top-title,
  .about__bottom-title {
    font-size: 32px;
  }

  /* Investment */
  .investment {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
  }

  .investment__left {
    flex: none;
  }

  .investment__title {
    font-size: 32px;
  }

  /* Smart Home */
  .smart-home {
    flex-direction: column;
  }

  .smart-home__left,
  .smart-home__right {
    width: 100%;
    flex: none;
  }

  .smart-home__right {
    min-height: 400px;
  }

  .smart-home__title {
    font-size: 40px;
  }

  /* Amenities */
  .amenities__row {
    flex-direction: column;
  }

  .amenities__text,
  .amenities__image {
    width: 100%;
  }

  .amenities__image {
    min-height: 350px;
  }

  .amenities__text {
    padding: 50px 40px;
  }

  .amenities__title {
    font-size: 28px;
  }

  /* Location */
  .location {
    flex-direction: column;
  }

  .location__map,
  .location__content {
    width: 100%;
    flex: none;
  }

  .location__map {
    min-height: 350px;
  }

  .location__content {
    padding: 50px 40px;
  }

  .location__title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hero */
  .hero__title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .hero__subtitle {
    font-size: 13px;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* Stats */
  .stats {
    padding: 30px 20px;
    gap: 24px;
  }

  .stats__item {
    flex: 0 0 calc(50% - 12px);
  }

  .stats__number {
    font-size: 24px;
  }

  .stats__desc {
    font-size: 11px;
  }

  /* About */
  .about__top-content,
  .about__bottom-content {
    padding: 40px 24px;
  }

  .about__top-title,
  .about__bottom-title {
    font-size: 26px;
  }

  .about__top-text,
  .about__bottom-text {
    font-size: 14px;
  }

  /* Investment */
  .investment {
    padding: 40px 20px;
    gap: 30px;
  }

  .investment__title {
    font-size: 26px;
  }

  .investment__right {
    grid-template-columns: 1fr;
  }

  /* Smart Home */
  .smart-home__left {
    padding: 40px 24px;
  }

  .smart-home__title {
    font-size: 32px;
  }

  .smart-home__plans {
    flex-direction: column;
  }

  .smart-home__buttons {
    flex-direction: column;
  }

  .smart-home__buttons .btn {
    text-align: center;
  }

  .smart-home__right {
    min-height: 320px;
    padding: 20px;
  }

  .smart-home__badge {
    left: 20px;
    bottom: 20px;
    padding: 12px 16px;
  }

  .smart-home__badge-number {
    font-size: 22px;
  }

  .smart-home__info {
    top: 20px;
    right: 20px;
  }

  /* Amenities */
  .amenities__text {
    padding: 36px 24px;
  }

  .amenities__title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .amenities__desc {
    font-size: 13px;
  }

  .amenities__list li {
    font-size: 12px;
  }

  .amenities__image {
    min-height: 260px;
  }

  .amenities__buttons {
    flex-direction: column;
  }

  .amenities__buttons .btn {
    text-align: center;
  }

  /* Contact */
  .contact {
    padding: 60px 20px;
  }

  .contact__title {
    font-size: 26px;
  }

  .contact__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .contact__form {
    gap: 12px;
  }

  .contact__input {
    padding: 14px 18px;
    font-size: 14px;
  }

  /* Location */
  .location__map {
    min-height: 280px;
  }

  .location__content {
    padding: 40px 24px;
  }

  .location__title {
    font-size: 24px;
  }

  .location__text {
    font-size: 13px;
  }

  .location__details li {
    font-size: 13px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .stats__item {
    flex: 0 0 100%;
  }

  .about__top-title,
  .about__bottom-title {
    font-size: 22px;
  }

  .investment__title {
    font-size: 22px;
  }

  .smart-home__title {
    font-size: 26px;
  }

  .amenities__title {
    font-size: 22px;
  }

  .location__title {
    font-size: 22px;
  }

  .contact__title {
    font-size: 22px;
  }
}
