:root {
  --hs-green: #568154;
  --hs-green-dark: #4d7550;
  --hs-green-soft: #edf2ee;
  --hs-footer: #2b3831;
  --hs-orange: #e56a07;
  --hs-orange-light: #f6ab1a;
  --hs-line: #dfe8e2;
  --hs-text: #2f3b35;
  --hs-muted: #7d8a82;
  --hs-purple: #800080;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--hs-text);
  font-family: Nunito, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  max-width: 100%;
}

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

a:hover {
  color: inherit;
}

fieldset {
  padding: 0 !important;
  margin: 0;
  border: 0;
}

/* Layout */
.hs-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}

.page-main {
  padding-top: 24px;
  padding-bottom: 20px;
}

.col-content {
  max-width: 770px;
}

.sidebar {
  padding-left: 24px;
}

/* Header */
.site-header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid var(--hs-green-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--hs-green);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand span {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 18px;
  border-radius: 9px;
  background: var(--hs-green);
  transform: rotate(-18deg);
}

.brand span::before,
.brand span::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--hs-green);
}

.brand span::before {
  top: -5px;
  right: -4px;
  width: 8px;
  height: 8px;
}

.brand span::after {
  left: -3px;
  bottom: 0;
  width: 5px;
  height: 5px;
}

.main-nav {
  gap: 52px;
  margin-left: auto;
  margin-right: 48px;
  color: #344039;
  font-size: 16px;
  font-weight: 400;
}

.login-link {
  color: var(--hs-green);
  font-size: 12px;
  font-weight: 700;
}

.login-icon {
  margin-right: 5px;
  font-size: 17px;
  vertical-align: -1px;
}

.backbar {
  height: 50px;
  background: var(--hs-green-soft);
}

.phone-link {
    white-space: nowrap;
    color: inherit;
    font-weight: 700;
}

.backlink {
  color: var(--hs-green);
  font-size: 12px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.02em;
}

/* Gallery */
.gallery {
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hs-line);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--hs-green-soft);
}

.hero-image img,
.gallery-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.hero-image iframe {
  pointer-events: auto;
}

.hero-click-next {
  display: none;
}

.label-featured {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 30px;
  padding: 5px 15px;
  border-radius: 3px;
  background: linear-gradient(to bottom right, var(--hs-orange-light), var(--hs-orange));
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.slide-counter {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  padding: 9px 13px;
  border-radius: 8px 0 0 0;
  background: var(--hs-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.thumb-row {
  display: grid;
  grid-template-columns: 56px repeat(3, minmax(0, 1fr)) 56px;
  gap: 12px;
  margin-top: 14px;
  align-items: stretch;
}

.thumb-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 120px;
  padding: 0 0 6px;
  border: 0;
  border-radius: 4px;
  background: var(--hs-green-soft);
  color: var(--hs-green);
  font-size: 46px;
  line-height: 1;
}

.thumb-arrow:hover {
  background: var(--hs-green);
  color: #fff;
}

.gallery-thumb {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.gallery-thumb img,
.thumb-row > img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-thumb.active {
  outline: 3px solid var(--hs-green);
}

.media-tabs {
  display: flex;
  gap: 30px;
  margin-top: 18px;
  color: var(--hs-green);
  font-size: 12px;
  font-weight: 600;
}

.media-tabs .icon {
  margin-right: 5px;
  color: var(--hs-green);
  font-size: 15px;
}

/* Sidebar / listing summary */
.listing-summary {
  max-width: 332px;
  padding-top: 10px;
}

.listing-summary h1 {
  margin: 0 0 8px;
  color: var(--hs-green);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.listing-summary strong {
  display: block;
  margin-top: 15px;
}

.listing-summary ul {
  margin: 5px 0;
  padding: 0 20px;
}

.address,
.meta {
  margin: 0;
  color: #596b60;
  font-size: 16px;
}

.meta {
  margin-top: 20px;
}

.price {
  margin: 15px 0 0;
  color: var(--hs-purple);
  font-size: 32px;
  font-weight: 800;
}

.secondprice{
	font-size:16px; 
}

.pricexcl {
  color: #596b60;
  font-size: 16px;
  font-weight: 400;
}

.hs-btn {
  margin-bottom: 10px;
  padding: 18px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(to bottom right, var(--hs-orange-light), var(--hs-orange));
  box-shadow: none;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
}

.hs-btn:hover {
  background: var(--hs-orange);
}

.hs-btn span {
  margin-right: 8px;
}

.btn-brochure,
.btn-brochure:link,
.btn-brochure:visited {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--hs-orange);
  border-radius: 4px;
  background: transparent;
  color: var(--hs-orange);
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-brochure:hover,
.btn-brochure:focus,
.btn-brochure:active {
  background: var(--hs-orange);
  color: #fff;
  text-decoration: none;
}

.share-block {
  margin-top: 18px;
}

.share-block strong {
  display: block;
  margin-bottom: 8px;
  color: #35423b;
  font-size: 10px;
}

.share-icons {
  display: flex;
  gap: 15px;
}

.share-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--hs-green-soft);
  color: var(--hs-green);
  font-size: 20px;
  font-weight: 700;
}

/* Broker card */
.broker-card {
  width: 333px;
  max-width: 100%;
  margin-top: 214px;
  padding: 27px 32px 30px;
  border-radius: 0 0 24px 0;
  background: var(--hs-green);
  color: #fff;
}

.broker-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  margin: 0 auto 24px;
  background: #132243;
}

.broker-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.broker-card h3 {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 800;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e6eee7;
  font-size: 12px;
  font-weight: 700;
}

.email-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 2px;
  background: rgb(255 255 255 / 12%);
}

/* Content */
.content-section {
  max-width: 770px;
  padding-top: 34px;
}

.content-section h2 {
  margin: 0 0 22px;
  color: #303b35;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-section p {
  margin: 0 0 22px;
  color: #596b60;
  font-size: 16px;
  line-height: 1.85;
}

.fade-text {
  opacity: 0.35;
}

.read-more-link {
  color: var(--hs-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.data-table {
  border-top: 1px solid var(--hs-line);
  font-size: 14px;
}

.data-row {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid var(--hs-line);
}

.data-row > div:first-child {
  color: #87968d;
  font-weight: 500;
}

.data-row > div:last-child {
  color: #26332c;
}

.info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--hs-green);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.small-green {
  color: var(--hs-green);
  font-size: 11px;
  text-decoration: underline;
}

.external {
  margin-left: 3px;
  padding: 1px 3px;
  border-radius: 1px;
  background: #222;
  color: #fff;
  font-size: 8px;
}

.map-section {
  padding-bottom: 36px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 232px;
  background: #e5e3de;
}

.map-placeholder span {
  color: #ef7d12;
  font-size: 28px;
  font-weight: 800;
}

/* WPForms */
#wpforms-8 {
  max-width: 720px;
  margin-top: 2rem;
  font-family: Nunito, sans-serif;
}

#wpforms-8 .wpforms-field {
  margin-bottom: 1rem;
  padding: 0;
}

#wpforms-8 .wpforms-field-label,
#wpforms-8 legend.wpforms-field-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #20352c;
  font-size: 0.95rem;
  font-weight: 700;
}

#wpforms-8 .wpforms-required-label {
  color: var(--hs-orange);
}

#wpforms-8 input[type="text"],
#wpforms-8 input[type="email"],
#wpforms-8 textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d7ded8;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  color: #24352d;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#wpforms-8 textarea {
  min-height: 140px;
  resize: vertical;
}

#wpforms-8 input:focus,
#wpforms-8 textarea:focus {
  outline: none;
  border-color: var(--hs-green);
  box-shadow: 0 0 0 3px rgb(86 129 84 / 14%);
}

#wpforms-8 .wpforms-field-row {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

#wpforms-8 .wpforms-field-row-block {
  flex: 1;
}

#wpforms-8 .wpforms-field-sublabel {
  display: block;
  margin-top: 0.35rem;
  color: #6b756f;
  font-size: 0.8rem;
}

#wpforms-8 .wpforms-submit-container {
  margin-top: 1.25rem;
}

#wpforms-submit-8 {
  display: inline-block;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(to bottom right, var(--hs-orange-light), var(--hs-orange));
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

#wpforms-submit-8:hover {
  background: var(--hs-orange);
}

/* Footer */
.site-footer {
  background: #26382f;
  padding: 64px 0 28px;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  max-width: 1280px;
}

.footer-col {
  text-align: left;
}

.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-links {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0 0 8px;
  padding: 0;
  color: rgba(255,255,255,.9);
  font-size: 16;
  line-height: 1.6;
}

.footer-links li::marker {
  display: none;
  content: "";
}

.footer-links a {
  display: inline;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-links a:hover, .footer-links a:visited {
  color: #fff;
}

.footer-bottom {
  max-width: 1280px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 56px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 575px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Optional duplicated mobile CTA block */
.responsive_cta {
  display: none;
}

/* Responsive */
@media (max-width: 1279.98px) {
  .hs-container {
    max-width: 1024px;
  }

  .hero-image {
    height: 330px;
  }

  .broker-card {
    margin-top: 160px;
  }

  .main-nav {
    gap: 34px;
  }
}

@media (max-width: 991.98px) {
  .hs-container {
    max-width: 768px;
  }

  .page-main {
    padding-top: 18px;
  }

  .col-content {
    max-width: none;
  }

  .sidebar {
    padding-left: 12px;
  }

  .listing-summary {
    max-width: none;
    margin-bottom: 24px;
    padding-top: 0;
  }

  .broker-card {
    width: 100%;
    margin-top: 24px;
  }

  .hero-image {
    height: 360px;
  }

  .main-content-row {
    display: flex;
    flex-direction: column;
  }

  .sidebar-column {
    order: -1;
  }

  .gallery-column {
    order: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .thumb-row {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 10px;
    align-items: stretch;
  }

  .gallery-thumb {
    display: none;
    width: 100% !important;
    max-width: none !important;
  }

  .gallery-thumb.active {
    display: block;
  }

  .gallery-thumb img {
    width: 100% !important;
    max-width: none !important;
    height: 120px;
    object-fit: cover;
  }

  .thumb-arrow {
    width: 100%;
    height: 120px;
    min-width: 0;
  }

  .media-tabs {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .media-tabs a {
    flex: 0 0 auto;
  }
  .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 640px) {
  #wpforms-8 .wpforms-field-row {
    display: block;
  }

  #wpforms-8 .wpforms-field-row-block + .wpforms-field-row-block {
    margin-top: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .hs-container {
    padding-inline: 14px;
  }

  .brand {
    font-size: 21px;
  }

  .hero-image {
    height: 245px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0;
  }

  .responsive_cta {
    display: block;
  }

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

  .site-footer {
    padding-top: 44px;
  }
  
  .backbar {
        height: auto;
        padding: 12px 0;
    }

  .backlink {
	    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .thumb-row {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 8px;
  }

  .gallery-thumb img,
  .thumb-arrow {
    height: 120px;
  }
  .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
