/*
Theme Name: VagHabitat
Theme URI: http://blisq.pt
Author: blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blisq
Text Domain: blisq
*/

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* VARIAVEIS E RESETS */
:root {
  --white: #FFFFFF;
  --primary: #232323;
  --accent-green: #A7B9B0;
  --gray: #8D8D8D;
  --gray-dark: #595959;
  --gray-light: #EDEDED;
  --gray-mid: #C3C9C7;
  --gray-light-green: #D5DEDA;
  --light-green: #93AA9E;
  --green: #628264;
  --green-dark: #243225;
  --green-very-dark: #151D15;
  --background-light: #DEE5E2;
  --border: #E8F0EC;
  --light-green-bg: #E0E8E4;
  --border: #D4D4D4;
  --color-condition: #D1DBD6;
  --hover-condition: #B5CCC0;
  --faqs-bg: #CDD4D1;
  --pale-mint: #B4D8B6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  color: #FFF;
  text-align: center;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 71.3px;
  letter-spacing: 0.62px;
  margin: 0;
}

h2 {
  color: var(--primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
}

h2 em,
h2 span {
  color: #76837c;
  font-style: normal;
}

h3 {
  color: var(--primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

p {
  color: var(--gray-dark);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.3px;
}

::selection {
  background-color: var(--green);
}

.block {
  display: block;
}

/* ========== MENU ========== */
.only-mobile {
  display: none;
}

.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 55px 0 0;
  z-index: 5;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0;
  padding: 0 130px;
}

/* LOGO */
.custom-logo {
  height: auto;
  display: block;
  width: auto;
}

.page-template-default .custom-logo {
  filter: invert(1);
}

.menu-container {
  display: flex;
  align-items: center;
}

/* MENU */
.menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 12px 30px;
  border-radius: 41px;
  background: rgba(35, 35, 35, 0.72);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(2px);
  align-items: center;
  width: fit-content;
}

.menu>li>a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  font-style: normal;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 8px 10px;
  transition: all .2s;
  display: block;
}

.menu>li>a:hover {
  border-radius: 33px;
  background: rgba(255, 255, 255, 0.17);
}

.menu>li:last-child>a,
.menu-contact {
  display: flex;
  height: 45px;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #58805b;
  border-radius: 8px;
  font-weight: 600;
}

.menu>li:last-child>a:hover,
.menu-contact:hover {
  background-color: var(--white);
  color: var(--green-dark);
}

.mobile-nav-actions {
  display: none;
}

.hamburger {
  display: none;
}

.menu-contact-mobile {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 350px 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-img::after {
  content: '';
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-content {
  max-width: 1007px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 160%;
  max-width: 740px;
  margin: 15px auto 21px;
}

.hero-button {
  background-color: var(--light-green-bg);
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 13.5px 15.1px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  width: fit-content;
}

.hero-button:hover {
  background-color: var(--green);
  color: var(--white);
}

/* ========== INFO SECTION ========== */
.info-section {
  margin-top: -95px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--gray-light);
  z-index: 2;
  position: relative;
  padding-top: 120px;
  padding-bottom: 130px;
}

.info-container {
  max-width: 1369px;
  margin: 0 auto;
  display: flex;
  gap: 167px;
  align-items: flex-start;
}

.info-container h2 {
  max-width: 390px;
  flex-shrink: 0;
  margin: 0;
}

.info-container h2 span {
  color: var(--accent-green);
}

.info-text {
  max-width: 812px;
}

.info-description {
  color: var(--primary);
  font-size: 31px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.4px;
}

/* ========== MODELS SECTION ========== */
#models {
  scroll-margin-top: 100px;
}

.models-section {
  background-color: var(--gray-light);
  z-index: 2;
  position: relative;
}

.models-container {
  max-width: 1500px;
  margin: 0 auto;
}

.models-container h2 {
  max-width: 555px;
  text-align: center;
  margin: 0 auto;
}

.filters {
  max-width: 824px;
  max-height: 75px;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: var(--white);
  border-radius: 16px;
  text-align: center;
  margin: 25px auto 50px;
}

.filter-btn {
  padding: 15px 20px;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--light-green-bg);
}

.filter-btn:hover {
  background-color: var(--gray-light);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  padding-bottom: 120px;
}

.models-grid-secondary {
  margin-top: 40px;
}

.model-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  height: fit-content;
}

.card-image {
  transition: all .5s;
}

.card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.card-content {
  padding: 14px 14px 15px;
}

.card-condition {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 6px;
  background-color: var(--color-condition);
  border-radius: 6px 7px;
  display: inline-block;
  margin-bottom: 7px;
}

.card-title {
  margin-bottom: 7px;
}

.card-specs {
  font-size: 15px;
  color: var(--gray);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-specs>span:not(:first-child)::before {
  content: '·';
  margin: 0 4px;
  display: inline-block;
}

.know-more-btn {
  position: absolute;
  display: flex;
  padding: 10px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  right: -100px;
  top: 30px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transform: translateX(30px);
  transition: all 0.7s ease;
  z-index: 2;
}

.model-card:hover .know-more-btn {
  right: 31px;
  transform: translateX(0);
}

.model-card:hover {
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.06);
}

.model-card:hover .card-condition {
  background-color: var(--hover-condition);
}

.model-card:hover .card-image {
  padding: 20px 20px 0 20px;
}

/*========== ABOUT SECTION ==========*/
.about-section {
  background-color: var(--gray-light);
  z-index: 2;
  position: relative;
}

.about-container {
  max-width: 1840px;
  margin: auto;
  background-color: var(--background-light);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px 0 115px 0;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
}

.about-container h2 {
  max-width: 883px;
  margin: 0 auto;
}

.about-container>p {
  max-width: 812px;
  margin: 10px auto 0;
}

.about-cards {
  display: flex;
  gap: 60px;
  margin: 32px auto 0;
  justify-content: center;
}

.about-card {
  width: 372px;
  padding: 45px 35px;
  text-align: center;
  border-radius: 35px;
  border: 1px solid #C4C4C4;
}

.card-icon {
  width: 83px;
  height: 83px;
  margin: 0 auto;
  display: block;
}

.about-card h3 {
  max-width: 302px;
  margin: 10px auto 0;
  line-height: 26px;
}

.about-card p {
  max-width: 302px;
  margin: 4px auto 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

.about-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 15px;
  margin: 30px auto 0;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.about-btn:hover {
  background-color: var(--gray-mid);
}

.about-bottom {
  padding: 130px 0 120px 0;

}

.about-bottom-container {
  max-width: 1642px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-text {
  width: 376px;
  flex-shrink: 0;
}

.about-text h2 {
  margin-bottom: 6px;
}

.about-text p {
  width: 366px;
}

.bottom-cards {
  display: flex;
  gap: 17px;
  flex: 1;
  overflow-x: auto;
}

.bottom-cards::-webkit-scrollbar {
  display: none;
}

.bottom-card {
  height: 331px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin: 0;
  flex: 0 0 284px;
}

.bottom-card:hover > .card-bg{
  scale: 1.2;
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 1s;
}

.card-content-about {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 21px;
  color: var(--white);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-content-about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(35, 35, 35, 0.8) 30%);
  z-index: -1;
}

.bottom-card h3 {
  width: 242px;
  color: var(--white);
  font-size: 23.644px;
  line-height: 26px;
}

.bottom-card p {
  width: 242px;
  font-size: 14px;
  color: var(--white);
  font-size: 15.132px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.6px;
}

/*========== FAQs SECTION ==========*/
#FAQs {
  scroll-margin-top: 100px;
}

.faqs-section {
  background-color: var(--gray-light);
  z-index: 2;
  position: relative;
}

.faqs-container {
  max-width: 883px;
  margin: 0 auto;
  text-align: center;
}

.faqs-container h2 {
  margin-bottom: 30px;
}

.faq-items {
  position: relative;
}

.faq-items::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(237, 237, 237, 0.00) 0%, #EDEDED 100%);
  pointer-events: none;
}

.faq-item {
  max-width: 883px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--background-light);
  padding: 16px 25px;
  text-align: left;
  margin-bottom: 8px;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  background-image: url('assets/images/icons/arrow.svg');
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  width: 38px;
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 50%;
}

.faq-item[open] {
  background-color: var(--gray-light);
  border: 1px solid #DADADA;
}

details[open] .faq-icon {
  transform: rotate(180deg);
  background-color: var(--white);
}

summary span:first-child {
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 24.7px;
}

.faq-answer {
  margin-top: 10px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 25.5px;
  color: var(--primary);
}

.faq-item:hover {
  background-color: var(--faqs-bg);
  border: 1px solid var(--faqs-bg);
}

.faq-item:hover .faq-icon {
  transform: rotate(180deg);
}

.faqs-button {
  display: inline-block;
  width: fit-content;
  padding: 15px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 30px;
  transition: all .2s;
}

.faqs-button:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

/* ========== FAQs - Ver Tudo ========== */
.faq-hidden {
  display: none;
}

.faq-hidden.show {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove o gradient quando expandido */
.faq-items.expanded::after {
  opacity: 0;
  transition: opacity 0.3s ease;
}



/*========== VISIT SECTION ==========*/
.visit-section {
  background-color: var(--gray-light);
  z-index: 2;
  position: relative;
  padding: 130px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.visit-container {
  max-width: 1264px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 698px auto;
  gap: 97px;
  align-items: start;
}

.visit-image {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 17.5px;
  overflow: hidden;
}

.visit-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(197deg, rgba(36, 50, 37, 0.00) 62.93%, #243225 95.66%);
  z-index: 1;
  border-radius: 17.5px;
  pointer-events: none;
}

.visit-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 17.5px;
}


.visit-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.visit-content h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
}

.visit-content .block {
  display: block;
  color: var(--green-dark);
}

.visit-content>p {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.2px;
}

.visit-local {
  display: inline-block;
  width: fit-content;
  padding: 6px 9px;
  background-color: var(--gray-light-green);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  margin-bottom: 20px;
}

.visit-local strong {
  font-weight: 700;
}

.visit-address {
  font-style: normal;
}

.visit-address>span {
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  display: block;
}


/*========== FOOTER SECTION ==========*/
footer {
  position: relative;
  padding: 60px 60px 0;
}

.footer-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  margin: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 52%;
  grid-template-rows: auto auto auto;
  padding: 60px;
  border-radius: 50px;
  background-color: var(--green);
  background-image: url('assets/images/mapa.webp');
  background-position: 181px;
  background-repeat: no-repeat;
  position: relative;
  column-gap: 20px;
}

.footer-left {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
}

.footer-right {
  grid-column: 2;
  grid-row: 1 / span 3;
  background-color: var(--green-dark);
  padding: 25px 30px;
  border-radius: 20px;
}

.footer-logo {
  width: 154px;
  height: 82px;
}

.footer-contacts {
  display: flex;
  margin-bottom: 97px;
  margin-top: 43px;
  gap: 18px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 180px;
}

.footer-social>p {
  color: var(--green-very-dark);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28.3px;
}

.social-icons {
  display: flex;
  gap: 9px;
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: all .2s;
}

.social-icon:hover svg path {
  fill: #243225;
}

/* LADO DIREITO */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}

.phone-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-group>a {
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: all 0.5s;
}

.email-link:hover,
.phone-group>a:hover{
  color: #243225;
}

.phone-group>a strong {
  font-weight: 700;
}

.phone-group span {
  color: var(--pale-mint);
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 11.7px;
  text-transform: uppercase;
}

.phone-group+.phone-group {
  margin-top: 10px;
}

.email-link {
  margin-top: 10px;
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.5px;
  transition: all .2s;
}

.footer-links {
  display: flex;
  gap: 8px 26px;
  flex-wrap: wrap;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.9px;
  color: var(--white);
  transition: all .2s;
}

.footer-links a:hover {
  color: var(--green-very-dark);
}

/* ========== FORM ========== */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* LABELS DOS INPUTS - Escondidos mas acessíveis */
.form-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkbox-group label {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  display: inline;
}

.privacy-link {
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}


.footer-form *:focus {
  outline: #6A7D6C;
}

.form-title {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin-bottom: 6px;
}

.form-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.form-group {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 12px 23px;
  background-color: transparent;
  border: 1px solid #3B4B3C;
  border-radius: 34px;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--white);
}

.form-input:hover {
  border-color: #6A7D6C;
}

.form-input:hover::placeholder {
  color: #6A7D6C;
}

.form-input::placeholder {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15.6px;
}

.form-input:focus {
  border-color: #6A7D6C;
  color: var(--white);
}

.form-input:not(:placeholder-shown):not(:focus) {
  border-color: #6A7D6C;
  color: var(--white);
}

/* Remove fundo branco do autocomplete */
input.form-input:-webkit-autofill,
input.form-input:-webkit-autofill:hover,
input.form-input:-webkit-autofill:focus,
input.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--green-dark) inset;
  -webkit-text-fill-color: var(--white);
  box-shadow: 0 0 0 1000px var(--green-dark) inset;
  caret-color: var(--white);
  transition: background-color 5000s ease-in-out 0s;
}

input.form-input:-moz-autofill,
input.form-input:-moz-autofill-preview {
  filter: none;
  background-color: transparent;
  color: var(--white);
}

textarea.form-input:-webkit-autofill,
textarea.form-input:-webkit-autofill:hover,
textarea.form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--green-dark) inset;
  -webkit-text-fill-color: var(--white);
  box-shadow: 0 0 0 1000px var(--green-dark) inset;
}

.form-textarea {
  height: 103px;
  resize: none;
  border-radius: 18px;
}

.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  flex-wrap: wrap;
}

.common-link {
  font-weight: 600;
}

.common-link:hover {
  text-decoration: underline;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  border: 1px solid #4A6E4C;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: transparent;
  border-color: var(--white);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: url('assets/images/icons/check.svg');
  position: absolute;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-button {
  padding: 13.5px 14px;
  background-color: #58805b;
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.form-button:hover {
  background-color: var(--white);
  color: var(--green-dark);
}

.blisq-container {
  text-align: center;
}

.blisq-link {
  display: inline-block;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.80);
  border-radius: 6px;
  margin: 15px auto;
}

.blisq-icon {
  width: 36px;
  display: block;
}

/* ========== PAGE HOUSE DETAILS ========== */
.herodetails {
  height: 100dvh;
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  background-color: var(--gray-light);
}

.herodetails-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: transform 0.8s ease-in-out, opacity 0.8s;
  transform: translateY(0);
}

/* Slide ativo */
.herodetails-img img.active {
  opacity: 1;
  z-index: 2;
  transform: translateY(0);
}

/* NOVA IMAGEM vindo de cima → baixo */
.herodetails-img img.enter-down {
  opacity: 1;
  z-index: 3;
  transform: translateY(-100%);
  animation: slideDown 0.8s ease-in-out forwards;
}

/* NOVA IMAGEM vindo de baixo → cima */
.herodetails-img img.enter-up {
  opacity: 1;
  z-index: 3;
  transform: translateY(100%);
  animation: slideUp 0.8s ease-in-out forwards;
}

/* IMAGEM ATUAL saindo para baixo */
.herodetails-img img.exit-down {
  opacity: 1;
  z-index: 2;
  animation: exitDown 0.8s ease-in-out forwards;
}

/* IMAGEM ATUAL saindo para cima */
.herodetails-img img.exit-up {
  opacity: 1;
  z-index: 2;
  animation: exitUp 0.8s ease-in-out forwards;
}

/* Keyframes */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes exitDown {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes exitUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.herodetails-img::after {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.60) 84.42%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 3;
}

.herodetails-content {
  max-width: 1363px;
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 155px;
}

.herodetails-content h1 {
  color: var(--white);
  text-align: left;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 67.6px;
  margin: 0 0 12px 0;
  padding: 0;
}

.herobuttons {
  display: flex;
  position: absolute;
  right: 10%;
  top: 50%;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transform: translateY(-50%);
  z-index: 3;
}

.herobutton {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(2px);
  background-image: url(assets/images/icons/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  border: none;
  cursor: pointer;
}

.herobutton-next {
  scale: -1;
}

.hero-dots {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}

.hero-dot {
  width: 4px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.44);
  display: block;
  border-radius: 50%;
}

.hero-dot.active {
  width: 8px;
  background-color: #fff;
}

.from-top {
  transform: translateY(-100%);
}

.from-bottom {
  transform: translateY(100%);
}

.specs-price-action-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 57px;
}

.property-specs-list {
  display: flex;
  gap: 23px;
  align-items: center;
}

.property-specs-list.mobile {
  display: none;
}

.property-condition {
  display: flex;
  height: 45px;
  padding: 8px 18px;
  align-items: center;
  gap: 15px;
  border-radius: 9.625px;
  background: #CEDCD6;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 18.5px;
  padding-right: 13px;
  border-right: 1.321px solid rgba(211, 211, 211, 0.52);
}

.spec-icon {
  width: 35px;
  height: 35px;
}

.spec-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  line-height: 23.4px;
}

.price-action-group {
  display: flex;
  align-items: center;
  gap: 23px;
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: var(--white);
  font-size: 16px;
  text-align: right;
  font-style: normal;
  font-weight: 500;
  line-height: 23.52px;
}

.price-value-large {
  color: var(--white);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36.4px;
}

.schedule-visit-button {
  padding: 15px 20px;
  background-color: #58805b;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
}

.schedule-visit-button:hover {
  background-color: var(--light-green-bg);
  color: var(--primary);
}

.description-section {
  margin-top: -95px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--gray-light);
  z-index: 3;
  position: relative;
  padding-top: 70px;
  padding-bottom: 118px;
}

.description-container {
  max-width: 812px;
  margin: 0 auto;
}

.description-wrapper {
  padding: 0 15px;
  width: 100%;
}

.catalog-video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 30px 0;
}

.catalog-video {
  width: fit-content;
  height: 100%;
}

.description-block {
  margin-bottom: 18px;
}

.description-title,
.features-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 10px;
}

.description-content>p {
  color: var(--gray-dark);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  width: 100%;
}

.description-block p:not(:last-child) {
  margin-bottom: 10px;
}

.features-block {
  width: 100%;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 13px;
}

.feature-category-title {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: var(--green);
  margin-bottom: 7px;
}

.feature-category>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-category li {
  color: #595959;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 139%;
  margin-bottom: 7px;
  padding-left: 3px;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.feature-category li::before {
  content: "";
  background-color: #D9D9D9;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.contactdetails-wrapper {
  width: 100%;
  padding: 0;
  margin-top: 10px;
}

.contactdetails-border {
  border-radius: 20px;
  border: 1px solid #CCC;
  padding: 30px;
  width: 100%;
}

.contactdetails-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contactdetails-row {
  width: 100%;
}

.contactdetails-row-first {
  display: flex;
  justify-content: left;
}

.contactdetails-imagetext {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 328px;
  width: 100%;
}

.contactdetails-imagewrap {
  width: 55px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.contactdetails-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contactdetails-textcontent {
  flex: 1;
}

.contactdetails-title {
  color: var(--primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

/* Segunda linha */
.contactdetails-row-second {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.contactdetails-row p {
  color: var(--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 388px;
  width: 100%;
  margin: 0;
}

.contactdetails-button {
  padding: 11px 18.3px;
  background-color: var(--accent-green);
  color: var(--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.contactdetails-button:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.models-section--details .models-container h2 {
  padding-bottom: 40px;
}

/* ========== common POLICY PAGE ========== */
.page-template-default .menu {
  background: #EEE;
  box-shadow: none;
  backdrop-filter: none;
}

.page-template-default .menu>li>a {
  color: var(--primary);
}

.page-template-default .menu>li:not(:last-child)>a:hover {
  background: var(--green);
  color: var(--white);
  border-radius: 33px;
}

.page-template-default .menu>li:last-child>a {
  color: var(--white);
}

.page-template-default .menu>li:last-child>a:hover {
  background-color: var(--green-dark);
}

.common-section-main {
  background: linear-gradient(180deg, #FFF 1.92%, #EDEDED 27.38%);
  padding: 120px 0 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.common-container {
  max-width: 769px;
  margin: 120px auto;
}

.common-header {
  margin-bottom: 25px;
  max-width: 494px;
}

.common-title {
  color: var(--primary);
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
}

.common-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.common-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.common-content h2 {
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}

.common-content h3 {
  color: var(--green);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.common-content p {
  color: var(--gray-dark);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.common-text:last-child {
  margin-bottom: 0;
}

.common-content ol,
.common-content ul {
  list-style: none;
  padding: 0;
}

.common-content li {
  color: var(--gray-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.common-content li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  background-color: var(--gray-dark);
  font-weight: 700;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  display: block;
  transform: translateY(-50%);
}

.table {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}

table th {
  color: #AEAEAE;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
  padding-bottom: 10px;
}

table td {
  color: var(--gray-dark);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* ========== 404 PAGE ========== */
.error-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 256px 0 110px 0;
}

.error-hero-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 0;
}

.error-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(15px);
}

.error-hero-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(35, 35, 35, 0.58) 0%, rgba(35, 35, 35, 0.58) 100%);
  pointer-events: none;
  z-index: 1;
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 1007px;
  text-align: center;
  gap: 15px;
}

.error-code {
  color: #98BD9A;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.36px;
}

.error-title {
  color: var(--white);
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.62px;
  max-width: 636px;
  margin: 15px auto;
}

.error-description {
  color: var(--white);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 740px;
  margin: 0 auto 15px;
}

.error-button {
  display: inline-block;
  padding: 15px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-button:hover {
  background-color: var(--green);
  color: var(--white);
}

.form-field-error {
  font-size: 12px;
  color: #DC3545;
  font-weight: 500;
  padding-left: 25px;
  flex: 1 0 100%;
}

.response-ajax {
  font-size: 14px;
  color: #DC3545;
}

.response-ajax>a {
  text-decoration: underline;
}

.btn-submit.loading {
  pointer-events: none;
}

.loading::after {
  content: '';
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid;
  border-color: #fbfcfb #0000;
  animation: l1 1s infinite;
}

@keyframes l1 {
  to {
    transform: rotate(.5turn)
  }
}

/* ========== MEDIA QUERIES - RESPONSIVO ========== */
@media screen and (max-width: 1740px) {
  .about-bottom-container {
    max-width: 100%;
    padding-left: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .about-bottom-container {
    max-width: 100%;
    padding: 0 60px;
  }

  .about-text {
    width: 100%;
    text-align: center;
  }

  .about-text p {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 1680px) {

  /* HEADER */
  .nav-container {
    padding: 0 100px;
  }

  /* HERO */
  .hero-content {
    max-width: 900px;
  }

  h1 {
    font-size: 56px;
    line-height: 64px;
  }

  .hero-subtitle {
    font-size: 20px;
    max-width: 670px;
  }

  .hero-button {
    padding: 12px 14px;
    font-size: 15px;
  }

  /* INFO */
  .info-section {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .info-container {
    max-width: 1200px;
    gap: 120px;
    padding: 0 60px;
  }

  .info-container h2 {
    max-width: 350px;
    font-size: 28px;
    line-height: 36px;
  }

  .info-text {
    max-width: 700px;
  }

  .info-description {
    font-size: 28px;
    line-height: 39px;
  }

  /* MODELS */
  .models-container {
    max-width: 1350px;
    padding: 0 60px;
  }

  .models-container h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .filters {
    max-width: 750px;
  }

  .filter-btn {
    padding: 13px 18px;
    font-size: 15px;
  }

  .models-grid {
    gap: 18px;
    padding-bottom: 100px;
  }

  /* ABOUT */
  .about-container {
    max-width: 1600px;
    padding: 100px 60px 105px;
  }

  .about-container h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .about-container>p {
    max-width: 750px;
    font-size: 18px;
    line-height: 29px;
  }

  .about-cards {
    gap: 50px;
  }

  .about-card {
    width: 340px;
    padding: 40px 30px;
  }

  .card-icon {
    width: 75px;
    height: 75px;
  }

  .about-bottom {
    padding: 110px 60px 100px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .about-text p {
    font-size: 18px;
    line-height: 29px;
  }

  .bottom-card {
    flex: 0 0 260px;
    height: 300px;
  }

  .bottom-card p,
  .bottom-card h3 {
    width: 100%;
  }

  /* FAQs */
  .faqs-container {
    max-width: 800px;
    padding: 0 60px;
  }

  .faqs-container h2 {
    font-size: 28px;
    line-height: 36px;
  }

  summary span:first-child {
    font-size: 18px;
  }

  /* VISIT */
  .visit-section {
    padding: 110px 60px;
  }

  .visit-container {
    max-width: 1200px;
    gap: 80px;
    grid-template-columns: 600px auto;
  }

  /* FOOTER */
  footer {
    padding: 50px 50px 0;
  }

  .footer-container {
    padding: 50px;
  }

  .footer-logo {
    width: 140px;
    height: auto;
  }

  .footer-contacts {
    margin-bottom: 80px;
    margin-top: 35px;
  }

  .footer-right {
    padding: 22px 28px;
  }

  .form-input {
    padding: 11px 20px;
  }

  .form-textarea {
    height: 110px;
  }
}


@media screen and (max-width:1580px) {
  .herodetails-content {
    margin: 0 5%;
    margin-bottom: 155px;
  }
}

@media screen and (max-width: 1440px) {

  /* HEADER */
  .nav-container {
    padding: 0 80px;
  }

  .menu {
    gap: 18px;
    padding: 10px 25px;
  }

  .menu-link {
    font-size: 14px;
  }

  .menu>li:last-child>a,
  .menu-contact {
    padding: 8px 13px;
  }

  /* HERO */
  .hero-content {
    max-width: 850px;
  }

  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .hero-subtitle {
    font-size: 19px;
    max-width: 640px;
  }

  /* INFO */
  .info-container {
    max-width: 1100px;
    gap: 100px;
    padding: 0 50px;
  }

  .info-container h2 {
    max-width: 320px;
    font-size: 26px;
    line-height: 34px;
  }

  .info-text {
    max-width: 650px;
  }

  .info-description {
    font-size: 24px;
    line-height: 36px;
  }

  /* MODELS */
  .models-container {
    max-width: 1250px;
    padding: 0 50px;
  }

  .models-container h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .models-grid {
    gap: 16px;
  }

  /* ABOUT */
  .about-container {
    padding: 90px 50px 90px;
    margin: 0 40px;
  }

  .about-container h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .about-cards {
    gap: 40px;
  }

  .about-card {
    width: 320px;
    padding: 38px 28px;
  }

  .about-bottom {
    padding: 100px 50px 90px;
  }

  .about-bottom-container {
    gap: 50px;
  }

  .bottom-card {
    flex: 0 0 250px;
    height: 290px;
  }

  .about-text {
    width: 60%;
    text-align: center;
  }

  /* VISIT */
  .visit-section {
    padding: 100px 50px;
  }

  .visit-container {
    gap: 70px;
    grid-template-columns: 580px auto;
  }

  .visit-content h2 {
    font-size: 28px;
  }

  /* FOOTER */
  .footer-container {
    padding: 45px;
  }

  /* PAGE DETAILS */

  .herodetails-content h1 {
    font-size: 35px;
  }

  .property-specs-list {
    gap: 15px;
  }

  .spec-text {
    font-size: 16px;
  }

  .price-value-large {
    font-size: 20px;
  }

  .herobuttons {
    right: 5%;
    top: 45%;
  }
}

@media screen and (max-width: 1280px) {
  .hero-content h1 {
    font-size: 40px;
    text-wrap: balance;
  }
}

@media screen and (max-width: 1200px) {

  /* HEADER */
  .nav-container {
    padding: 0 60px;
  }

  .custom-logo {
    width: 120px;
  }

  .menu {
    gap: 15px;
    padding: 10px 20px;
  }

  .menu-link {
    font-size: 13px;
  }

  /* HERO */
  .hero-content {
    max-width: 750px;
  }

  h1 {
    font-size: 46px;
    line-height: 53px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: 580px;
  }

  /* INFO */
  .info-section {
    padding-top: 90px;
    padding-bottom: 100px;
    margin-top: -80px;
  }

  .info-container {
    max-width: 1000px;
    gap: 80px;
    padding: 0 40px;
  }

  .info-container h2 {
    max-width: 280px;
    font-size: 24px;
    line-height: 32px;
  }

  .info-text {
    max-width: 600px;
  }

  .info-description {
    font-size: 24px;
    line-height: 34px;
  }

  /* MODELS */
  .models-container {
    max-width: 1100px;
    padding: 0 40px;
  }

  .models-container h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .filters {
    max-width: 680px;
  }

  .filter-btn {
    padding: 11px 15px;
    font-size: 14px;
  }

  /* ABOUT */
  .about-container {
    max-width: 1100px;
    padding: 80px 40px 85px;
  }

  .about-container h2 {
    max-width: 650px;
    font-size: 24px;
    line-height: 32px;
  }

  .about-container>p {
    max-width: 650px;
    font-size: 16px;
    line-height: 26px;
  }

  .about-cards {
    gap: 30px;
  }

  .about-card {
    width: 290px;
    padding: 35px 25px;
  }

  .card-icon {
    width: 68px;
    height: 68px;
  }

  .about-card h3 {
    font-size: 17px;
    line-height: 22px;
  }

  .about-card p {
    font-size: 12px;
    line-height: 19px;
  }

  .about-bottom {
    padding: 80px 40px;
  }

  .about-bottom-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    width: 100%;
    max-width: 700px;
    text-align: center;
  }

  .about-text h2 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .about-text p {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
  }

  .bottom-cards {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    margin: 0;
    flex-wrap: nowrap;
    padding: 0 25px;
  }

  .bottom-card {
    flex: 0 0 240px;
    height: 280px;
  }

  /* FAQs */
  .faqs-container {
    max-width: 700px;
    padding: 0 40px;
  }

  .faqs-container h2 {
    font-size: 24px;
    line-height: 32px;
  }

  summary span:first-child {
    font-size: 16px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    background-size: 12px;
  }

  /* VISIT */
  .visit-section {
    padding: 80px 40px;
  }

  .visit-container {
    max-width: 1000px;
    gap: 50px;
    grid-template-columns: 520px auto;
  }

  .visit-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .visit-content>p {
    font-size: 16px;
    line-height: 22px;
  }

  .visit-local {
    font-size: 15px;
  }

  .visit-address>span {
    font-size: 15px;
    line-height: 21px;
  }

  /* FOOTER */
  footer {
    padding: 40px 40px 0;
  }

  .footer-container {
    padding: 40px;
    column-gap: 30px;
  }

  .footer-contacts {
    margin-bottom: 60px;
  }

  .footer-right {
    padding: 20px 25px;
  }

  .form-input {
    padding: 9px 18px;
    font-size: 11px;
  }

  .form-input::placeholder {
    font-size: 11px;
  }

  .form-textarea {
    height: 118px;
  }

  .checkbox-group {
    font-size: 11px;
  }

  .form-button {
    padding: 10px 13px;
    font-size: 14px;
  }

  /* PAGE DETAILS*/
  .herodetails-content h1 {
    font-size: 40px;
    text-align: left;
    font-weight: 600;
  }

  .specs-price-action-row {
    height: 40px;
  }

  .property-specs-list {
    gap: 10px;
  }

  .property-condition {
    height: 40px;
    padding: 8px 15px;
  }

  .spec-item {
    gap: 12.5px;
  }

  .spec-icon {
    width: 30px;
    height: 30px;
  }

  .spec-text {
    font-size: 15px;
  }

  .price-action-group {
    gap: 16px;
  }

  .price-value-large {
    font-size: 24px;
  }

  .schedule-visit-button {
    padding: 13px 18px;
    font-size: 14px;
  }

  /*404 PAGE*/
  .error-hero {
    padding: 220px 0 100px 0;
  }

  .error-code {
    font-size: 32px;
  }

  .error-title {
    font-size: 52px;
    max-width: 580px;
  }

  .error-description {
    font-size: 20px;
    max-width: 670px;
  }
}

@media screen and (max-width: 1024px) {

  /* HEADER */
  .menu-container {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 10px 19px 10px;
    background: rgba(35, 35, 35, 0.72);
    backdrop-filter: blur(1.1px);
    box-shadow: 0 0 27.868px 0 rgba(0, 0, 0, 0.14);
    border-radius: 44px;
    position: absolute;
    right: 20px;
    z-index: 9999;
  }

  .mobile-nav-actions.active {
    box-shadow: unset;
  }

  .mobile-nav-actions.active .menu-contact-mobile {
    opacity: 0;
  }

  .menu-contact-mobile {
    display: flex;
    padding: 9px 11px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 43px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 9px;
  }

  .hamburger span {
    width: 23px;
    height: 1px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger:hover span {
    background-color: var(--accent-green);
  }

  .mobile-nav-actions.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-nav-actions.active .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-actions.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .menu-container.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(35, 35, 35, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 100px;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .menu-container.active .menu {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0 30px;
    gap: 0;
    width: 100%;
    max-width: 400px;
    backdrop-filter: unset;
    margin: 0 auto;
  }

  .menu-container.active .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-container.active .menu-item:last-child,
  .menu-container.active .menu-item:nth-last-child(2) {
    border: none;
  }

  .menu-container.active .menu-link {
    display: block;
    padding: 20px 30px;
    font-size: 18px;
    text-align: left;
    width: 100%;
  }

  .menu-container.active .menu-item:not(.contact-item) .menu-link:hover {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-container.active .contact-item {
    margin-top: 30px;
    border: none;
  }

  .menu-container.active .menu-contact {
    width: calc(100% - 60px);
    margin: 0 30px;
    justify-content: center;
    height: auto;
    padding: 15px 20px;
  }

  .header-social {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 0;
    width: 100%;
    margin-top: 30px;
  }

  .header-social .social-icons {
    display: flex;
    column-gap: 20px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .only-mobile {
    display: block;
  }

  .page-template-default .menu>li>a {
    color: var(--white);
  }

  /* HERO */
  .hero {
    padding: 300px 0;
  }

  .hero-content {
    max-width: 700px;
  }

  h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .hero-subtitle {
    font-size: 17px;
    max-width: 540px;
  }

  .hero-button {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* INFO */
  .info-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .info-container {
    max-width: 900px;
    gap: 60px;
    padding: 0 35px;
  }

  .info-container h2 {
    max-width: 260px;
    font-size: 22px;
    line-height: 29px;
  }

  .info-text {
    max-width: 550px;
  }

  .info-description {
    font-size: 20px;
    line-height: 31px;
  }

  /* MODELS */
  .models-container {
    max-width: 950px;
    padding: 0 35px;
  }

  .models-container h2 {
    max-width: 420px;
    font-size: 22px;
    line-height: 29px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-condition,
  .card-specs {
    font-size: 12px;
  }

  .filters {
    max-width: 620px;
    padding: 9px;
  }

  .filter-btn {
    padding: 10px 13px;
    font-size: 13px;
  }

  .models-grid {
    padding-bottom: 70px;
  }

  /* ABOUT */
  .about-container {
    max-width: 950px;
    padding: 70px 35px 75px;
  }

  .about-container h2 {
    max-width: 580px;
    font-size: 22px;
    line-height: 29px;
  }

  .about-container>p {
    max-width: 580px;
    font-size: 15px;
    line-height: 24px;
  }

  .about-cards {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-card {
    width: 280px;
    padding: 32px 23px;
  }

  .card-icon {
    width: 64px;
    height: 64px;
  }

  .about-card h3 {
    font-size: 16px;
    line-height: 21px;
  }

  .about-card p {
    font-size: 12px;
    line-height: 18px;
  }

  .about-btn {
    height: 38px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .about-bottom {
    padding: 70px 35px;
  }

  .about-text h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .about-text p {
    max-width: 540px;
    font-size: 15px;
    line-height: 24px;
  }

  .bottom-cards {
    gap: 13px;
  }

  .bottom-card {
    flex: 0 0 220px;
    height: 260px;
  }

  .bottom-card h3 {
    font-size: 19px;
    line-height: 21px;
  }

  .bottom-card p {
    font-size: 12px;
    line-height: 16px;
  }

  /* FAQs */
  .faqs-container {
    max-width: 650px;
    padding: 0 35px;
  }

  .faqs-container h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .faq-item {
    padding: 13px 20px;
  }

  summary span:first-child {
    font-size: 15px;
    line-height: 20px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 21px;
  }

  .faqs-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* VISIT */
  .visit-section {
    padding: 70px 35px;
  }

  .visit-container {
    max-width: 900px;
    gap: 40px;
    grid-template-columns: 480px auto;
  }

  .visit-content h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .visit-content>p {
    font-size: 15px;
    line-height: 21px;
  }

  .visit-local {
    font-size: 14px;
    padding: 5px 8px;
  }

  .visit-address>span {
    font-size: 14px;
    line-height: 20px;
  }

  /* FOOTER */
  footer {
    padding: 35px 35px 0;
  }

  .footer-container {
    padding: 35px;
    column-gap: 25px;
  }

  .footer-logo {
    width: 130px;
  }

  .footer-contacts {
    margin-bottom: 50px;
    margin-top: 28px;
    gap: 15px;
  }

  .footer-social>p {
    font-size: 19px;
    line-height: 25px;
    text-wrap: balance;
  }

  .phone-group>a {
    font-size: 14px;
  }

  .email-link {
    font-size: 14px;
  }

  .footer-right {
    padding: 18px 22px;
  }

  .form-title {
    font-size: 18px;
    line-height: 23px;
  }

  .form-input {
    padding: 8px 16px;
    font-size: 11px;
  }

  .form-textarea {
    height: 140px;
  }

  .form-button {
    padding: 9px 12px;
    font-size: 13px;
  }

  .footer-links {
    display: none;
  }

  .herodetails-content {
    margin: 0 3%;
    margin-bottom: 155px;
  }

  /* PAGE common */
  .common-section-main {
    padding: 100px 0 20px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .common-container {
    max-width: 690px;
    margin: 100px auto;
    padding: 0 30px;
  }

  .common-title {
    font-size: 38px;
  }

  .common-content h2 {
    font-size: 22px;
  }

  .common-content h3 {
    font-size: 19px;
  }

  .common-content p {
    font-size: 16px;
    line-height: 165%;
  }

  .common-content li {
    font-size: 15px;
  }

  table th {
    font-size: 13px;
  }

  table td {
    font-size: 11px;
  }


  /* PAGE 404*/
  .error-hero {
    padding: 200px 0 90px 0;
  }

  .error-code {
    font-size: 30px;
  }

  .error-title {
    font-size: 46px;
    max-width: 540px;
  }

  .error-description {
    font-size: 19px;
    max-width: 600px;
  }

}

@media screen and (max-width: 1024px) and (min-height: 768px) {
  .herodetails {
    height: 60dvb;
  }
}

@media screen and (max-width: 890px) {

  /* HEADER */
  .nav-container {
    padding: 0 30px;
  }

  .menu {
    gap: 7px;
    padding: 8px 15px;
  }

  .menu-link {
    font-size: 12px;
  }

  /* HERO */
  .hero-content {
    max-width: 650px;
  }

  h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 500px;
  }

  /* INFO */
  .info-section {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .info-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 30px;
  }

  .info-container h2 {
    max-width: 100%;
    font-size: 22px;
    line-height: 29px;
  }

  .info-text {
    max-width: 100%;
  }

  /* MODELS */
  .models-container {
    padding: 0 30px;
  }

  .models-container h2 {
    max-width: 400px;
    font-size: 22px;
    line-height: 29px;
  }

  .filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 9px;
    gap: 10px;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-bottom: 60px;
  }

  /* ABOUT */
  .about-container {
    padding: 65px 30px 70px;
  }

  .about-container h2 {
    max-width: 520px;
    font-size: 22px;
    line-height: 29px;
  }

  .about-container>p {
    max-width: 520px;
    font-size: 15px;
    line-height: 24px;
  }

  .about-cards {
    overflow-x: auto;
    flex-wrap: nowrap;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 25px 20px 25px;
    width: 100%;
    margin: 0;
  }

  .about-card {
    width: 270px;
    flex-shrink: 0;
  }

  .about-bottom {
    padding: 65px 30px;
  }

  .about-text h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .about-text p {
    max-width: 500px;
    font-size: 15px;
    line-height: 24px;
  }

  /* FAQs */
  .faqs-container {
    padding: 0 30px;
  }

  /* VISIT */
  .visit-section {
    padding: 65px 30px;
  }

  .visit-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /* FOOTER */
  footer {
    padding: 30px 30px 0;
  }

  .footer-container {
    padding: 30px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 30px;
    background-position: top;
  }

  .footer-left {
    grid-column: auto;
    grid-row: auto;
    display: contents;
  }

  .footer-right {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contacts {
    gap: 20px;
    margin-bottom: 35px;
  }

  .description-section {
    padding: 50px 0
  }

  .catalog-video-wrapper,
  .description-wrapper {
    padding: 0 50px;
    width: 100%;
  }

  .contactdetails-wrapper {
    padding: 0;
  }

  /* PAGE DETAILS*/
  .herodetails-content h1 {
    font-size: 35px;
    text-align: left;
    font-weight: 600;
  }

  .specs-price-action-row {
    height: 35px;
  }

  .property-specs-list {
    gap: 11px;
  }

  .property-condition {
    height: 35px;
    padding: 8px 12px;
  }

  .spec-item {
    gap: 10.5px;
    padding-right: 10px;
  }

  .spec-icon {
    width: 27px;
    height: 27px;
  }

  .spec-text {
    font-size: 14px;
  }

  .price-action-group {
    gap: 13px;
  }


  .price-value-large {
    font-size: 20px;
  }

  .schedule-visit-button {
    padding: 6px 10px;
    font-size: 14px;
    height: 40px;
  }

  /* 404 PAGE*/
  .error-hero {
    padding: 180px 0 80px 0;
  }

  .error-code {
    font-size: 28px;
  }

  .error-title {
    font-size: 42px;
    max-width: 500px;
  }

  .error-description {
    font-size: 18px;
    max-width: 550px;
  }

  .form-field-error {
    padding-left: 20px;
  }

  .form-field-error.form-field-error-privacy {
    padding-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .main-nav {
    padding: 27px 0 0;
  }

  .herodetails {
    height: auto;
    min-height: 70dvh;
    position: relative;
    padding: 120px 0 60px;
  }

  .herodetails-content {
    margin-bottom: 0;
    padding: 0 25px;
    position: unset
  }

  .herodetails-content h1 {
    font-size: 32px;
    line-height: 123%;
    text-align: left;
    font-weight: 600;
    max-width: 350px;
    margin-bottom: 20px;
  }

  .specs-price-action-row {
    flex-direction: column;
    gap: 30px;
    height: auto;
    align-items: center;
  }

  .property-specs-list {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    width: 100%;
  }

  .property-condition {
    height: 40px;
    padding: 8px 20px;
    font-size: 15px;
    order: -1;
    justify-content: flex-start;
    margin-right: 7px;
  }

  .property-specs-list {
    display: none;
  }

  .property-specs-list.mobile {
    display: flex;
  }

  .spec-item {
    padding-right: 15px;
    gap: 10px;
    border-color: rgba(35, 35, 35, 0.20);
  }

  .spec-icon {
    width: 35px;
    height: 35px;
    filter: invert(1);
  }

  .spec-text {
    font-size: 15px;
    color: var(--primary);
  }

  .price-action-group {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    width: 100%;
  }

  .price-display {
    position: absolute;
    top: 125px;
    right: 30px;
  }

  .price-label {
    font-size: 11px;
  }

  .price-value-large {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  .herobuttons {
    display: none;
  }

  .description-section {
    margin-top: -35px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding: 35px 0 60px;
  }

  /* common PAGE */
  .common-section-main {
    padding: 80px 0 20px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
  }

  .common-container {
    max-width: 100%;
    margin: 80px auto;
    padding: 0 25px;
  }

  .common-header {
    margin-bottom: 20px;
  }

  .common-title {
    font-size: 32px;
    text-align: left;
  }

  .common-content h2 {
    font-size: 20px;
  }

  .common-content h3 {
    font-size: 18px;
  }

  .common-text {
    font-size: 15px;
    line-height: 160%;
  }

  .common-content li {
    font-size: 15px;
    padding-left: 22px;
  }

  .common-content li::before {
    left: 5px;
  }

  table th {
    font-size: 14px;
    padding: 0 5px 8px 0;
  }

  table td {
    font-size: 13px;
    padding: 0 10px 10px 0;
    vertical-align: top;
  }

}

@media screen and (max-width: 640px) {

  /* ========== HEADER/MENU ========== */
  .nav-container {
    padding: 0 20px;
  }

  .custom-logo {
    width: 100px;
    height: auto;
  }

  /* ========== HERO SECTION ========== */
  .hero {
    height: auto;
    min-height: 100vh;
    position: relative;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    margin: -123px auto 0 auto;
    max-width: 357px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0.28px;
    margin-bottom: 8px;
    text-wrap: auto;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 21px;
    max-width: 100%;
  }

  .hero-button {
    padding: 11px;
    font-size: 14px;
    margin-top: 14px;
    border-radius: 5px;
    width: 130px;
    height: 40px;
  }

  /* ========= INFO SECTION ==========*/
  .info-section {
    margin-top: -168px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding: 40px 25px 70px;
  }

  .info-container {
    flex-direction: column;
    gap: 27px;
    max-width: 100%;
    padding: 0;
  }

  .info-container h2 {
    max-width: 212px;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
  }

  .info-text {
    width: 100%;
    max-width: 100%;
  }

  .info-description {
    font-size: 23px;
    line-height: 34.04px;
    text-align: left;
  }

  /* ========== MODELS SECTION ========== */
  .models-section {
    padding: 0 25px;
  }

  .models-container {
    padding: 0;
  }

  .models-container h2 {
    max-width: 315px;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .filters {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px;
    margin: 0 0 20px 0;
    gap: 9px;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 11px 10px;
    font-size: 14px;
  }

  .filters-wrap {
    position: relative;
  }

  .filters-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
  }

  .filters-wrap.end-scroll::after {
    display: none;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 11px;
    padding-bottom: 60px;
  }

  .card-image img {
    border-radius: 14px;
  }

  .card-content {
    padding: 8px;
  }

  .card-condition {
    font-size: 12px;
    padding: 6px 7px;
    margin-bottom: 4px;
  }

  .card-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .card-specs {
    font-size: 12px;
    line-height: normal;
    color: #4E4E4E;
  }

  .models-grid .model-card:nth-child(n+9) {
    display: none;
  }

  .model-card:hover .know-more-btn {
    display: none;
  }

  .model-card:hover {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .model-card:hover .card-condition {
    background-color: var(--hover-condition);
  }

  .model-card:hover .card-image {
    padding: 0px;
  }


  /* ========== ABOUT SECTION  ========== */
  .about-section {
    padding: 0 25px;
  }

  .about-container {
    padding: 83px 0 80px;
    border-radius: 30px;
    max-width: 100%;
    overflow: visible;
    margin: 0;
  }

  .about-container h2 {
    max-width: 286px;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
  }

  .about-container>p {
    max-width: 325px;
    font-size: 16px;
    line-height: 24.8px;
    text-align: center;
    margin: 0 22px;
  }

  .about-cards {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 25px 20px 25px;
    width: 100%;
    margin: 0;
  }

  .about-cards::-webkit-scrollbar {
    display: none;
  }

  .about-cards {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .about-card {
    max-width: 323px;
    max-height: 266px;
    width: auto;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 28px 32px;
    border-radius: 30.5px;
    border: 1px solid #C4C4C4;
  }

  .card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 7.5px;
  }

  .about-card h3 {
    font-size: 19px;
    line-height: 23px;
    max-width: 100%;
    margin: 0;
  }

  .about-card p {
    font-size: 13px;
    line-height: 20px;
    max-width: 259px;
    margin: 4px auto 0;
  }

  .about-btn {
    margin-top: 7px;
    padding: 11px;
    font-size: 15px;
  }

  .about-bottom {
    padding: 60px 0;
  }

  .about-bottom-container {
    padding: 0;
    flex-direction: column;
    gap: 25px;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .about-text h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: left;
  }

  .about-text p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .bottom-cards {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    margin: 0px -25px;
    flex-wrap: nowrap;
  }

  .bottom-cards::-webkit-scrollbar {
    display: none;
  }

  .bottom-cards {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .bottom-card {
    max-width: 283px;
    width: auto;
    flex: 0 0 283px;
    height: 331px;
    border-radius: 15px;
    scroll-snap-align: start;
    margin: 0;
  }

  .bottom-card h3 {
    width: 100%;
    font-size: 22px;
    line-height: 24px;
  }

  .bottom-card p {
    width: 100%;
    font-size: 15px;
    line-height: 19.5px;
  }

  /* ========== FAQs SECTION ========== */
  .faqs-section {
    padding: 0 25px;
  }

  .faqs-container {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .faqs-container h2 {
    max-width: 100%;
    font-size: 24px;
    line-height: 30px;
    margin: 0 auto 20px;
  }

  .faq-item {
    padding: 16px 25px;
    border: none;
  }

  summary span:first-child {
    font-size: 17px;
    line-height: 22px;
    max-width: 272px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    background-size: 12px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 25.5px;
  }

  .faqs-button {
    padding: 12px 24px;
    font-size: 15px;
    margin-top: 20px;
  }

  /* ========== VISIT SECTION ========== */
  .visit-section {
    padding: 60px 25px 50px;
  }

  .visit-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0;
  }

  .visit-content {
    text-align: left;
    width: 100%;
    padding: 0;
  }

  .visit-content h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: left;
  }

  .visit-content .block {
    display: block;
  }

  .visit-content>p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .visit-local {
    font-size: 16px;
    padding: 6px 9px;
    margin-bottom: 10px;
  }

  .visit-address>span {
    font-size: 14px;
    line-height: 21px;
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 40px 25px 0;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-position: center top;
    background-size: contain;
    border-radius: 25px;
    gap: 0;
    grid-template-columns: unset;
    grid-template-rows: unset;
    background-size: 140%;
  }

  .footer-left {
    display: contents;
    grid-column: unset;
    grid-row: unset;
  }

  .footer-contacts {
    display: contents;
    flex-direction: unset;
    gap: unset;
    margin-bottom: unset;
  }

  .footer-lg {
    order: 1;
    margin-bottom: 22px;
    width: 123px;
    height: 65px;
  }

  .footer-contact-info {
    order: 2;
    margin-bottom: 10px;
  }

  .phone-group>a {
    font-size: 15px;
    line-height: 19.5px;
    display: block;
  }

  .phone-group span {
    font-size: 9px;
    line-height: 11.7px;
    display: block;
    margin-top: 2px;
  }

  .email-link {
    font-size: 15px;
    line-height: 19.5px;
    margin-top: 10px;
    display: block;
  }

  .footer-social {
    order: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 17px;
    max-width: 100%;
    gap: 15px;
  }

  .footer-social>p {
    font-size: 21px;
    line-height: 27.3px;
    font-weight: 600;
    color: var(--green-very-dark);
    margin: 0;
    max-width: 190px;
    text-align: left;
    text-wrap: balance;
  }

  .social-icons {
    display: flex;
    gap: 9px;
    align-items: center;
  }

  .footer-right {
    order: 4;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: 0;
    background-color: var(--green-dark);
    grid-column: unset;
    grid-row: unset;
  }

  .form-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 6px;
    color: var(--white);
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  .form-input {
    width: 100%;
    padding: 12px 22px;
    font-size: 12px;
    border-radius: 34px;
    border: 1px solid #3B4B3C;
    background-color: transparent;
    color: var(--white);
  }

  .form-input::placeholder {
    font-size: 12px;
    color: var(--white);
  }

  .form-textarea {
    height: 178px;
    border-radius: 18px;
    resize: none;
    padding: 12px 20px;
  }

  .form-bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 6px;
    align-items: flex-start;
  }

  .checkbox-group {
    font-size: 13px;
    line-height: 16.9px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
  }

  .checkbox-group input[type="checkbox"] {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
  }

  .checkbox-group label {
    color: var(--white);
  }

  .form-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    background-color: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
  }

  /* ========== PAGE DETAILS ==========*/
  .herodetails {
    height: auto;
    min-height: 70dvh;
    position: relative;
    padding: 120px 0 60px;
  }

  .herodetails-content {
    margin-bottom: 0;
    padding: 0 25px;
    position: unset
  }

  .herodetails-content h1 {
    font-size: 32px;
    line-height: 123%;
    text-align: left;
    font-weight: 600;
    max-width: 350px;
    margin-bottom: 20px;
  }

  .specs-price-action-row {
    flex-direction: column;
    gap: 30px;
    height: auto;
    align-items: center;
  }

  .property-specs-list {
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 35px;
    width: 100%;
  }

  .property-condition {
    height: 28px;
    padding: 2px 9px;
    font-size: 11px;
    order: -1;
    justify-content: flex-start;
    margin-right: 7px;
  }

  .property-specs-list {
    display: none;
  }

  .property-specs-list.mobile {
    display: flex;
  }

  .spec-item {
    padding-right: 8px;
    gap: 9px;
    border-color: rgba(35, 35, 35, 0.20);
  }

  .spec-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
  }

  .spec-text {
    font-size: 11px;
    color: var(--primary);
  }

  .price-action-group {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    width: 100%;
  }

  .price-display {
    position: absolute;
    top: 125px;
    right: 30px;
  }

  .price-label {
    font-size: 11px;
  }

  .price-value-large {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  .herobuttons {
    display: none;
  }

  .description-section {
    margin-top: -35px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    padding: 35px 0 60px;
  }

  .catalog-video-wrapper,
  .description-wrapper {
    padding: 0 25px;
  }

  .description-block {
    margin-bottom: 30px;
  }

  .description-title,
  .features-title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 15px;
  }

  .description-content>p {
    font-size: 15px;
    line-height: 160%;
    text-align: left;
  }

  /* FEATURES GRID */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
  }

  .feature-category {
    text-align: left;
    margin-bottom: 20px;
  }

  .feature-category-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .feature-category>ul {
    display: inline-block;
    text-align: left;
  }

  .feature-category li {
    font-size: 14px;
    justify-content: left;
    gap: 8px;
  }

  .feature-category li::before {
    width: 6px;
    height: 6px;
  }

  .contactdetails-wrapper {
    padding: 0 25px;
    margin-top: 30px;
  }

  .contactdetails-border {
    padding: 25px 20px;
  }

  .contactdetails-content {
    gap: 30px;
  }

  .contactdetails-row-first {
    justify-content: left;
    align-items: flex-start;
  }

  .contactdetails-imagetext {
    flex-direction: row;
    text-align: left;
    gap: 15px;
    display: flex;
  }

  .contactdetails-title {
    font-size: 18px;
    text-align: left;
  }

  .contactdetails-title .block {
    display: block;
  }

  .contactdetails-row-second {
    flex-direction: column;
    gap: 15px;
    text-align: left;
    align-items: flex-start;
  }

  .contactdetails-row p {
    text-align: left;
    max-width: 100%;
  }

  .models-section--details .models-container h2 {
    padding-bottom: 10px;
  }

  /* common PAGE*/
  .main-nav-common .mobile-nav-actions {
    background: #EEE;
    box-shadow: none;
    backdrop-filter: none;
  }

  .main-nav-common .menu-contact-mobile {
    background-color: var(--green);
    color: var(--white);
  }

  .main-nav-common .hamburger span {
    background-color: var(--primary);
  }

  .main-nav-common .menu-container.active {
    background: #EEE;
  }

  .main-nav-common .menu-container.active .menu {
    background: transparent;
    box-shadow: none;
  }

  .main-nav-common .menu-container.active .menu-link {
    color: var(--primary);
  }

  .main-nav-common .menu-container.active .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .main-nav-common .menu-container.active .menu-item:not(.contact-item) .menu-link:hover {
    background: var(--gray-light);
  }

  .main-nav-common .menu-container.active .menu-contact {
    background-color: var(--green);
    color: var(--white);
  }

  .main-nav-common .menu-container.active .menu-contact:hover {
    background-color: var(--green-dark);
    color: var(--white);
  }

  .common-container {
    margin: 55px auto;
  }

  .common-title {
    font-size: 30px;
  }

  /* 404 PAGE*/
  .error-hero {
    padding: 140px 0 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .error-content {
    padding: 0 25px;
  }

  .error-code {
    font-size: 24px;
    letter-spacing: 0.24px;
  }

  .error-title {
    font-size: 32px;
    line-height: 42px;
    max-width: 100%;
    margin: 10px auto;
  }

  .error-description {
    font-size: 16px;
    line-height: 150%;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .error-button {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
  }

  .catalog-video {
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .catalog-video-wrapper{
    aspect-ratio: unset;
  }

  .error-hero {
    padding: 120px 0 50px 0;
  }

  .error-content {
    padding: 0 20px;
  }

  .error-code {
    font-size: 22px;
  }

  .error-title {
    font-size: 28px;
    line-height: 36px;
  }

  .error-description {
    font-size: 15px;
    line-height: 145%;
  }

  .error-button {
    padding: 12px 24px;
    font-size: 14px;
    max-width: 260px;
  }

  .footer-container {
    background-size: 160%;
  }
}

@media screen and (max-width: 430px) {
  .about-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 25px 20px 25px;
    width: 100%;
    margin: 0;
    flex-direction: column;
  }

  .about-card {
    max-width: 100%;
  }

  .block-faq em {
    color: var(--accent-green);
    font-style: normal;
    display: block;
  }
}

@media screen and (max-width: 400px) {


  .info-description {
    font-size: 19px;
  }

  .about-card h3 {
    text-wrap: balance;
  }

  .about-container {
    padding: 70px 0 60px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-card {
    max-height: 284px;
  }

  .bottom-card p {
    font-size: 13px;
  }

  summary span:first-child {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .visit-local {
    font-size: 12px;
  }

  .visit-content h2 {
    font-size: 20px;
  }

  .visit-content>p {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  footer {
    padding: 40px 10px 0 10px;
  }

  .footer-container {
    padding: 15px;
  }

  summary span:first-child {
    font-size: 15px;
  }
}