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


:root {
  --bg: #0B0F14;
  --bg-soft: #111826;
  --card: #0F1623;
  --text: #E5E7EB;
  --muted: #9CA3AF;
  --brand: #10B981;
  --brand-2: #E11D48;
  --accent: #22D3EE;
  --warning: #F59E0B;
  --ok: #34D399;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --gap: 1rem;
  --gap-lg: 2rem;
  --maxw: 1200px;
  --font-family: 'Poppins', sans-serif;
 
  --card: #121a2a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #10B981;
  --accent-contrast: #062e25;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--gap);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  margin-bottom: var(--gap);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

ul {
  list-style: none;
}


.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

.container--small {
  max-width: 800px;
}

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

.section {
  padding: calc(var(--gap-lg) * 2) 0;
}

.section--soft {
  background-color: var(--bg-soft);
}

.section__header {
  text-align: center;
  margin-bottom: var(--gap-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__header h2 {
  margin-bottom: 0.5rem;
}

.section__header p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: var(--gap-lg);
}

.grid--2-cols {
  grid-template-columns: 1fr;
}

.grid--3-cols {
  grid-template-columns: 1fr;
}

.grid--4-cols {
  grid-template-columns: 1fr;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--brand);
  color: var(--bg);
}

.btn--primary:hover {
  background-color: var(--ok);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
  color: white;
}

.btn--secondary {
  background-color: var(--bg-soft);
  color: var(--text);
}

.btn--secondary:hover {
  background-color: var(--card);
}

.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--brand);
}

.btn--outline:hover {
  background-color: var(--brand);
  color: var(--bg);
}

.btn--accent {
  background-color: var(--accent);
  color: var(--bg);
}

.btn--accent:hover {
  background-color: var(--text);
}




.header {
  background: rgba(11, 15, 20, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--gap) 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.nav__toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}


.nav__list {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background: var(--bg-soft);
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  padding: var(--gap-lg) 0;
  transform: translateY(-120%);
  transition: transform 0.4s ease-in-out;
  display: flex;
}

.nav.nav--visible .nav__list {
  transform: translateY(0);
}

.nav__link {
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link i {
  display: block;
}

.nav__link span {
  display: block;
}


.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../img/hero.png') no-repeat center center/cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(11, 15, 20, 0.7) 50%, rgba(11, 15, 20, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 600px;
  margin: var(--gap) auto var(--gap-lg) auto;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: var(--gap);
  flex-wrap: wrap;
}


.card {
  background: var(--card);
  padding: var(--gap-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.card__icon {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: var(--gap);
}

.card--horizontal {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-lg);
}

.card__step {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.card--testimonial {
  text-align: left;
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--gap);
}

.card__header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card--testimonial blockquote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--brand);
  padding-left: var(--gap);
  margin: 0;
}


.featured-house {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--gap);
  padding: var(--gap-lg);
  background-color: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: var(--gap-lg);
}

.featured-house__logo {
  text-align: center;
}

.featured-house__logo img {
  width: 100%;
  margin: 0 auto 0.5rem auto;
  object-fit: contain;
}

.featured-house__logo h4 {
  margin-bottom: 0.25rem;
}

.featured-house__info h5 {
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.featured-house__action {
  text-align: center;
}

.featured-house__action small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}


.rating {
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.rating span {
  color: var(--muted);
  font-weight: 600;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}


.cta-banner {
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  padding: var(--gap-lg) 0;
}

.cta-banner__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--gap-lg);
}

.cta-banner__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bg);
  font-weight: 600;
}

.cta-banner__item i {
  font-size: 1.5rem;
}


.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.contact__info address {
  margin-bottom: var(--gap);
  font-style: normal;
  color: var(--muted);
}

.contact__info hr {
  border: none;
  border-top: 1px solid var(--bg-soft);
  margin: var(--gap) 0;
}

.contact__email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: var(--gap);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--bg-soft);
  border: 1px solid var(--card);
  border-radius: calc(var(--radius) / 2);
  color: var(--text);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group--checkbox input {
  width: auto;
}

.form-group--checkbox label {
  margin: 0;
  font-weight: normal;
  font-size: 0.9rem;
}


.footer {
  background-color: var(--bg-soft);
  padding: calc(var(--gap-lg) * 2) 0;
  color: var(--muted);
  border-top: 1px solid var(--card);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}

.footer__col h4 {
  color: var(--text);
  margin-bottom: var(--gap);
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col--disclaimer {
  grid-column: 1 / -1;
}

.footer__bottom {
  border-top: 1px solid var(--card);
  padding-top: var(--gap-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
}

.footer__age-notice {
  font-weight: 700;
  color: var(--warning);
  border: 1px solid var(--warning);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.modal--visible {
  display: flex;
  opacity: 1;
}

.modal__content {
  background: var(--card);
  padding: var(--gap-lg);
  border-radius: var(--radius);
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: var(--shadow);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.modal--visible .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: var(--gap);
  right: var(--gap);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--text);
}




@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

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

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

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

  .nav__toggle {
    display: none;
  }

  .header__actions .btn--secondary {
    display: inline-block;
  }

  .nav__list {
    position: static;
    flex-direction: row;
    transform: none;
    background: none;
    width: auto;
    padding: 0;
  }

  .nav__link i {
    display: none;
  }

  .featured-house {
    grid-template-columns: 1fr 2fr;
  }

  .featured-house__logo {
    text-align: left;
  }

  .featured-house__logo img {
    margin: 0 0 0.5rem 0;
  }

  .featured-house__action {
    grid-column: 1 / -1;
  }

  .rating {
    justify-content: flex-start;
  }

  .contact__wrapper {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer__col--disclaimer {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (min-width: 1024px) {
  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-house {
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
  }

  .featured-house__action {
    grid-column: auto;
    text-align: right;
  }
}

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.footer-imgs img {
  height: 43px;
  margin: 10px;
}

.pg-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.pg-modal {
  width: min(560px, 92vw);
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.pg-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.pg-badge span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #041b16;
  font-weight: 900;
}

.pg-modal h2 {
  margin: 6px 0 10px;
  font-size: 1.35rem;
}

.pg-modal p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.pg-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px
}

.pg-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--accent);
  color: #05241c;
  font-weight: 700;
  flex: 1 1 180px;
}

.pg-btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .12)
}

.pg-note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 6px
}

.pg-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px
}

.cky-wrap {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: min(980px, 94vw);
  z-index: 9998;
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 18px;
}

.cky-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap
}

.cky-title {
  font-weight: 800;
  margin: 0 0 6px;
  font-size: 1.05rem
}

.cky-text {
  color: var(--muted);
  margin: 0
}

.cky-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
}

.btn-accept {
  background: var(--accent);
  color: #06231c
}

.btn-deny {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .12)
}

.btn-settings {
  background: transparent;
  color: var(--accent);
  border-color: rgba(16, 185, 129, .35)
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px
}

.cky-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  z-index: 10000;
  backdrop-filter: blur(2px);
}

.cky-modal {
  width: min(760px, 94vw);
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.cky-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px
}

.cky-head h3 {
  margin: 0;
  font-size: 1.15rem
}

.cky-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer
}

.cky-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0
}

.cky-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 14px
}

.cky-item h4 {
  margin: 0 0 6px
}

.cky-item p {
  margin: 0;
  color: var(--muted)
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px
}

.switch input {
  appearance: none;
  width: 48px;
  height: 26px;
  background: #2a3346;
  border-radius: 26px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .08)
}

.switch input:checked {
  background: var(--accent)
}

.switch input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s
}

.switch input:checked::after {
  transform: translateX(22px)
}

.switch label {
  color: var(--text);
  cursor: pointer
}

.cky-foot {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 10px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap
}

@media (max-width:600px) {
  .pg-actions {
    flex-direction: column
  }

  .ck y-row {
    flex-direction: column
  }
}

.cky-overlay,
.ck.y-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .62);
  z-index: 10000;
  backdrop-filter: blur(3px);
  animation: ckyFade .18s ease-out;
}

.cky-modal,
.ck.y-modal {
  width: min(760px, 94vw);
  max-height: min(82vh, 820px);
  overflow: hidden;
  background: var(--bg, #111826);
  color: var(--text, #e5e7eb);
  border-radius: var(--radius, 16px);
  box-shadow: var(--shadow, 0 20px 60px rgba(0, 0, 0, .5));
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 0;
  transform: translateY(6px);
  animation: ckyPop .22s ease-out forwards;
}

.cky-head,
.ck.y-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cky-head h3,
.ck.y-head h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.cky-close,
.ck.y-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text, #e5e7eb);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.cky-close:hover,
.ck.y-close:hover {
  border-color: rgba(255, 255, 255, .22)
}

.cky-close:focus,
.ck.y-close:focus {
  outline: 2px solid var(--accent, #10B981);
  outline-offset: 2px
}

.cky-modal>.cky-text,
.ck.y-modal>.cky-text {
  padding: 14px 18px 0 18px;
  color: var(--muted, #9ca3af);
}

.cky-grid,
.ck.y-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px 18px;
  max-height: 52vh;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #10B981) #1a2233;
}

.cky-grid::-webkit-scrollbar,
.ck.y-grid::-webkit-scrollbar {
  width: 10px
}

.cky-grid::-webkit-scrollbar-track,
.ck.y-grid::-webkit-scrollbar-track {
  background: #0f1623;
  border-radius: 10px
}

.cky-grid::-webkit-scrollbar-thumb,
.ck.y-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent, #10B981), #0aa276);
  border-radius: 10px;
}

.cky-item,
.ck.y-item {
  background: var(--card, #0F1623);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 14px;
  transition: border-color .15s ease, transform .08s ease;
}

.cky-item:hover,
.ck.y-item:hover {
  border-color: rgba(16, 185, 129, .35);
  transform: translateY(-1px);
}

.cky-item h4,
.ck.y-item h4 {
  margin: 0 0 6px;
  font-weight: 700
}

.cky-item p,
.ck.y-item p {
  margin: 0;
  color: var(--muted, #9ca3af)
}

.switch input {
  appearance: none;
  width: 48px;
  height: 26px;
  background: #2a3346;
  border-radius: 26px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .08)
}

.switch input:checked {
  background: var(--accent, #10B981)
}

.switch input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s
}

.switch input:checked::after {
  transform: translateX(22px)
}

.switch label {
  color: var(--text, #e5e7eb);
  cursor: pointer
}

.cky-foot,
.ck.y-foot {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(0deg, rgba(0, 0, 0, .08), transparent);
}


@keyframes ckyPop {
  from {
    opacity: .0;
    transform: translateY(12px) scale(.98)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes ckyFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media (max-width: 640px) {

  .cky-head,
  .ck.y-head {
    padding: 14px
  }

  .cky-modal>.cky-text,
  .ck.y-modal>.cky-text {
    padding: 12px 14px 0
  }

  .cky-grid,
  .ck.y-grid {
    padding: 10px 14px;
    max-height: 56vh
  }

  .cky-foot,
  .ck.y-foot {
    padding: 12px 14px 14px
  }
}