/**
 * Jenny Cross — site-wide typography, spacing & custom sections
 * Loads after style.css
 */

:root {
  --la-section-y: 30px;
  --la-section-y-tight: clamp(40px, 5vw, 30px);
  --la-block-gap: 20px;
  --la-stack-gap: 16px;
  --la-title: clamp(28px, 3.2vw, 42px);
  --la-title-sm: clamp(22px, 2.6vw, 32px);
  --la-subtitle: 13px;
  --la-body: 16px;
  --jc-header-height: 140px;
  --jc-header-y-pad: 20px;
  --jc-header-x-pad: 34px;
  --jc-header-logo: 148px;
}

/* ---- Beaches To Business brand colors ---- */
.sec-title .sub-title,
.sec-title.light .sub-title,
.sec-title .h6.sub-title {
  color: #fd701a;
  opacity: 1;
  visibility: visible;
}

/* ---- Site preloader (Beaches To Business brand) ---- */
body.jc-preloader-active {
  overflow: hidden;
}

.jc-preloader.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--theme-color2) 0%, var(--theme-color3) 52%, var(--theme-color4) 100%);
}

.jc-preloader.preloader::before,
.jc-preloader.preloader::after {
  display: none;
  content: none;
}

.jc-preloader__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.jc-preloader__bg::before,
.jc-preloader__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: jc-preloader-glow 4s ease-in-out infinite alternate;
}

.jc-preloader__bg::before {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: var(--theme-color1);
}

.jc-preloader__bg::after {
  width: 240px;
  height: 240px;
  right: -50px;
  bottom: -70px;
  background: var(--theme-color-accent);
  animation-delay: 1.2s;
}

.jc-preloader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jc-preloader__mark {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jc-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
}

.jc-preloader__ring--outer {
  border-top-color: var(--theme-color1);
  border-right-color: rgba(var(--theme-color1-rgb), 0.35);
  animation: jc-preloader-spin 1.1s linear infinite;
}

.jc-preloader__ring--inner {
  inset: 10px;
  border-bottom-color: var(--theme-color-accent);
  border-left-color: rgba(var(--theme-color-accent-rgb), 0.35);
  animation: jc-preloader-spin 0.85s linear infinite reverse;
}

.jc-preloader__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  animation: jc-preloader-pulse 1.8s ease-in-out infinite;
}

.jc-preloader__label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--heading-font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.jc-preloader__dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 2px;
}

.jc-preloader__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-color-accent);
  animation: jc-preloader-dot 1.2s ease-in-out infinite;
}

.jc-preloader__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.jc-preloader__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.jc-preloader__bar {
  width: min(220px, 58vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.jc-preloader__bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--theme-color1), var(--theme-color-accent));
  animation: jc-preloader-bar 1.35s ease-in-out infinite;
}

.jc-preloader--done {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.jc-preloader--done .jc-preloader__inner {
  opacity: 0;
  transform: scale(0.94) translateY(8px);
}

@keyframes jc-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jc-preloader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.96);
    opacity: 0.92;
  }
}

@keyframes jc-preloader-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes jc-preloader-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

@keyframes jc-preloader-glow {
  from {
    transform: scale(1) translate(0, 0);
    opacity: 0.28;
  }
  to {
    transform: scale(1.12) translate(8px, -6px);
    opacity: 0.42;
  }
}

@media (max-width: 575.98px) {
  .jc-preloader__mark {
    width: 96px;
    height: 96px;
  }

  .jc-preloader__logo {
    width: 62px;
    height: 62px;
  }

  .jc-preloader__label {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .jc-preloader__bar {
    width: min(190px, 70vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jc-preloader__ring,
  .jc-preloader__logo,
  .jc-preloader__dots span,
  .jc-preloader__bar span,
  .jc-preloader__bg::before,
  .jc-preloader__bg::after {
    animation: none;
  }

  .jc-preloader__ring--outer {
    border-color: rgba(var(--theme-color1-rgb), 0.55);
    border-top-color: var(--theme-color1);
  }

  .jc-preloader__ring--inner {
    border-color: rgba(var(--theme-color-accent-rgb), 0.45);
    border-bottom-color: var(--theme-color-accent);
  }
}

.btn-style-two,
.btn-style-two .btn-title {
  color: #ffffff;
}

.btn-style-two:before,
.btn-style-two .icon {
  background-color: var(--theme-color-accent);
  color: #ffffff;
}

.btn-style-two:hover,
.btn-style-two:hover .btn-title {
  color: #ffffff;
}

.btn-style-one:before,
.btn-style-one .icon {
  background-color: var(--theme-color1);
  color: #ffffff;
}

.btn-style-one:hover,
.btn-style-one:hover .btn-title {
  color: #ffffff;
}

.main-menu .navigation > li.current > a {
  color: inherit;
}

.main-header.jc-header-overlay .main-menu .navigation > li.current > a {
  color: rgba(255, 255, 255, 0.92);
}

.main-header.jc-header-overlay .main-menu .navigation > li > a:hover {
  color: var(--theme-color-accent);
}

.jc-contact-info__icon,
.jc-contact-main__address i,
.jc-listings-cta__phone i {
  background: var(--theme-color-accent);
  color: #ffffff;
}

.jc-contact-info__card:hover {
  border-color: rgba(var(--theme-color-accent-rgb), 0.55);
}

.jc-contact-form .form-control:focus {
  border-color: var(--theme-color1);
  box-shadow: 0 0 0 3px rgba(var(--theme-color1-rgb), 0.22);
}

.jc-page-title-back:hover {
  background: var(--theme-color-accent);
  color: #ffffff;
}

.simple-footer .simple-footer-nav a:hover,
.simple-footer .simple-footer-contact a:hover,
.simple-footer .simple-footer-copy a:hover {
  color: var(--theme-color-accent);
}

/* ---- Typography (one family system) ---- */
body,
p,
.text,
input,
textarea,
select,
button,
.main-menu .navigation > li > a {
  font-family: var(--body-font-family);
  font-size: var(--la-body);
  line-height: 1.65;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.site-name,
.website-name,
.sec-title .title,
.banner-section .banner-title,
.about-property-meta__title {
  font-family: var(--heading-font-family);
}

.sec-title .title,
.property-gallery-section__head .title {
  font-size: var(--la-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 12px;
}

.sec-title .sub-title {
  font-family: var(--body-font-family);
  font-size: var(--la-subtitle);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fd701a;
  opacity: 1;
  visibility: visible;
}

.inner-column.wow .sec-title,
.inner-column.wow .sec-title .sub-title,
.inner-column.wow .sec-title .title {
  opacity: 1;
  visibility: visible;
}

.custom-space-about .content-column .inner-column .sec-title .title {
  color: var(--headings-color);
  opacity: 1;
  visibility: visible;
}

.sec-title.light .title {
  font-family: var(--heading-font-family);
}

.banner-section .outer-box .banner-block .inner-block .banner-title {
  font-family: var(--heading-font-family);
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-name {
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.jc-site-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.jc-site-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: var(--jc-header-logo);
  max-width: var(--jc-header-logo);
  object-fit: contain;
}

.header-style-one.header-style-clean .main-header .logo img,
.header-style-one.header-style-clean .sticky-header .logo img,
.header-style-one.header-style-clean .sticky-header .jc-site-logo {
  max-height: var(--jc-header-logo);
  max-width: var(--jc-header-logo);
}

.jc-site-logo--mobile {
  max-height: 108px;
  max-width: 108px;
}

.jc-site-logo--footer {
  max-height: 110px;
  max-width: 110px;
  opacity: 0.98;
}

.simple-footer .simple-footer-logo img.jc-site-logo--footer {
  max-width: 110px;
}

.simple-footer .website-name {
  font-family: var(--heading-font-family);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
}

.about-property-meta__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.about-measurement-card__stat {
  font-family: var(--heading-font-family);
}

/* ---- Section vertical rhythm ---- */
.about-section.custom-space-about,
.project-section.custom-space-project,
.why-choose-us-section.custom-space-why-choose,
.contact-section.custom-space-contact {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.about-section.pt-0.custom-space-about {
  padding-top: var(--la-section-y-tight) !important;
}

.project-section.property-gallery-section {
  padding-top: var(--la-section-y) !important;
  padding-bottom: var(--la-section-y) !important;
}

.banner-section {
  margin-bottom: 0;
  margin-top: 0;
}

.banner-section .outer-box .banner-block .inner-block {
  padding-top: calc(var(--jc-header-height) + 48px);
}

.banner-section .banner-location {
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding: 12px 30px !important;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-family: var(--body-font-family);
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
  .banner-section .banner-location {
    font-size: 12px;
    padding: 8px 18px;
    margin-bottom: 16px;
  }
}

/* Theme default huge padding — neutralized where custom-space applies */
.about-section.custom-space-about {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 991.98px) {
  .about-section.custom-space-about,
  .project-section.custom-space-project,
  .why-choose-us-section.custom-space-why-choose,
  .contact-section.custom-space-contact,
  .project-section.property-gallery-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

@media (max-width: 767.98px) {
  .about-section.custom-space-about,
  .project-section.custom-space-project,
  .why-choose-us-section.custom-space-why-choose,
  .contact-section.custom-space-contact,
  .project-section.property-gallery-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ---- Section internal gaps ---- */
.custom-space-about .row {
  row-gap: var(--la-block-gap);
  align-items: center;
}

.custom-space-about .content-column {
  display: flex;
  align-items: center;
}

.custom-space-about .content-column .inner-column {
  width: 100%;
  padding-top: 0;
}

.about-section.custom-space-about .content-column .inner-column {
  padding-top: 0;
}

@media (min-width: 1200px) {
  .about-section.custom-space-about .content-column .inner-column {
    padding-left: clamp(28px, 3vw, 50px);
  }
}

@media (max-width: 1199.98px) {
  .about-section.custom-space-about .content-column .inner-column {
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .custom-space-about .row {
    align-items: flex-start;
  }

  .custom-space-about .content-column {
    display: block;
  }

  .custom-space-about .content-column .inner-column {
    padding-top: 8px;
    padding-left: 0;
  }
}

.custom-space-about .content-column .inner-column .sec-title {
  margin-bottom: var(--la-stack-gap);
}

.custom-space-about .content-column .inner-column .sec-title .text {
  margin-top: 0;
  margin-bottom: var(--la-stack-gap);
}

.custom-space-about .about-block--measurement {
  margin-top: var(--la-stack-gap);
  margin-bottom: var(--la-stack-gap);
}

.custom-space-about .about-block--property-meta {
  margin-top: 0;
  margin-bottom: var(--la-stack-gap);
}

.custom-space-about .about-property-meta {
  gap: var(--la-stack-gap);
}

.custom-space-about .content-column .inner-column .bottom-box {
  gap: var(--la-block-gap);
  padding-top: var(--la-stack-gap);
  margin-top: 4px;
}

.about-section .content-column .inner-column .bottom-box .info-box .info strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--theme-color2);
  font-family: var(--heading-font-family);
}

.custom-space-project .sec-title,
.property-gallery-section__head {
  margin-bottom: var(--la-block-gap) !important;
}

.custom-space-why-choose .outer-box .content-column .inner-column .sec-title {
  margin-bottom: var(--la-stack-gap);
}

.custom-space-why-choose .outer-box .content-column .inner-column .text {
  margin-bottom: var(--la-stack-gap);
  line-height: 1.65;
}

.custom-space-why-choose .outer-box .content-column .inner-column .list-style-one {
  margin-bottom: var(--la-block-gap);
}

.custom-space-why-choose .outer-box .content-column .inner-column .list-style-one li {
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 15px;
}

.contact-section.custom-space-contact .outer-box .form-coumn .inner-column .sec-title {
  margin-bottom: var(--la-stack-gap);
}

.contact-section.custom-space-contact .outer-box .form-coumn .inner-column .sec-title .text {
  line-height: 1.65;
  margin-bottom: var(--la-block-gap);
}

.contact-section.custom-space-contact .outer-box .form-coumn .inner-column {
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

@media (max-width: 1199.98px) {
  .contact-section.custom-space-contact .outer-box .form-coumn .inner-column {
    padding-top: 48px;
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .contact-section.custom-space-contact .outer-box .form-coumn .inner-column {
    padding: 32px 16px 48px;
  }
}

.simple-footer {
  padding-top: 48px;
  padding-bottom: 32px;
}

.simple-footer .simple-footer-inner {
  gap: 16px;
}

.simple-footer .simple-footer-contact {
  gap: 10px;
}

.simple-footer .simple-footer-contact li {
  gap: 5px;
}

.simple-footer .simple-footer-contact li i {
  width: auto;
  min-width: 1em;
  color: var(--theme-color-accent);
  flex-shrink: 0;
}

.simple-footer .simple-footer-contact li.simple-footer-contact__address {
  align-items: flex-start;
  width: auto;
  max-width: 100%;
}

.simple-footer .simple-footer-contact__address-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 3px !important;
  text-align: left;
  line-height: 1.55;
}

.simple-footer .simple-footer-contact__address-text i {
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--theme-color-accent);
  line-height: 1;
}

.simple-footer .simple-footer-contact__address-text > span {
  flex: 0 1 auto;
}

/* Auto-container side padding consistency */
.auto-container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .auto-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Gallery title — align with global sec-title */
.property-gallery-section__head .title {
  font-size: var(--la-title);
}

/* ---- Transparent overlay header (sits on banner / inner page hero) ---- */
.main-header.jc-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.main-header.jc-header-overlay .header-lower .inner-container {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.main-header.jc-header-overlay .main-menu .navigation > li > a {
  color: rgba(255, 255, 255, 0.92);
}

.main-header.jc-header-overlay .main-menu .navigation > li > a:hover {
  color: var(--theme-color-accent);
}

.main-header.jc-header-overlay .main-menu .navigation > li.current:before {
  width: 0 !important;
  opacity: 0;
}

.main-header.jc-header-overlay .mobile-nav-toggler span {
  background-color: #ffffff;
}

.main-header.jc-header-overlay .right-box .theme-btn.btn-style-two {
  border-color: rgba(255, 255, 255, 0.28);
}

/* Sticky header — solid white bar when scrolling */
.main-header.jc-header-overlay .sticky-header {
  background: var(--theme-color-white);
  border-bottom: 1px solid #e8e8e8;
}

.main-header.jc-header-overlay .sticky-header .main-menu .navigation > li > a {
  color: var(--theme-color-black);
}

.main-header.jc-header-overlay .sticky-header .main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}

.main-header.jc-header-overlay .sticky-header .main-menu .navigation > li.current > a {
  color: var(--theme-color-black);
}

.mobile-menu .navigation li.current > a {
  color: #ffffff;
}

.mobile-menu .navigation li:hover > a {
  color: var(--theme-color1);
}

.main-header.jc-header-overlay .sticky-header .mobile-nav-toggler span {
  background-color: var(--theme-color-black);
}

.page-title {
  padding-top: calc(var(--jc-header-height) + 0px);
}

/* ---- Jenny Cross: compact nav for more menu items ---- */
.header-style-one.header-style-clean .header-lower .inner-container .main-box {
  min-height: var(--jc-header-height);
  padding: var(--jc-header-y-pad) var(--jc-header-x-pad);
  align-items: center;
}

.header-style-one.header-style-clean .main-box .left-box,
.header-style-one.header-style-clean .main-box .logo-box,
.header-style-one.header-style-clean .main-box .logo-box .logo,
.header-style-one.header-style-clean .sticky-header .logo {
  display: flex;
  align-items: center;
}

.header-style-one.header-style-clean .main-box .logo-box .logo,
.header-style-one.header-style-clean .sticky-header .logo {
  padding: 0 !important;
  max-width: none;
}

.header-style-one.header-style-clean .main-box .nav-outer {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.header-style-one.header-style-clean .main-menu .navigation {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.header-style-one.header-style-clean .main-menu .navigation > li {
  float: none;
  margin: 0 12px;
  padding: 20px 0;
  flex-shrink: 1;
}

.header-style-one.header-style-clean .main-menu .navigation > li > a {
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  padding: 0 4px;
}

/* Sticky header — same height, logo & spacing as main header */
.header-style-one.header-style-clean .sticky-header .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--jc-header-height);
  padding: 14px;
}

.header-style-one.header-style-clean .sticky-header .nav-outer {
  position: static;
  left: auto;
  transform: none;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.header-style-one.header-style-clean .sticky-header .main-menu,
.header-style-one.header-style-clean .sticky-header .main-menu .navbar-collapse {
  width: 100%;
}

.header-style-one.header-style-clean .sticky-header .main-menu .navigation {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px 12px;
  width: 100%;
  float: none;
}

.header-style-one.header-style-clean .sticky-header .main-menu .navigation > li {
  float: none;
  margin: 0 !important;
  padding: 20px 0;
  flex-shrink: 1;
  min-width: 0;
}

.header-style-one.header-style-clean .sticky-header .main-menu .navigation > li > a {
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  padding: 0 4px;
}

.header-style-one.header-style-clean .sticky-header .logo {
  flex: 0 0 auto;
  padding: 0;
}

.header-style-one.header-style-clean .sticky-header .right-box {
  flex: 0 0 auto;
  padding-bottom: 0;
}

.header-style-one.header-style-clean .sticky-header .right-box .theme-btn {
  padding-right: 18px;
}

.header-style-one.header-style-clean .sticky-header .right-box .theme-btn .btn-title {
  font-size: 14px;
}

/* 1281–1440px: compact desktop nav */
@media (min-width: 1281px) and (max-width: 1440px) {
  :root {
    --jc-header-height: 124px;
    --jc-header-y-pad: 14px;
    --jc-header-x-pad: 24px;
    --jc-header-logo: 116px;
  }

  .header-style-one.header-style-clean .main-menu .navigation > li {
    margin: 0 5px;
    padding: 14px 0;
  }

  .header-style-one.header-style-clean .main-menu .navigation > li > a {
    font-size: 12px;
    padding: 0 2px;
    letter-spacing: 0;
  }

  .header-style-one.header-style-clean .sticky-header .main-menu .navigation > li {
    padding: 14px 0;
  }

  .header-style-one.header-style-clean .sticky-header .main-menu .navigation > li > a {
    font-size: 12px;
    padding: 0 2px;
  }

  .header-style-one.header-style-clean .right-box .theme-btn .btn-title {
    font-size: 13px;
  }

  .header-style-one.header-style-clean .right-box .theme-btn {
    padding-right: 16px;
  }
}

/* ≤1280px: logo + hamburger (nav/CTA in mobile drawer) */
@media (max-width: 1280px) {
  :root {
    --jc-header-height: 104px;
    --jc-header-y-pad: 12px;
    --jc-header-x-pad: 20px;
    --jc-header-logo: 100px;
  }

  .main-header .mobile-nav-toggler {
    display: block !important;
  }

  .header-style-one.header-style-clean .main-box .nav-outer .main-menu,
  .header-style-one.header-style-clean .sticky-header .main-menu {
    display: none !important;
  }

  .header-style-one.header-style-clean .header-lower .nav-outer {
    display: none !important;
  }

  .header-style-one.header-style-clean .header-lower .inner-container .main-box,
  .header-style-one.header-style-clean .sticky-header .inner-container {
    justify-content: space-between;
    gap: 12px;
    min-height: var(--jc-header-height);
    padding: var(--jc-header-y-pad) var(--jc-header-x-pad);
  }

  .header-style-one.header-style-clean .main-box .left-box,
  .header-style-one.header-style-clean .sticky-header .logo {
    flex: 0 0 auto;
    margin-right: auto;
  }

  .header-style-one.header-style-clean .main-box .nav-outer,
  .header-style-one.header-style-clean .sticky-header .nav-outer {
    position: static;
    left: auto;
    transform: none;
    margin-left: auto;
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
  }

  .header-style-one.header-style-clean .header-lower .right-box {
    margin-left: auto;
  }

  .header-style-one.header-style-clean .right-box {
    flex: 0 0 auto;
    gap: 0;
  }

  .header-style-one.header-style-clean .right-box .theme-btn,
  .header-style-one.header-style-clean .sticky-header .right-box .theme-btn {
    display: none !important;
  }

  .header-style-one.header-style-clean .header-lower .mobile-nav-toggler,
  .header-style-one.header-style-clean .sticky-header .mobile-nav-toggler {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Keep sticky bar usable between 1025–1280 (theme hides it only ≤1024) */
  .sticky-header,
  .sticky-header.fixed-header {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .header-style-one.header-style-clean .sticky-header .right-box {
    display: none;
  }

  .header-style-one.header-style-clean .sticky-header .nav-outer .mobile-nav-toggler {
    display: block !important;
  }
}

/* ---- Services section slider ---- */
.jc-services-slider {
  overflow: hidden;
  padding-bottom: 0;
}

.jc-services-slider.swiper-horizontal {
  padding-bottom: 0 !important;
}

.jc-services-slider .swiper-slide {
  height: auto;
}

.jc-services-slider .service-block-three {
  height: 100%;
}

.jc-services-slider .service-block-three .inner-block {
  margin-bottom: 0;
  height: 100%;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .jc-services-slider .service-block-three .inner-block {
    padding: 30px 18px;
  }

  .jc-services-slider .service-block-three .inner-block .title {
    font-size: clamp(17px, 1.35vw, 20px);
  }
}

.jc-services-pagination {
  display: none;
  position: relative;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 0;
}

.jc-services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d3d3d3;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.jc-services-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color1);
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .services-section-three {
    padding-top: 16px !important;
    padding-bottom: 8px !important;
  }

  .services-section-three .auto-container {
    padding-left: 0;
    padding-right: 0;
  }

  .jc-services-slider {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0;
  }

  .jc-services-pagination {
    display: flex;
    margin-top: 10px;
  }

  .about-section.pt-0.custom-space-about {
    padding-top: 20px !important;
  }
}

@media (min-width: 992px) {
  .jc-services-pagination {
    display: none !important;
  }
}

/* ---- Services strip (full width) ---- */
.jc-services-strip {
  width: 100%;
  background: var(--theme-color-light-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(32px, 4vw, 48px) 20px;
}
.jc-services-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.jc-service-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--theme-color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.jc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.jc-service-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
  font-size: 22px;
}
.jc-service-card h3 {
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 8px;
}
.jc-service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-color);
  margin: 0;
}
@media (max-width: 991.98px) {
  .jc-services-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .jc-services-strip__inner {
    grid-template-columns: 1fr;
  }
}

/* ---- Full-width sections ---- */
.jc-fullwidth-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.jc-fullwidth-section--dark {
  min-height: clamp(420px, 50vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 7vw, 96px) 24px;
}
.jc-fullwidth-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jc-fullwidth-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jc-fullwidth-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(27, 31, 18, 0.78) 100%);
}
.jc-fullwidth-section__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.jc-fullwidth-section__content .text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 24px;
}
.jc-fullwidth-section__actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.jc-fullwidth-section--dark .jc-feature-list {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.jc-feature-list {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 520px;
}
.jc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.jc-feature-list li i {
  color: var(--theme-color1);
  margin-top: 3px;
  flex-shrink: 0;
}
.jc-feature-list--dark li {
  color: var(--text-color);
}
.jc-feature-list--dark li i {
  color: var(--theme-color1);
}

/* Rentals split section */
.jc-fullwidth-section--light {
  background: var(--theme-color-white);
}
.jc-fullwidth-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 45vw, 520px);
}
.jc-fullwidth-section__split-image {
  position: relative;
  min-height: 320px;
}
.jc-fullwidth-section__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jc-fullwidth-section__split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 80px);
  background: var(--theme-color-light-gray);
}
.jc-fullwidth-section__split-content .text {
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 20px;
}
.jc-fullwidth-section__split-content .jc-feature-list {
  margin: 0 0 28px;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .jc-fullwidth-section__split {
    grid-template-columns: 1fr;
  }
  .jc-fullwidth-section__split-image {
    min-height: 260px;
    max-height: 320px;
  }
}

@media (max-width: 991.98px) {
  .jc-fullwidth-section {
    overflow: visible;
  }

  .jc-fullwidth-section--dark {
    display: block;
    min-height: 0;
    padding: 40px 16px 80px;
  }

  .jc-fullwidth-section__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 4px;
  }

  .jc-fullwidth-section__content .sec-title {
    margin-bottom: 16px;
  }

  .jc-fullwidth-section__content .sec-title .title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .jc-fullwidth-section__content .sec-title .sub-title {
    margin-bottom: 8px;
  }

  .jc-fullwidth-section__content .text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0 2px;
  }

  .jc-fullwidth-section--dark .jc-feature-list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 22px;
    padding: 0 4px;
    text-align: left;
  }

  .jc-feature-list li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    gap: 10px;
  }

  .jc-feature-list li i {
    margin-top: 2px;
    font-size: 14px;
  }

  .jc-fullwidth-section__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .jc-fullwidth-section__actions .theme-btn.btn-style-two {
    max-width: 100%;
    flex-shrink: 1;
  }

  .jc-fullwidth-section__actions .theme-btn.btn-style-two .btn-title {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .jc-fullwidth-section--dark {
    padding: 32px 14px 80px;
  }

  .jc-fullwidth-section__content .sec-title .title {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .jc-fullwidth-section__content .text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .jc-feature-list li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .jc-fullwidth-section__actions {
    padding: 0 10px 8px;
  }

  .jc-fullwidth-section__actions .theme-btn.btn-style-two .btn-title {
    font-size: 12px;
  }

  .back-to-top-wrapper {
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 20px;
  }

  .back-to-top-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* ---- Tourism section ---- */
.jc-tourism-section {
  background: var(--theme-color-white);
}
.jc-tourism-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-color);
  line-height: 1.65;
}

.jc-tourism-cards-wrap {
  position: relative;
  margin-bottom: var(--la-block-gap);
}

.jc-tourism-cards-slider {
  overflow: hidden;
}

.jc-tourism-cards-slider .swiper-slide {
  height: auto;
}

.jc-tourism-cards-slider .jc-tourism-card {
  height: 100%;
}

.jc-tourism-cards-pagination,
.jc-tourism-gallery-pagination {
  display: none;
  position: relative;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 0;
}

.jc-tourism-cards-pagination .swiper-pagination-bullet,
.jc-tourism-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d3d3d3;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.jc-tourism-cards-pagination .swiper-pagination-bullet-active,
.jc-tourism-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color1);
  transform: scale(1.15);
}

.jc-tourism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--la-block-gap);
}
.jc-tourism-card {
  padding: 28px 24px;
  background: var(--theme-color-light-gray);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.jc-tourism-card:hover {
  border-color: var(--theme-color1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.jc-tourism-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
  font-size: 20px;
  margin-bottom: 16px;
}
.jc-tourism-card h3 {
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 8px;
}
.jc-tourism-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}
/* Full-width tourism gallery */
.jc-tourism-section.property-gallery-section {
  padding-bottom: clamp(20px, 3vw, 32px) !important;
}

.jc-listings-section + .jc-tourism-section.property-gallery-section.custom-space-project {
  padding-top: clamp(12px, 1.5vw, 20px) !important;
}

.jc-tourism-gallery-full {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(24px, 3vw, 36px);
  margin-bottom: 0;
  padding: 8px 0 0;
  overflow: hidden;
}

.jc-tourism-gallery-full__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 3;
  pointer-events: none;
}

.jc-tourism-gallery-full__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--theme-color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.jc-tourism-gallery-full__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--theme-color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.jc-tourism-gallery-wrap {
  width: 100%;
  overflow: visible;
}

.jc-tourism-gallery-slider {
  overflow: hidden;
  padding: 6px 0 12px;
}

.jc-tourism-gallery-slider .swiper-slide {
  height: auto;
  transition: transform 0.4s ease;
}

.jc-gallery-slide {
  height: clamp(240px, 28vw, 380px);
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.jc-gallery-slide__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  overflow: hidden;
}

.jc-gallery-slide__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.jc-gallery-slide__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.jc-gallery-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.jc-gallery-slide__link:hover img {
  transform: scale(1.07);
}

.jc-gallery-slide__link:hover::after {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .jc-gallery-slide {
    height: 240px;
    border-radius: 14px;
  }

  .jc-tourism-gallery-full__fade {
    display: none;
  }
}

/* Tourism — mobile */
@media (max-width: 991.98px) {
  .jc-listings-cta {
    padding-bottom: 30px;
  }

  .jc-tourism-section.property-gallery-section.custom-space-project {
    padding-top: 8px !important;
    padding-bottom: 20px !important;
  }

  .jc-tourism-section .property-gallery-section__head {
    margin-bottom: 10px !important;
  }

  .jc-tourism-section .auto-container {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 6px;
  }

  .jc-tourism-section .sec-title .title {
    font-size: clamp(24px, 5.8vw, 34px);
    line-height: 1.2;
  }

  .jc-tourism-intro {
    font-size: 14px;
  }

  .jc-tourism-cards-wrap {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 4px;
    overflow: visible;
  }

  .jc-tourism-cards-slider {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0 !important;
  }

  .jc-tourism-cards-slider .swiper-slide {
    height: auto;
  }

  .jc-tourism-cards-pagination {
    display: flex;
    margin-top: 12px;
    margin-bottom: 14px;
    padding-bottom: 2px;
  }

  .jc-tourism-card {
    padding: 22px 18px;
  }

  .jc-tourism-card:hover {
    border-color: rgba(0, 0, 0, 0.04);
    box-shadow: none;
  }

  .jc-tourism-gallery-full {
    margin-top: 14px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0 16px;
    overflow: visible;
  }

  .jc-tourism-gallery-wrap {
    overflow: visible;
  }

  .jc-tourism-gallery-slider {
    overflow: visible;
    padding: 0;
  }

  .jc-tourism-gallery-slider .swiper-slide {
    padding: 0 2px;
  }

  .jc-tourism-gallery-pagination {
    display: flex;
    margin-top: 12px;
    padding-bottom: 4px;
  }
}

@media (max-width: 575.98px) {
  .jc-listings-cta {
    padding-bottom: 4px;
  }

  .jc-tourism-section.property-gallery-section.custom-space-project {
    padding-top: 4px !important;
  }

  .jc-tourism-cards-wrap {
    margin-bottom: 2px;
  }

  .jc-tourism-card h3 {
    font-size: 16px;
  }

  .jc-tourism-card p {
    font-size: 13px;
  }

  .jc-gallery-slide {
    height: 220px;
  }
}

@media (min-width: 992px) {
  .jc-tourism-cards-pagination,
  .jc-tourism-gallery-pagination {
    display: none !important;
  }
}

/* ---- Reviews section (full width slider) ---- */
.jc-reviews-section {
  width: 100%;
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(48px, 6vw, 30px);
  background: linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-light-gray) 100%);
  overflow: hidden;
}

.jc-reviews-intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-color);
  line-height: 1.65;
}

.jc-reviews-section__head {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.jc-reviews-slider-full {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 8px;
}

.jc-reviews-slider {
  overflow: hidden;
  padding: 8px 30px;
}

.jc-reviews-slider .swiper-wrapper {
  align-items: stretch;
}

.jc-reviews-slider .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.jc-review-card {
  flex: 1;
  width: 100%;
  min-height: 280px;
  padding: clamp(28px, 3.5vw, 36px);
  background: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.jc-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--theme-color1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.jc-review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--review-color);
  font-size: 15px;
}

.jc-review-card__text {
  flex: 1;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--headings-color);
  font-style: italic;
}

.jc-review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jc-review-card__author strong {
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--headings-color);
}

.jc-review-card__author span {
  font-size: 13px;
  color: var(--text-color);
}

.jc-reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.jc-reviews-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d3d3d3;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.jc-reviews-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color1);
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .jc-reviews-section {
    padding: 24px 0 40px;
    overflow: visible;
  }

  .jc-reviews-section .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jc-reviews-section__head {
    margin-bottom: 14px;
  }

  .jc-reviews-section .sec-title .title {
    font-size: clamp(24px, 5.8vw, 34px);
    line-height: 1.2;
  }

  .jc-reviews-intro {
    font-size: 14px;
  }

  .jc-reviews-slider-full {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0 16px 8px;
    overflow: visible;
  }

  .jc-reviews-slider {
    overflow: visible;
    padding: 0 0 8px;
  }

  .jc-reviews-slider .swiper-wrapper {
    align-items: stretch;
  }

  .jc-reviews-slider .swiper-slide {
    height: auto !important;
    display: flex;
  }

  .jc-review-card {
    flex: 1;
    width: 100%;
    min-height: 0;
    padding: 22px 18px 24px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .jc-review-card:hover {
    transform: none;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.06);
  }

  .jc-review-card__stars {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .jc-review-card__text {
    flex: none;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .jc-review-card__author {
    padding-top: 14px;
    margin-top: auto;
  }

  .jc-review-card__author strong {
    font-size: 15px;
  }

  .jc-review-card__author span {
    font-size: 12px;
  }

  .jc-reviews-pagination {
    margin-top: 14px;
    padding-bottom: 8px;
  }
}

@media (max-width: 575.98px) {
  .jc-reviews-section {
    padding: 20px 0 36px;
  }

  .jc-review-card {
    padding: 20px 16px 22px;
  }

  .jc-review-card__text {
    font-size: 14px;
  }

  .jc-reviews-pagination {
    margin-top: 12px;
    padding-bottom: 6px;
  }
}

@media (max-width: 991.98px) {
  .jc-tourism-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer nav links */
.simple-footer .simple-footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

@media (max-width: 767.98px) {
  .simple-footer {
    padding: 36px 0 30px;
  }

  .simple-footer .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .simple-footer .simple-footer-inner {
    gap: 22px;
    align-items: flex-start;
    text-align: left;
  }

  .simple-footer .simple-footer-logo {
    align-self: flex-start;
  }

  .simple-footer .simple-footer-logo img.jc-site-logo--footer {
    max-width: 92px;
    max-height: 92px;
  }

  .simple-footer .simple-footer-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0;
    margin: 0;
    justify-content: flex-start;
  }

  .simple-footer .simple-footer-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .simple-footer .simple-footer-nav li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .simple-footer .simple-footer-nav a {
    display: block;
    padding: 11px 0;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
  }

  .simple-footer .simple-footer-contact {
    width: 100%;
    max-width: 100%;
    gap: 5px;
    align-items: stretch;
    margin: 0;
  }

  .simple-footer .simple-footer-contact li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .simple-footer .simple-footer-contact li i {
    flex-shrink: 0;
    width: auto;
    min-width: 1em;
    margin-top: 3px;
    font-size: 15px;
    text-align: center;
    color: var(--theme-color-accent);
  }

  .simple-footer .simple-footer-contact a,
  .simple-footer .simple-footer-contact span {
    flex: 1;
    min-width: 0;
    text-align: left;
    word-break: break-word;
  }

  .simple-footer .simple-footer-contact__address-text,
  .simple-footer .simple-footer-contact__address-text > span {
    flex: 0 1 auto;
    width: auto;
  }

  .simple-footer .simple-footer-divider {
    width: 100%;
    max-width: 100%;
    margin: 4px 0;
  }

  .simple-footer .simple-footer-copy {
    width: 100%;
    font-size: 12px;
    line-height: 1.65;
    max-width: 100%;
    padding: 0 44px;
    text-align: center;
    align-self: center;
    box-sizing: border-box;
  }
}

@media (max-width: 575.98px) {
  .simple-footer {
    padding: 32px 0 26px;
  }

  .simple-footer .simple-footer-inner {
    gap: 20px;
  }

  .simple-footer .simple-footer-logo img.jc-site-logo--footer {
    max-width: 84px;
    max-height: 84px;
  }

  .simple-footer .simple-footer-nav a {
    font-size: 13px;
    padding: 10px 6px;
  }

  .simple-footer .simple-footer-contact {
    max-width: 100%;
  }

  .simple-footer .simple-footer-contact li {
    font-size: 13px;
    gap: 5px;
  }

  .simple-footer .simple-footer-copy {
    font-size: 11px;
    padding: 0 40px;
  }
}

/* Contact form select */
.contact-section .form-clt select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  border-radius: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.contact-section .form-clt select option {
  color: #222;
  background: #fff;
}

/* ---- Listings section ---- */
.jc-listings-section {
  width: 100%;
  background: var(--theme-color-white);
  overflow: hidden;
}

.jc-listings-section__top {
  padding: clamp(48px, 6vw, 72px) 0 0;
  background: linear-gradient(180deg, var(--theme-color-light-gray) 0%, var(--theme-color-white) 100%);
}

.jc-listings-head .sec-title {
  margin-bottom: 0;
}

.jc-listings-head .sec-title .title {
  margin-bottom: 12px;
}

.jc-listings-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 0;
}

.jc-listings-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px auto 28px;
  max-width: 720px;
}

.jc-listings-stat {
  flex: 1 1 140px;
  text-align: center;
  padding: 20px 16px;
  background: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.jc-listings-stat__num {
  display: block;
  font-family: var(--heading-font-family);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--headings-color);
  line-height: 1.1;
  margin-bottom: 4px;
}

.jc-listings-stat__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-color);
}

.jc-listings-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jc-listings-tab {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--headings-color);
  background: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.jc-listings-tab:hover,
.jc-listings-tab.is-active {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
  transform: translateY(-2px);
}

.jc-listings-panel {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.jc-listings-panel#properties-for-sale {
  padding-top: 12px;
}

.jc-listings-panel--rentals {
  background: var(--theme-color-light-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.jc-listings-panel__head {
  margin-bottom: 24px;
  text-align: center;
}

.jc-listings-panel__title {
  font-family: var(--heading-font-family);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 8px;
}

.jc-listings-panel__desc {
  font-size: 15px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}

.jc-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jc-listings-slider-wrap {
  position: relative;
}

.jc-listings-slider {
  overflow: hidden;
  padding-bottom: 0;
}

.jc-listings-slider.swiper-horizontal {
  padding-bottom: 0 !important;
}

.jc-listings-slider .swiper-slide {
  height: auto;
}

.jc-listings-slider .jc-listing-card {
  height: 100%;
}

.jc-listings-pagination {
  display: none;
  position: relative;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 0;
}

.jc-listings-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d3d3d3;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.jc-listings-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color1);
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .jc-listings-section {
    overflow: visible;
  }

  .jc-listings-section__top {
    padding-top: 40px;
    padding-bottom: 4px;
  }

  .jc-listings-section__top .auto-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jc-listings-head .sec-title .title {
    font-size: clamp(24px, 5.8vw, 34px);
    line-height: 1.2;
    padding: 0 4px;
  }

  .jc-listings-intro {
    font-size: 14px;
    padding: 0 4px;
  }

  .jc-listings-panel .auto-container {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .jc-listings-panel#properties-for-sale {
    padding-top: 8px;
  }

  .jc-listings-panel__head {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 18px;
  }

  .jc-listings-panel__title {
    font-size: clamp(20px, 4.8vw, 26px);
  }

  .jc-listings-panel__desc {
    font-size: 14px;
  }

  .jc-listings-slider-wrap {
    overflow: visible;
    padding-bottom: 4px;
  }

  .jc-listings-slider {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .jc-listings-slider.swiper-horizontal {
    padding-bottom: 0 !important;
  }

  .jc-listings-slider .swiper-slide {
    max-width: 100%;
  }

  .jc-listings-slider .jc-listing-card {
    margin: 0 auto;
    max-width: 100%;
  }

  .jc-listing-card:hover {
    transform: none;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  }

  .jc-listing-card__body {
    padding: 18px 16px 20px;
  }

  .jc-listing-card__price {
    font-size: 22px;
  }

  .jc-listing-card__title {
    font-size: 16px;
  }

  .jc-listing-card__meta {
    gap: 8px 12px;
    margin-bottom: 14px;
  }

  .jc-listing-card__meta li {
    font-size: 12px;
  }

  .jc-listings-pagination {
    display: flex;
    margin-top: 14px;
    padding-bottom: 8px;
  }

  .jc-listings-panel {
    padding-bottom: 28px;
    overflow: visible;
  }

  /* eXp block between listing panels */
  .jc-listings-section > .jc-listings-exp {
    padding: 28px 12px !important;
    margin: 0;
    width: 100%;
  }

  .jc-listings-section > .jc-listings-exp .outer-box {
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }

  .jc-listings-section > .jc-listings-exp .image-column {
    display: none;
  }

  .jc-listings-section > .jc-listings-exp .content-column {
    width: 100%;
  }

  .jc-listings-section > .jc-listings-exp .content-column .inner-column {
    max-width: 100%;
    padding: 22px 18px 26px !important;
  }

  .jc-listings-section > .jc-listings-exp .sec-title .title {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.25;
  }

  .jc-listings-section > .jc-listings-exp .text {
    font-size: 14px;
    line-height: 1.6;
  }

  .jc-listings-section > .jc-listings-exp .list-style-one li {
    font-size: 14px;
    align-items: flex-start;
  }

  .jc-listings-section > .jc-listings-exp .list-style-one li i {
    margin-top: 3px;
    flex-shrink: 0;
  }

  .jc-listings-section > .jc-listings-exp .theme-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .jc-listings-section__top {
    padding-top: 32px;
  }

  .jc-listings-panel {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .jc-listings-panel__head {
    margin-bottom: 14px;
  }

  .jc-listing-card__media {
    aspect-ratio: 16 / 11;
  }

  .jc-listing-card__badge {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 5px 10px;
  }

  .jc-listing-card__type {
    bottom: 10px;
    right: 10px;
    font-size: 11px;
  }

  .jc-listings-section > .jc-listings-exp {
    padding: 20px 10px !important;
  }

  .jc-listings-section > .jc-listings-exp .content-column .inner-column {
    padding: 18px 14px 22px !important;
  }

  .jc-listings-section > .jc-listings-exp .theme-btn .btn-title {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .jc-listings-pagination {
    display: none !important;
  }
}

.jc-listing-card {
  background: var(--theme-color-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jc-listings-panel--rentals .jc-listing-card {
  border-color: transparent;
}

.jc-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.jc-listing-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.jc-listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jc-listing-card:hover .jc-listing-card__media img {
  transform: scale(1.06);
}

.jc-listing-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.jc-listing-card__badge--sale {
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

.jc-listing-card__badge--rent {
  background: var(--theme-color-accent);
  color: #ffffff;
}

.jc-listing-card__type {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.92);
  color: var(--headings-color);
  backdrop-filter: blur(4px);
}

.jc-listing-card__body {
  padding: 22px 22px 24px;
}

.jc-listing-card__price {
  font-family: var(--heading-font-family);
  font-size: 26px;
  font-weight: 700;
  color: var(--headings-color);
  line-height: 1.2;
  margin-bottom: 8px;
}

.jc-listing-card__price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.jc-listing-card__title {
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--headings-color);
  margin-bottom: 8px;
}

.jc-listing-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 16px;
}

.jc-listing-card__location i {
  color: var(--theme-color1);
  font-size: 13px;
}

.jc-listing-card__meta {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.jc-listing-card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--headings-color);
}

.jc-listing-card__meta li i {
  color: var(--text-color);
  font-size: 12px;
}

.jc-listing-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--headings-color);
  transition: color 0.2s ease, gap 0.2s ease;
}

.jc-listing-card__link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.jc-listing-card__link:hover {
  color: var(--theme-color1-text-color);
  background: var(--theme-color1);
  padding: 10px 16px;
  margin: -10px -16px -10px 0;
  border-radius: 8px;
}

.jc-listing-card__link:hover i {
  transform: translateX(4px);
}

.jc-listings-cta {
  padding: 0 0 clamp(20px, 2.5vw, 28px);
  background: var(--theme-color-light-gray);
}

.jc-listings-panel--rentals + .jc-listings-cta {
  background: var(--theme-color-white);
  padding-top: 20px;
}

.jc-listings-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  background: var(--theme-color2);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.jc-listings-cta__content h3 {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--theme-color-white);
  margin-bottom: 8px;
}

.jc-listings-cta__content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 480px;
}

.jc-listings-cta__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.jc-listings-cta__actions .theme-btn .btn-title {
  position: relative;
  z-index: 2;
}

.jc-listings-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color-white);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.jc-listings-cta__phone:hover,
.jc-listings-cta__phone:focus {
  color: var(--theme-color-white);
}

.jc-listings-cta__phone i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .jc-listings-cta {
    padding: 0 0 8px !important;
  }

  .jc-listings-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px 20px;
  }

  .jc-listings-cta__content p {
    max-width: none;
  }

  .jc-listings-cta__actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .jc-listings-cta {
    padding: 0 0 4px !important;
  }

  .jc-listings-cta__inner {
    padding: 20px 16px 18px;
  }
}

.jc-page-title-back {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(22px, 3.5vw, 36px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: var(--theme-color-white);
  color: var(--theme-color2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.jc-page-title-back i {
  font-size: 13px;
}

.jc-page-title-back:hover {
  color: var(--theme-color2);
  background: var(--theme-color1);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .jc-page-title-back {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.jc-contact-info {
  padding: 30px;
  background: var(--theme-color-white);
}

.jc-contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.jc-contact-info__card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: clamp(28px, 3.5vw, 36px) clamp(24px, 4vw, 48px);
  border-radius: 0;
  background: var(--theme-color2);
  color: var(--theme-color-white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.jc-contact-info__card + .jc-contact-info__card {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.jc-contact-info__card:hover {
  color: var(--theme-color-white);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  border-color: rgba(var(--theme-color-accent-rgb), 0.45);
}

.jc-contact-info__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color-accent);
  color: #ffffff;
  font-size: 22px;
}

.jc-contact-info__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.jc-contact-info__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.jc-contact-info__value {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 2.2vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}

.jc-contact-info__card--address {
  align-items: flex-start;
}

.jc-contact-info__card--address .jc-contact-info__value {
  font-size: clamp(15px, 1.6vw, 15px);
  line-height: 1.45;
}

.jc-contact-main {
  padding: 0 0 clamp(72px, 8vw, 100px);
  background: var(--theme-color-white);
  width: 100%;
}

.jc-contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 52vw, 620px);
  width: 100%;
  overflow: hidden;
}

.jc-contact-main__map,
.jc-contact-main__form {
  min-height: clamp(520px, 52vw, 620px);
  height: 100%;
}

.jc-contact-main__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.jc-contact-main__form {
  background: var(--theme-color2);
  display: flex;
  align-items: stretch;
}

.jc-contact-main__form-inner {
  width: 100%;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jc-contact-main__form-inner .sec-title.light .title {
  color: var(--theme-color-white);
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 10px;
}

.jc-contact-main__form-inner .sec-title.light .sub-title {
  color: #fd701a;
}

.jc-contact-main__form-inner .sec-title.light .text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  max-width: 100%;
}

.jc-contact-form .row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 0;
}

.jc-contact-form__field {
  margin-bottom: 16px;
}

.jc-contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.jc-contact-form .form-control {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--theme-color2);
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.jc-contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.jc-contact-form .form-control:focus {
  outline: none;
  border-color: var(--theme-color1);
  box-shadow: 0 0 0 3px rgba(var(--theme-color1-rgb), 0.25);
}

.jc-contact-form .col-12:last-child {
  display: flex;
  justify-content: flex-end;
}

.jc-contact-form .theme-btn {
  margin-top: 4px;
  border-color: rgba(255, 255, 255, 0.15);
}

.jc-contact-form .theme-btn .btn-title {
  position: relative;
  z-index: 2;
}

.jc-contact-main__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px clamp(20px, 3vw, 40px) 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-color);
}

.jc-contact-main__address i {
  color: #ffffff;
  background: var(--theme-color-accent);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .jc-contact-info {
    padding: 16px;
  }

  .jc-contact-info__grid {
    grid-template-columns: 1fr;
  }

  .jc-contact-info__card {
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
  }

  .jc-contact-info__card--address {
    align-items: flex-start;
  }

  .jc-contact-info__card--address .jc-contact-info__icon {
    margin-top: 2px;
  }

  .jc-contact-info__card + .jc-contact-info__card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .jc-contact-main__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .jc-contact-main__map {
    min-height: 320px;
    max-height: 360px;
  }

  .jc-contact-main__map iframe {
    min-height: 320px;
  }

  .jc-contact-main__form,
  .jc-contact-main__form-inner {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .jc-contact-info {
    padding: 12px;
  }

  .jc-contact-info__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 20px 16px;
  }

  .jc-contact-info__card--address {
    align-items: flex-start;
  }

  .jc-contact-info__icon {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .jc-contact-info__label {
    font-size: 12px;
  }

  .jc-contact-info__value {
    font-size: 17px;
  }

  .jc-contact-info__card--address .jc-contact-info__value {
    font-size: 15px;
    line-height: 1.5;
  }

  .jc-contact-main__form-inner {
    padding: 28px 20px 32px;
  }
}

/* ---- MLS Properties page ---- */
.jc-mls-banner.page-title {
  padding-top: calc(var(--jc-header-height) + 24px);
  padding-bottom: clamp(48px, 6vw, 72px);
  position: relative;
  min-height: auto;
  display: block;
  overflow: visible;
}

.jc-mls-banner.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 77, 102, 0.82) 0%, rgba(8, 45, 58, 0.92) 100%);
  z-index: 0;
}

.jc-mls-banner .auto-container {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.jc-mls-banner__head {
  margin-bottom: 28px;
}

.jc-mls-banner__head .title {
  color: var(--theme-color-white);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.jc-mls-banner__intro {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.jc-mls-search {
  max-width: 960px;
  margin: 0 auto;
}

.jc-mls-search__form {
  background: rgba(8, 35, 48, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(6px);
}

.jc-mls-search__row {
  display: grid;
  gap: 16px;
}

.jc-mls-search__row--main {
  grid-template-columns: minmax(160px, 1fr) 2fr;
  align-items: end;
  margin-bottom: 16px;
}

.jc-mls-search__row--filters {
  grid-template-columns: repeat(4, 1fr);
}

.jc-mls-search__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jc-mls-search__field--grow {
  min-width: 0;
}

.jc-mls-search__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.jc-mls-search__control {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--theme-color-white);
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.jc-mls-search__control:focus {
  outline: none;
  border-color: var(--theme-color1);
  background: rgba(255, 255, 255, 0.12);
}

.jc-mls-search__control option {
  color: var(--headings-color);
  background: var(--theme-color-white);
}

.jc-mls-search__control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.jc-mls-search__range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.jc-mls-search__range-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.jc-mls-search__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jc-mls-search__submit {
  height: 46px;
  min-width: 140px;
  padding: 0 36px;
  border: none;
  border-radius: 6px;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.jc-mls-search__submit:hover {
  background: #0396c4;
  transform: translateY(-1px);
}

.jc-mls-search__reset {
  padding: 0;
  border: none;
  background: none;
  color: var(--theme-color1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jc-mls-search__reset:hover {
  color: var(--theme-color-accent);
}

.jc-listings-page {
  padding: clamp(40px, 5vw, 30px) 0 clamp(48px, 8vw, 120px);
  background: var(--theme-color-light-gray);
}

.jc-listings-page__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.jc-listings-page__head .sec-title .text {
  max-width: 560px;
  margin: 0 auto;
}

.jc-listings-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jc-listings-page-grid .jc-listing-card__title {
  font-size: 17px;
}

@media (min-width: 992px) and (max-width: 1366px) {
  .jc-mls-banner.page-title {
    padding-bottom: 88px;
  }

  .jc-mls-banner .jc-page-title-back {
    bottom: 12px;
  }
}

@media (max-width: 991.98px) {
  .jc-mls-banner.page-title {
    padding-top: calc(var(--jc-header-height) + 30px);
    padding-bottom: 40px;
  }

  .jc-mls-banner .auto-container {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .jc-mls-banner .jc-page-title-back {
    display: none;
  }

  .jc-mls-banner__head {
    margin-bottom: 18px;
    text-align: center;
  }

  .jc-mls-banner.page-title .jc-mls-banner__head .title {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.25;
    margin-bottom: 8px;
    padding: 0;
  }

  .jc-mls-banner__intro {
    font-size: 12px;
    line-height: 1.55;
    padding: 0 8px;
    max-width: 320px;
  }

  .jc-mls-search {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .jc-mls-search__form {
    padding: 18px 16px 16px;
    border-radius: 14px;
  }

  .jc-mls-search__row {
    gap: 14px;
  }

  .jc-mls-search__row--main {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .jc-mls-search__row--filters {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .jc-mls-search__control {
    height: 48px;
    font-size: 16px;
    padding: 0 12px;
  }

  .jc-mls-search__range {
    gap: 8px;
  }

  .jc-mls-search__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .jc-mls-search__submit {
    order: -1;
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 15px;
  }

  .jc-mls-search__reset {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
  }

  .jc-listings-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .jc-listings-page {
    padding: 36px 0 100px;
  }
}

@media (max-width: 575.98px) {
  .jc-mls-banner.page-title {
    padding-top: calc(var(--jc-header-height) + 30px);
    padding-bottom: 28px;
  }

  .jc-mls-banner .auto-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .jc-mls-banner.page-title .jc-mls-banner__head .title {
    font-size: 17px;
    line-height: 1.3;
  }

  .jc-mls-banner__intro {
    font-size: 11px;
    line-height: 1.5;
    max-width: 280px;
  }

  .jc-mls-search__form {
    padding: 16px 14px 14px;
    border-radius: 12px;
  }

  .jc-mls-search__label {
    font-size: 10px;
  }

  .jc-mls-search__range {
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
  }

  .jc-mls-search__range-sep {
    font-size: 12px;
  }

  .jc-mls-search__submit {
    height: 48px;
  }

  .jc-listings-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---- Tourist Information Hub page ---- */
.jc-tourism-hub-banner.page-title {
  padding-top: calc(var(--jc-header-height) + 24px);
  padding-bottom: clamp(40px, 5vw, 56px);
  position: relative;
}

.jc-tourism-hub-banner.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 77, 102, 0.82) 0%, rgba(8, 45, 58, 0.92) 100%);
  z-index: 0;
}

.jc-tourism-hub-banner .auto-container {
  position: relative;
  z-index: 1;
}

.jc-tourism-hub-banner__head .sub-title {
  color: var(--theme-color-accent);
  margin-bottom: 10px;
}

.jc-tourism-hub-banner__head .title {
  color: var(--theme-color-white);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.jc-tourism-hub-banner__intro {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.jc-tourism-hub {
  width: 100%;
  padding: clamp(32px, 4vw, 48px) 0 clamp(48px, 6vw, 110px);
  background: linear-gradient(180deg, #eef4f6 0%, var(--theme-color-white) 100%);
}

.jc-tourism-hub__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 56px);
  box-sizing: border-box;
}

.jc-tourism-hub i[class*="fa-"] {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  line-height: 1;
}

.jc-tourism-hub__tabs-wrap {
  margin-bottom: 24px;
}

.jc-tourism-hub__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 4px 0 8px;
}

.jc-tourism-hub__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid rgba(10, 77, 102, 0.12);
  border-radius: 12px;
  background: var(--theme-color-white);
  color: var(--headings-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.jc-tourism-hub__tab i {
  width: 18px;
  text-align: center;
  font-size: 15px;
  color: var(--theme-color1);
  transition: color 0.25s ease;
}

.jc-tourism-hub__tab:hover {
  border-color: var(--theme-color1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(4, 167, 216, 0.14);
}

.jc-tourism-hub__tab.is-active {
  background: linear-gradient(135deg, var(--theme-color2) 0%, #0c5a75 100%);
  border-color: var(--theme-color2);
  color: var(--theme-color-white);
  box-shadow: 0 12px 28px rgba(10, 77, 102, 0.25);
}

.jc-tourism-hub__tab.is-active i {
  color: var(--theme-color-accent);
}

.jc-tourism-hub__panels {
  width: 100%;
}

.jc-tourism-hub__panel {
  display: none;
  width: 100%;
  background: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 16px 48px rgba(10, 77, 102, 0.08);
  animation: jcTourismHubFade 0.35s ease;
}

.jc-tourism-hub__panel.is-active {
  display: block;
}

@keyframes jcTourismHubFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jc-tourism-hub__panel-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(20px, 3vw, 28px);
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(4, 167, 216, 0.08) 0%, rgba(253, 112, 26, 0.06) 100%);
  border: 1px solid rgba(4, 167, 216, 0.12);
}

.jc-tourism-hub__panel-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #0396c4 100%);
  color: var(--theme-color-white);
  box-shadow: 0 8px 22px rgba(4, 167, 216, 0.3);
}

.jc-tourism-hub__panel-icon i {
  font-size: 22px;
  color: var(--theme-color-white);
}

.jc-tourism-hub__panel-title {
  font-family: var(--heading-font-family);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--headings-color);
  margin: 0 0 6px;
  line-height: 1.2;
}

.jc-tourism-hub__panel-count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color1);
}

.jc-tourism-hub__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.jc-tourism-hub__place {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px 16px 16px;
  background: var(--theme-color-light-gray);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--theme-color-accent);
  border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.jc-tourism-hub__place:hover {
  background: var(--theme-color-white);
  border-left-color: var(--theme-color1);
  border-color: rgba(4, 167, 216, 0.2);
  box-shadow: 0 10px 28px rgba(4, 167, 216, 0.12);
  transform: translateY(-2px);
}

.jc-tourism-hub__place-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color1);
  box-shadow: 0 4px 12px rgba(4, 167, 216, 0.15);
}

.jc-tourism-hub__place-icon i {
  font-size: 15px;
  color: var(--theme-color1);
}

.jc-tourism-hub__place-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--headings-color);
}

.jc-tourism-hub__cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  background: linear-gradient(135deg, var(--theme-color2) 0%, #0c5a75 100%);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(10, 77, 102, 0.2);
}

.jc-tourism-hub__cta p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1400px) {
  .jc-tourism-hub__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .jc-tourism-hub-banner.page-title {
    padding-bottom: 36px;
  }

  .jc-tourism-hub-banner__head .title {
    font-size: clamp(24px, 5.5vw, 32px);
  }

  .jc-tourism-hub-banner__intro {
    font-size: 14px;
  }

  .jc-tourism-hub {
    padding: 28px 0 100px;
  }

  .jc-tourism-hub__inner {
    padding: 0 16px;
  }

  .jc-tourism-hub__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color1) transparent;
  }

  .jc-tourism-hub__tabs::-webkit-scrollbar {
    height: 4px;
  }

  .jc-tourism-hub__tabs::-webkit-scrollbar-thumb {
    background: var(--theme-color1);
    border-radius: 4px;
  }

  .jc-tourism-hub__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 13px;
  }

  .jc-tourism-hub__panel {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .jc-tourism-hub__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .jc-tourism-hub__place {
    min-height: 58px;
    padding: 14px;
  }

  .jc-tourism-hub__place-name {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .jc-tourism-hub-banner.page-title {
    padding-top: calc(var(--jc-header-height) + 16px);
    padding-bottom: 28px;
  }

  .jc-tourism-hub__inner {
    padding: 0 12px;
  }

  .jc-tourism-hub__tab {
    padding: 11px 14px;
    font-size: 12px;
    gap: 8px;
    border-radius: 10px;
  }

  .jc-tourism-hub__tab i {
    font-size: 13px;
  }

  .jc-tourism-hub__panel {
    padding: 16px 14px;
  }

  .jc-tourism-hub__panel-head {
    gap: 14px;
    padding: 14px;
    margin-bottom: 16px;
  }

  .jc-tourism-hub__panel-icon {
    width: 48px;
    height: 48px;
  }

  .jc-tourism-hub__panel-icon i {
    font-size: 18px;
  }

  .jc-tourism-hub__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jc-tourism-hub__place {
    min-height: auto;
    padding: 14px 14px 14px 12px;
  }

  .jc-tourism-hub__place-icon {
    width: 32px;
    height: 32px;
  }

  .jc-tourism-hub__place-icon i {
    font-size: 13px;
  }

  .jc-tourism-hub__cta {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .jc-tourism-hub__cta p {
    font-size: 14px;
  }
}

/* ---- North Myrtle Beach weather gauge (NOAA / weather.gov) ---- */
.jc-weather-gauge {
  --wg-card-bg: rgba(255, 255, 255, 0.14);
  --wg-card-border: rgba(255, 255, 255, 0.28);
  --wg-text: #fff;
  --wg-text-muted: rgba(255, 255, 255, 0.78);
  --wg-accent: var(--theme-color-accent);
  --wg-teal: var(--theme-color1);
  width: min(100%, 280px);
}

.jc-weather-gauge__card {
  position: relative;
  padding: 18px 18px 14px;
  border-radius: 20px;
  background: var(--wg-card-bg);
  border: 1px solid var(--wg-card-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: var(--wg-text);
}

.jc-weather-gauge__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wg-text-muted);
}

.jc-weather-gauge__head i {
  color: var(--wg-accent);
  font-size: 13px;
}

.jc-weather-gauge__dial-wrap {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 6px;
}

.jc-weather-gauge__dial {
  display: block;
  width: 100%;
  height: auto;
}

.jc-weather-gauge__arc--bg {
  stroke: rgba(255, 255, 255, 0.2);
}

.jc-weather-gauge__arc--fill {
  stroke: var(--wg-accent);
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.jc-weather-gauge__dial-center {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.jc-weather-gauge__icon {
  font-size: 22px;
  color: #ffe08a;
  line-height: 1;
}

.jc-weather-gauge__temp {
  font-family: var(--title-font-family, "Outfit", sans-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.jc-weather-gauge__condition {
  margin: 0 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--wg-text-muted);
}

.jc-weather-gauge__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.jc-weather-gauge__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.2;
}

.jc-weather-gauge__stats i {
  color: var(--wg-teal);
  font-size: 13px;
}

.jc-weather-gauge__stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wg-text-muted);
}

.jc-weather-gauge__stats li span:last-child {
  font-weight: 700;
  font-size: 13px;
}

.jc-weather-gauge__hi-lo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 600;
}

.jc-weather-gauge__hi-lo strong {
  color: var(--wg-accent);
  font-weight: 700;
}

.jc-weather-gauge__hi-lo-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.jc-weather-gauge__credit {
  margin: 10px 0 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  opacity: 0.55;
}

.jc-weather-gauge__credit a {
  color: inherit;
  text-decoration: none;
}

.jc-weather-gauge__credit a:hover {
  color: var(--wg-accent);
  text-decoration: underline;
}

/* Banner overlay variant */
.jc-weather-gauge--banner {
  position: absolute;
  top: calc(var(--jc-header-height) + 24px);
  right: clamp(16px, 4vw, 48px);
  z-index: 3;
}

.banner-section .outer-box .banner-block .inner-block {
  position: relative;
}

/* Inline variant (tourist hub, etc.) */
.jc-weather-gauge--inline {
  --wg-card-bg: #fff;
  --wg-card-border: rgba(var(--theme-color1-rgb), 0.14);
  --wg-text: var(--theme-color-black);
  --wg-text-muted: rgba(var(--theme-color-black-rgb), 0.62);
  width: min(100%, 360px);
  margin: -36px auto 28px;
  position: relative;
  z-index: 2;
}

.jc-weather-gauge--inline .jc-weather-gauge__card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.jc-weather-gauge--inline .jc-weather-gauge__arc--bg {
  stroke: rgba(var(--theme-color1-rgb), 0.16);
}

.jc-weather-gauge--inline .jc-weather-gauge__stats li {
  background: rgba(var(--theme-color1-rgb), 0.06);
}

.jc-weather-gauge--inline .jc-weather-gauge__hi-lo {
  border-top-color: rgba(var(--theme-color1-rgb), 0.12);
}

.jc-weather-gauge--inline .jc-weather-gauge__hi-lo-divider {
  background: rgba(var(--theme-color1-rgb), 0.18);
}

@media (max-width: 991.98px) {
  .jc-weather-gauge--banner {
    position: static;
    width: min(100%, 320px);
    margin: 24px auto 0;
  }
}

@media (max-width: 575.98px) {
  .jc-weather-gauge {
    width: 100%;
  }

  .jc-weather-gauge__card {
    padding: 16px 14px 12px;
    border-radius: 16px;
  }

  .jc-weather-gauge__temp {
    font-size: 30px;
  }

  .jc-weather-gauge__stats {
    gap: 6px;
  }

  .jc-weather-gauge__stats li {
    padding: 6px 2px;
  }

  .jc-weather-gauge--inline {
    margin: -28px auto 22px;
    padding: 0 16px;
  }
}

/* ---- Compliance logos (footer) ---- */
.jc-compliance-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  width: 100%;
  max-width: 720px;
  margin: 4px auto 0;
  padding: 0 12px;
}

.jc-compliance-logos img {
  display: block;
  height: clamp(36px, 4.5vw, 44px);
  width: auto;
  max-width: min(160px, 40vw);
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.simple-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.simple-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--theme-color-white);
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.simple-footer-social a:hover {
  color: var(--theme-color-white);
  background: var(--theme-color-accent);
  border-color: var(--theme-color-accent);
  transform: translateY(-2px);
}

/* ---- eXp Sponsorship page ---- */
.jc-exp-banner .title-outer .sub-title {
  color: #fd701a;
  margin-bottom: 10px;
}

.jc-exp-banner__intro {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.jc-exp-intro {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--theme-color-white);
}

.jc-exp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.jc-exp-intro__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.jc-exp-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.jc-exp-intro__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(10, 77, 102, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.jc-exp-intro__badge i {
  color: var(--theme-color-accent);
}

.jc-exp-intro__text {
  margin: 0 0 22px;
  color: var(--text-color);
  line-height: 1.75;
  font-size: 16px;
}

.jc-exp-intro__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jc-exp-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--headings-color);
  line-height: 1.6;
}

.jc-exp-intro__list li i {
  color: var(--theme-color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.jc-exp-why {
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-light-gray) 100%);
}

.jc-exp-why__card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--theme-color2);
  border-radius: 22px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.14);
  color: var(--theme-color-white);
}

.jc-exp-why__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.jc-exp-why__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--theme-color-accent);
  color: #fff;
  font-size: 22px;
}

.jc-exp-why__head .sec-title .title,
.jc-exp-why__head .sec-title .sub-title {
  color: var(--theme-color-white);
}

.jc-exp-why__head .sec-title .sub-title {
  color: #fd701a;
}

.jc-exp-why__body p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: clamp(15px, 1.8vw, 17px);
}

.jc-exp-why__body p:last-child {
  margin-bottom: 0;
}

.jc-exp-why__cta {
  margin-top: 28px;
}

.jc-exp-benefits {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--theme-color-white);
}

.jc-exp-benefits__head {
  margin-bottom: clamp(24px, 3vw, 36px) !important;
}

.jc-exp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jc-exp-benefit-card {
  height: 100%;
  padding: 26px 22px;
  background: var(--theme-color-light-gray);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.jc-exp-benefit-card:hover {
  border-color: rgba(var(--theme-color-accent-rgb), 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.jc-exp-benefit-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--theme-color2);
  color: #fff;
  font-size: 18px;
}

.jc-exp-benefit-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 700;
  color: var(--headings-color);
}

.jc-exp-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-color);
}

.jc-exp-cta-band {
  padding: 0 0 clamp(90px, 7vw, 88px);
  background: var(--theme-color-white);
}

.jc-exp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  background: var(--theme-color2);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.jc-exp-cta-band__content .title {
  margin: 0 0 10px;
  font-family: var(--heading-font-family);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--theme-color-white);
}

.jc-exp-cta-band__content p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 15px;
}

.jc-exp-cta-band__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.jc-exp-cta-band__actions .theme-btn {
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  justify-content: flex-start;
}

.jc-exp-cta-band__actions .theme-btn .btn-title {
  position: relative;
  z-index: 2;
}

.jc-exp-cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-color-white);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.jc-exp-cta-band__phone:hover,
.jc-exp-cta-band__phone:focus {
  color: var(--theme-color-white);
}

.jc-exp-cta-band__phone i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color-accent);
  color: #fff;
  font-size: 14px;
}

.jc-exp-form-section {
  padding: 50px 0 120px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--theme-color1-rgb), 0.1) 0%, transparent 70%),
    linear-gradient(180deg, rgba(var(--theme-color1-rgb), 0.04) 0%, var(--theme-color-white) 100%);
  scroll-margin-top: calc(var(--jc-header-height, 90px) + 16px);
}

.jc-exp-form-section__container {
  max-width: 1180px;
}

.jc-exp-form-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 4.5vw, 52px) clamp(28px, 4vw, 56px);
  border-radius: 28px;
  background: var(--theme-color-white);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 24px 64px rgba(var(--theme-color1-rgb), 0.1);
  overflow: hidden;
}

.jc-exp-form-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--theme-color1) 0%, var(--theme-color-accent) 100%);
}

.jc-exp-form__head {
  margin-bottom: clamp(28px, 3.5vw, 40px) !important;
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(var(--theme-color1-rgb), 0.1);
}

.jc-exp-form__head .sub-title {
  color: var(--theme-color-accent);
}

.jc-exp-form__head .title {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.jc-exp-form__head .text {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.jc-exp-form__group {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 18px;
  background: rgba(var(--theme-color1-rgb), 0.03);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.08);
}

.jc-exp-form__group:last-of-type {
  margin-bottom: 0;
}

.jc-exp-form__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--theme-color1-rgb), 0.1);
  font-family: var(--heading-font-family);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: var(--headings-color);
}

.jc-exp-form__group-title i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color-accent) 100%);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.jc-exp-form .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.jc-exp-form__field {
  margin-bottom: 0;
}

.jc-exp-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--headings-color);
}

.jc-exp-form__label span[aria-hidden="true"] {
  color: var(--theme-color-accent);
}

.jc-exp-form__optional {
  font-weight: 500;
  font-size: 12px;
  color: rgba(var(--theme-color-black-rgb), 0.45);
}

.jc-exp-form .form-control {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  border: 1.5px solid rgba(var(--theme-color1-rgb), 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--theme-color2);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.jc-exp-form .form-control::placeholder {
  color: rgba(var(--theme-color-black-rgb), 0.38);
}

.jc-exp-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.jc-exp-form select.form-control {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a4d66' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  cursor: pointer;
}

.jc-exp-form .form-control:hover {
  border-color: rgba(var(--theme-color1-rgb), 0.35);
}

.jc-exp-form .form-control:focus {
  outline: none;
  border-color: var(--theme-color1);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--theme-color1-rgb), 0.14);
}

.jc-exp-form__radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jc-exp-form__radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1.5px solid rgba(var(--theme-color1-rgb), 0.16);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--theme-color2);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.jc-exp-form__radio input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--theme-color1);
  flex-shrink: 0;
}

.jc-exp-form__radio:has(input:checked) {
  border-color: var(--theme-color1);
  background: rgba(var(--theme-color1-rgb), 0.08);
  box-shadow: 0 0 0 4px rgba(var(--theme-color1-rgb), 0.1);
}

.jc-exp-form__radio:active {
  transform: scale(0.98);
}

.jc-exp-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jc-exp-form__submit {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vw, 36px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(var(--theme-color1-rgb), 0.1);
}

.jc-exp-form__submit .theme-btn {
  min-width: 220px;
  justify-content: flex-start;
}

.jc-exp-form__submit .theme-btn .btn-title {
  position: relative;
  z-index: 2;
}

.jc-exp-form__result {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.jc-exp-form__result.is-success {
  background: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.22);
  color: #146c43;
}

.jc-exp-form__result.is-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #b02a37;
}

@media (max-width: 1199.98px) {
  .jc-exp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .jc-exp-intro__grid {
    grid-template-columns: 1fr;
  }

  .jc-exp-intro__media img {
    min-height: 260px;
  }

  .jc-exp-why__head {
    flex-direction: column;
    gap: 14px;
  }

  .jc-exp-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .jc-exp-cta-band__actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .jc-exp-cta-band__actions .theme-btn {
    width: auto;
    max-width: 100%;
    align-self: center;
    justify-content: flex-start;
  }

  .jc-exp-cta-band__phone {
    justify-content: center;
  }

  .jc-exp-form-section {
    padding: 36px 0 48px;
  }

  .jc-exp-form-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .jc-exp-form__group {
    padding: 18px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .jc-exp-form__group-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .jc-exp-form__group-title i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .jc-exp-form .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 16px;
  }

  .jc-exp-form .form-control {
    min-height: 50px;
    font-size: 16px;
    border-radius: 12px;
  }

  .jc-exp-form textarea.form-control {
    min-height: 110px;
  }
}

@media (max-width: 575.98px) {
  .jc-exp-intro {
    padding: 36px 0;
  }

  .jc-exp-intro__badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    font-size: 13px;
  }

  .jc-exp-why__card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .jc-exp-benefits__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jc-exp-benefit-card {
    padding: 22px 18px;
  }

  .jc-exp-form-section {
    padding: 28px 0 40px;
  }

  .jc-exp-form-section__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .jc-exp-form-card {
    padding: 22px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }

  .jc-exp-form__head {
    padding-bottom: 18px;
    margin-bottom: 22px !important;
  }

  .jc-exp-form__head .title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .jc-exp-form__head .text {
    font-size: 14px;
    line-height: 1.65;
  }

  .jc-exp-form__group {
    padding: 16px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .jc-exp-form__group-title {
    gap: 8px;
    font-size: 15px;
    margin-bottom: 14px;
  }

  .jc-exp-form__group-title i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 12px;
  }

  .jc-exp-form .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 14px;
  }

  .jc-exp-form__label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .jc-exp-form .form-control {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
  }

  .jc-exp-form textarea.form-control {
    min-height: 100px;
  }

  .jc-exp-form__radios {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .jc-exp-form__radio {
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 10px;
  }

  .jc-exp-form__submit {
    margin-top: 20px;
    padding-top: 20px;
  }

  .jc-exp-form__submit .theme-btn {
    width: auto;
    max-width: 100%;
    min-width: 0;
    align-self: center;
    justify-content: flex-start;
  }

  .jc-exp-cta-band__inner {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .jc-compliance-logos {
    gap: 10px;
  }

  .jc-compliance-logos img {
    max-width: 46vw;
    height: 30px;
    padding: 3px 6px;
  }
}

/* ---- Monthly Events page ---- */
.jc-tourism-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.jc-events-page {
  padding: clamp(32px, 4vw, 56px) 0 clamp(56px, 7vw, 110px);
  background: linear-gradient(180deg, #eef4f6 0%, var(--theme-color-white) 42%);
  overflow-x: clip;
}

.jc-events-banner.page-title {
  padding-bottom: clamp(32px, 5vw, 48px);
}

.jc-events-banner .jc-tourism-hub-banner__head .title {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  padding: 0 12px;
}

.jc-events-page__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.jc-events-page i[class*="fa-"] {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  line-height: 1;
}

.jc-events-toolbar {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.jc-events-toolbar__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--theme-color-black-rgb), 0.55);
}

.jc-events-toolbar__label i {
  color: var(--theme-color-accent);
}

.jc-events-months-wrap {
  position: relative;
  max-width: 100%;
  padding: 6px 32px;
  border-radius: 999px;
  background: rgba(var(--theme-color1-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.12);
}

.jc-events-months-fade {
  display: block;
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 26px;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.jc-events-months-fade--left {
  left: 6px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #e8f0f3 70%, transparent);
}

.jc-events-months-fade--right {
  right: 6px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(270deg, #e8f0f3 70%, transparent);
}

.jc-events-months-wrap.is-at-start .jc-events-months-fade--left,
.jc-events-months-wrap.is-at-end .jc-events-months-fade--right {
  opacity: 0;
  visibility: hidden;
}

.jc-events-months-slider {
  overflow: hidden;
  border-radius: 999px;
  padding: 2px 0;
}

.jc-events-months-slider .swiper-wrapper {
  align-items: center;
}

.jc-events-months-slider .swiper-slide {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .jc-events-months-slider .swiper-slide {
    width: auto;
  }
}

@media (min-width: 992px) {
  .jc-events-months-wrap {
    padding: 6px 10px;
  }

  .jc-events-months-fade {
    display: none;
  }

  .jc-events-months-slider .swiper-slide {
    display: flex;
    justify-content: center;
  }
}

.jc-events-month-tab {
  flex: 0 0 auto;
  min-width: 52px;
  min-height: 44px;
  padding: 10px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--theme-color-black);
  font-family: var(--title-font-family, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jc-events-month-tab:hover {
  background: rgba(var(--theme-color1-rgb), 0.12);
}

.jc-events-month-tab.is-active {
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color-accent) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(var(--theme-color1-rgb), 0.28);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .jc-events-month-tab {
    min-width: 0;
    width: 100%;
    max-width: 72px;
    padding: 10px 6px;
  }
}

.jc-events-month__head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.jc-events-month__head h2 {
  font-family: var(--heading-font-family);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 8px;
}

.jc-events-month__head p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-color);
}

.jc-events-grid {
  display: grid;
  gap: 18px;
}

.jc-events-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 22px 22px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jc-events-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--theme-color-accent-rgb), 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.jc-events-card--featured {
  border-color: rgba(var(--theme-color-accent-rgb), 0.35);
  background: linear-gradient(135deg, #fff 0%, rgba(var(--theme-color-accent-rgb), 0.06) 100%);
}

.jc-events-card--featured .jc-events-card__date {
  background: linear-gradient(160deg, var(--theme-color-accent) 0%, #e8913a 100%);
}

.jc-events-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--theme-color1) 0%, #0389b0 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(var(--theme-color1-rgb), 0.25);
}

.jc-events-card__day {
  font-family: var(--title-font-family, "Outfit", sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.jc-events-card__weekday {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.jc-events-card__body h3 {
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 700;
  color: var(--headings-color);
  margin: 8px 0 8px;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.jc-events-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-color);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.jc-events-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px !important;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(var(--theme-color-black-rgb), 0.62) !important;
}

.jc-events-card__meta i {
  color: var(--theme-color-accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.jc-events-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jc-events-card__tag--music {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}

.jc-events-card__tag--food {
  background: rgba(var(--theme-color-accent-rgb), 0.12);
  color: #c45f12;
}

.jc-events-card__tag--family {
  background: rgba(var(--theme-color1-rgb), 0.12);
  color: #036d8d;
}

.jc-events-card__tag--holiday {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.jc-events-card__tag--sports {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}

.jc-events-card__tag--arts {
  background: rgba(219, 39, 119, 0.1);
  color: #be185d;
}

.jc-events-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(22px, 4vw, 30px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--theme-color1-rgb), 0.1) 0%, rgba(var(--theme-color-accent-rgb), 0.08) 100%);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
}

.jc-events-cta__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--theme-color1);
  color: #fff;
  font-size: 22px;
}

.jc-events-cta h3 {
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--headings-color);
}

.jc-events-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-color);
}

.jc-events-cta p a {
  color: var(--theme-color1);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jc-events-cta .theme-btn {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .jc-events-page {
    padding: 28px 0 80px;
  }

  .jc-events-page__inner {
    padding: 0 16px;
  }

  .jc-events-banner.page-title {
    padding-bottom: 32px;
  }

  .jc-events-banner .jc-tourism-hub-banner__head .title {
    font-size: clamp(24px, 5.5vw, 32px);
  }

  .jc-events-months-fade {
    display: block;
  }

  .jc-events-month-tab {
    min-width: 48px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .jc-events-month__head {
    margin-bottom: 22px;
  }

  .jc-events-month__head p {
    font-size: 14px;
    padding: 0 4px;
  }

  .jc-events-card {
    gap: 16px;
    padding: 18px 16px;
  }

  .jc-events-cta {
    gap: 16px;
    padding: 20px 18px;
  }

  .jc-events-cta .theme-btn {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .jc-events-banner .jc-page-title-back {
    left: 12px;
    bottom: 12px;
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }

  .jc-events-card {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .jc-events-card__date {
    min-height: 76px;
    border-radius: 12px;
  }

  .jc-events-card__day {
    font-size: 28px;
  }

  .jc-events-card__body h3 {
    font-size: 17px;
    margin-top: 6px;
  }

  .jc-events-card__body p {
    font-size: 13px;
  }

  .jc-events-card__meta {
    font-size: 12px !important;
  }

  .banner-section .outer-box .banner-block .inner-block .banner-title {
    font-size: clamp(26px, 5.5vw, 64px);

  }
}

@media (max-width: 575.98px) {
  .jc-events-page {
    padding: 22px 0 64px;
  }

  .jc-events-page__inner {
    padding: 0 12px;
  }

  .jc-events-banner.page-title {
    padding-top: calc(var(--jc-header-height) + 14px);
    padding-bottom: 56px;
  }

  .jc-events-banner .jc-tourism-hub-banner__head .title {
    font-size: clamp(22px, 7vw, 28px);
    padding: 0 8px;
  }

  .jc-events-toolbar {
    margin-bottom: 20px;
  }

  .jc-events-toolbar__label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .jc-events-months-wrap {
    padding: 5px 28px;
    border-radius: 16px;
  }

  .jc-events-months-fade {
    width: 23px;
  }

  .jc-events-months-fade--left {
    left: 5px;
    border-radius: 12px 0 0 12px;
  }

  .jc-events-months-fade--right {
    right: 5px;
    border-radius: 0 12px 12px 0;
  }

  .jc-events-months-slider {
    border-radius: 12px;
  }

  .jc-events-month-tab {
    min-width: 44px;
    min-height: 42px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .jc-events-month-tab.is-active {
    box-shadow: 0 6px 16px rgba(var(--theme-color1-rgb), 0.22);
  }

  .jc-events-month__head h2 {
    font-size: 24px;
  }

  .jc-events-month__head p {
    font-size: 13px;
    line-height: 1.55;
  }

  .jc-events-grid {
    gap: 14px;
  }

  .jc-events-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .jc-events-card__date {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: auto;
    padding: 10px 14px;
    border-radius: 12px;
  }

  .jc-events-card__day {
    font-size: 26px;
  }

  .jc-events-card__weekday {
    margin-top: 0;
    font-size: 11px;
  }

  .jc-events-card__body h3 {
    font-size: 16px;
    margin: 4px 0 6px;
  }

  .jc-events-card__tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .jc-events-card:hover {
    transform: none;
  }

  .jc-events-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 18px 16px;
    border-radius: 16px;
    gap: 14px;
  }

  .jc-events-cta__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .jc-events-cta h3 {
    font-size: 18px;
  }

  .jc-events-cta p {
    font-size: 13px;
  }

  .jc-events-cta .theme-btn {
    width: auto;
    max-width: 100%;
    align-self: center;
    justify-content: flex-start;
  }

  .jc-events-cta .theme-btn.btn-style-two .btn-title {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 399.98px) {
  .jc-events-month-tab {
    min-width: 40px;
    padding: 8px 9px;
    font-size: 11px;
  }

  .jc-events-card__body h3 {
    font-size: 15px;
  }
}
