:root {
  --blue: #0c4c89;
  --blue-2: #17659c;
  --green: #109d1c;
  --green-2: #35ad4d;
  --ink: #143f61;
  --text: #637a8e;
  --muted: #91a3b2;
  --line: #e3edf4;
  --soft-blue: #f2f8fc;
  --soft-green: #f2faf3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 76, 137, .11);
  --shadow-green: 0 18px 46px rgba(16, 157, 28, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, 91%);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 76, 137, .09);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand img {
  width: 225px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: #55758e;
  font-size: 14px;
  font-weight: 750;
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-call {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(12, 76, 137, .2);
  transition: .2s ease;
}

.nav-call:hover {
  background: var(--blue-2);
  transform: translateY(-2px);
}

.phone-icon {
  font-size: 15px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 0;
  border-radius: 12px;
  background: var(--soft-blue);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
}

.hero-slider {
  position: relative;
  height: 720px;
  margin-top: 82px;
  overflow: hidden;
  background: var(--soft-blue);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity .75s ease, transform 1.2s ease, visibility .75s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 63, 105, .88) 0%, rgba(12, 76, 137, .67) 43%, rgba(16, 157, 28, .17) 76%, rgba(255, 255, 255, .03) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  padding-bottom: 18px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -3px;
  font-weight: 850;
}

.hero-content em {
  color: #79e07e;
  font-style: normal;
}

.hero-content p {
  max-width: 620px;
  margin-top: 23px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: .22s ease;
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(16, 157, 28, .24);
}

.btn-green:hover {
  background: var(--green-2);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-soft {
  background: rgba(255, 255, 255, .17);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .38);
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .38);
  color: var(--white);
  background: rgba(12, 76, 137, .28);
  font-size: 33px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.slider-arrow:hover {
  background: var(--green);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 27px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .35);
}

.slider-dot.is-active {
  width: 28px;
  border-radius: 99px;
  background: var(--green);
  border-color: var(--green);
}

.quick-search-section {
  position: relative;
  z-index: 9;
  margin-top: -38px;
}

.quick-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 13px;
  align-items: end;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.search-field {
  min-height: 62px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
}

.search-field label {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.search-field select,
.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #55758e;
  font-size: 14px;
  font-weight: 650;
}

.search-btn {
  min-height: 62px;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  margin: 0 auto 45px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
  color: var(--blue);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.9px;
  font-weight: 850;
}

.section-heading p,
.about-copy > p {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

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

.category-card {
  position: relative;
  min-height: 255px;
  padding: 29px;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  color: var(--ink);
  transition: .25s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(16, 157, 28, .07);
}

.category-card:nth-child(2)::after {
  background: rgba(12, 76, 137, .07);
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 157, 28, .28);
  box-shadow: var(--shadow-green);
}

.category-symbol {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 16px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.category-card:nth-child(2) .category-symbol {
  background: var(--soft-blue);
  color: var(--blue);
}

.category-card h3 {
  color: var(--blue);
  font-size: 21px;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  max-width: 310px;
}

.category-card > span {
  display: inline-block;
  margin-top: 19px;
  color: var(--green);
  font-weight: 850;
  font-size: 13px;
}

.properties-section {
  background: linear-gradient(180deg, var(--soft-blue), var(--white));
}

.properties-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-tab {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: #5b758a;
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 11px 32px rgba(12, 76, 137, .07);
  transition: .27s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.property-card.is-hidden {
  display: none;
}

.property-image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.property-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.04);
}

.property-badge {
  position: absolute;
  left: 15px;
  top: 15px;
  min-height: 31px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(12, 76, 137, .12);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.property-badge.green {
  color: var(--green);
}

.property-content {
  padding: 21px;
}

.location {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 6px;
}

.property-content h3 {
  color: var(--blue);
  font-size: 19px;
  line-height: 1.35;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0;
}

.property-features span {
  padding: 7px 9px;
  border-radius: 9px;
  background: var(--soft-blue);
  color: #607a90;
  font-size: 10px;
  font-weight: 800;
}

.property-footer {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.property-footer strong {
  color: var(--green);
  font-size: 13px;
}

.property-actions {
  display: flex;
  gap: 7px;
}

.round-action {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  transition: .2s ease;
}

.round-action.call { color: var(--blue); }
.round-action.whatsapp { color: var(--green); }
.round-action:hover { transform: translateY(-2px); border-color: currentColor; }

.no-results {
  margin-top: 28px;
  padding: 22px;
  border-radius: 15px;
  background: var(--soft-green);
  color: var(--green);
  font-weight: 750;
  text-align: center;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-radius: 29px;
  box-shadow: var(--shadow);
}

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

.about-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 14px 17px;
  border-radius: 14px;
  background: var(--white);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.about-copy > p {
  max-width: 620px;
}

.benefit-list {
  margin-top: 26px;
}

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft-green);
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.benefit h3 {
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 4px;
}

.benefit p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.cta-section {
  padding: 15px 0 100px;
}

.cta-box {
  padding: 59px 60px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue) 0%, #11659a 58%, var(--green) 100%);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.cta-small {
  display: block;
  margin-bottom: 8px;
  color: #a7eeab;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -1.8px;
}

.cta-box p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  max-width: 650px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 315px;
}

.site-footer {
  padding: 60px 0 25px;
  background: #f7fbfe;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 37px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 230px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin-top: 8px;
  max-width: 330px;
  color: var(--text);
  font-size: 14px;
}

.site-footer h3 {
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 16px;
}

.site-footer .footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin: 9px 0;
  color: var(--text);
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
  transition: .2s ease;
}

.social-links a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.copyright {
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.floating-contact {
  position: fixed;
  right: 21px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  transition: .22s ease;
}

.floating-call {
  background: var(--blue);
  box-shadow: 0 11px 29px rgba(12, 76, 137, .28);
}

.floating-whatsapp {
  background: var(--green);
  box-shadow: 0 11px 29px rgba(16, 157, 28, .28);
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.float-label {
  position: absolute;
  right: 67px;
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(12, 76, 137, .1);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.floating-btn:hover .float-label {
  opacity: 1;
}

.wa-mark {
  font-size: 12px;
  letter-spacing: -.5px;
}

@media (max-width: 1060px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 4.5%;
    right: 4.5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .menu-toggle { display: flex; }
  .nav-call { display: none; }

  .property-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    max-width: 760px;
    height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 780px) {
  .brand img {
    width: 188px;
    height: 54px;
  }

  .nav-wrap { min-height: 74px; }
  .main-nav { top: 74px; }
  .hero-slider { margin-top: 74px; height: 650px; }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(42px, 12vw, 62px);
    letter-spacing: -2.2px;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 540px;
  }

  .slider-arrow {
    display: none;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

  .search-btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .properties-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .cta-box {
    padding: 42px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    min-width: 0;
    justify-content: flex-start;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 610px;
  }

  .hero-tint {
    background: linear-gradient(90deg, rgba(8, 63, 105, .90), rgba(12, 76, 137, .71), rgba(16, 157, 28, .18));
  }

  .hero-content {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .category-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-image {
    height: 230px;
  }

  .about-image {
    height: 390px;
  }

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

  .floating-contact {
    right: 13px;
    bottom: 13px;
  }

  .floating-btn {
    width: 54px;
    height: 54px;
  }
}
