:root {
  --page: #f3f8fc;
  --white: #ffffff;
  --text: #0f1b33;
  --muted: #68758d;
  --muted-2: #8a98ad;
  --line: #dce7f2;
  --blue: #1f70c9;
  --blue-2: #0f5fb0;
  --green: #37ad72;
  --green-2: #14875b;
  --navy: #082541;
  --navy-2: #0d3356;
  --danger: #e75f5d;
  --gold: #f6b83f;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-card: 0 18px 48px rgba(22, 58, 92, 0.12);
  --shadow-soft: 0 10px 24px rgba(17, 52, 84, 0.1);
  --container: 1400px;
  --side-pad: clamp(18px, 4vw, 48px);
  --rb-font-family: "Manrope", Inter, ui-sans-serif, system-ui,
        -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
button,
input,
select,
textarea,
optgroup {
    font-family: var(--rb-font-family);
}

/* Elementor and WooCommerce */
.elementor,
.elementor-widget,
.woocommerce,
.woocommerce-page,
.woocommerce form,
.woocommerce button,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
    font-family: var(--rb-font-family);
}

/* Placeholder text */
input::placeholder,
textarea::placeholder {
    font-family: var(--rb-font-family);
    opacity: 1;
}

/* Browser compatibility */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-family: var(--rb-font-family);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-family: var(--rb-font-family);
}

/* JetEngine / JetSmartFilters / JetFormBuilder */
.jet-form-builder,
.jet-form-builder input,
.jet-form-builder select,
.jet-form-builder textarea,
.jet-smart-filters,
.jet-smart-filters input,
.jet-smart-filters select,
.jet-listing-grid {
    font-family: var(--rb-font-family);
}

/* Pseudo-elements sometimes used for labels/icons */
button::before,
button::after,
label::before,
label::after {
    font-family: inherit;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  border: 0;
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  position: relative;
  padding-block: 32px;
}

section[id] {
  scroll-margin-top: 92px;
}

.section--white {
  background: #fff;
}

.section--tight {
  background: #fff;
  padding-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.top-strip {
  background: #f9fcff;
  border-bottom: 1px solid rgba(11, 43, 76, 0.08);
  color: #4f6078;
  font-size: clamp(7.5px, 0.72vw, 12px);
  font-weight: 700;
}

.top-strip__inner {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 62px);
  white-space: nowrap;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.55vw, 7px);
}

.top-strip i {
  width: clamp(9px, 0.95vw, 14px);
  height: clamp(9px, 0.95vw, 14px);
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex: 0 0 auto;
}

.top-strip i::after {
  content: "";
  position: absolute;
  width: 43%;
  height: 22%;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
  left: 29%;
  top: 29%;
}

.top-strip__right {
  margin-left: auto;
  color: #69809b;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 52, 86, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(7px, 0.85vw, 10px);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.brand img {
  height: clamp(29px, 3.4vw, 40px);
}

.brand strong {
  color: var(--green);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 40px);
  color: #2b3b52;
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 800;
}

.main-nav a {
  padding: 12px 0;
  transition: color 0.18s ease;
}

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

.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
}

.header-actions a[aria-current="page"] {
  box-shadow: 0 0 0 3px rgba(55, 124, 205, 0.13);
}

.btn {
  min-height: clamp(34px, 2.9vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.7vw, 8px);
  border-radius: 9px;
  padding: 0 clamp(9px, 1.15vw, 20px);
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn--blue {
  background: linear-gradient(180deg, #2d82dd, #176ac7);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 112, 201, 0.24);
}

.btn--green {
  background: linear-gradient(180deg, #49bd80, #24a667);
  color: #fff;
  box-shadow: 0 10px 22px rgba(48, 171, 108, 0.24);
}

.btn--outline-green {
  color: var(--green-2);
  border: 1px solid rgba(55, 173, 114, 0.28);
  background: rgba(55, 173, 114, 0.08);
}

.btn--ghost {
  color: #28405e;
  background: #fff;
  border: 1px solid var(--line);
}

.btn--white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(11, 43, 76, 0.16);
}

.btn--full {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  background: #eef6fd;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
}

.hero {
  min-height: clamp(365px, 49vw, 660px);
  padding: 0;
  overflow: visible;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  filter: saturate(1.08) contrast(1.08) brightness(0.82);
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.66), rgba(3, 18, 31, 0.28) 47%, rgba(3, 16, 30, 0.45)),
    linear-gradient(0deg, rgba(3, 16, 30, 0.48), rgba(3, 16, 30, 0.02) 44%),;
}

.hero__inner {
  min-height: clamp(365px, 49vw, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  position: relative;
  width: min(100%, clamp(470px, 62.5vw, 940px));
  margin-inline: auto;
  margin-top: clamp(32px, 5vw, 70px);
  color: #fff;
  text-align: center;
}

.hero h1 {
  margin: 0 0 clamp(8px, 1.2vw, 18px);
  font-size: clamp(34px, 4.9vw, 66px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #54c986;
}

.hero p {
  margin: 0 0 clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 700;
}

.search-card {
  width: 700px;
  min-height: clamp(54px, 5.3vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  padding: clamp(6px, 0.75vw, 9px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  margin: 0px auto;
}
.search-card label {
  display: grid;
  gap: 0;
  padding: 0 clamp(14px, 1.7vw, 24px);
  color: #596981;
  border-right: 1px solid #e2ebf4;
  text-align: left;
  width: 100%;
}

.search-card label span {
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 800;
}

.search-card input {
  min-width: 0;
  width: 100%;
  color: #1b2a42;
  background: transparent;
  outline: none;
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 800;
  text-overflow: ellipsis;
  padding: 7px 0;
}

.search-card .btn {
  height: clamp(42px, 4vw, 56px);
  padding-inline: clamp(16px, 1.85vw, 26px);
  width: 180px;
}

.quick-filters,
.hero-promise {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(7px, 0.85vw, 10px);
  margin-top: clamp(10px, 1.45vw, 18px);
}

.quick-filters span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 800;
}

.quick-filters button {
  min-height: clamp(24px, 2.25vw, 32px);
  padding: 0 clamp(12px, 1.25vw, 18px);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 800;
}

.quick-filters button.is-active {
  color: var(--navy);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-promise {
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(14px, 2vw, 32px);
  padding: clamp(9px, 1vw, 13px) clamp(14px, 1.45vw, 20px);
  color: #fff;
  border-radius: 14px;
  background: rgba(25, 56, 56, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-promise span {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.7vw, 8px);
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 800;
}

.hero-promise b {
  width: clamp(13px, 1.2vw, 17px);
  height: clamp(13px, 1.2vw, 17px);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.35);
  background: var(--green);
}

.hero__cta {
  display: flex;
  width: max-content;
  margin: clamp(8px, 1vw, 14px) auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading > div {
  min-width: 0;
  max-width: 100%;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-heading h2::before {
  content: "";
  width: 25px;
  height: 18px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 70% 30%, #fff 0 3px, transparent 4px),
    linear-gradient(135deg, var(--blue), #5ba9f5);
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.lake-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lake-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.lake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(22, 58, 92, 0.18);
}

.lake-card.is-selected {
  outline: 3px solid rgba(55, 173, 114, 0.22);
  outline-offset: 4px;
}

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

.lake-card__image {
  position: relative;
  min-height: 178px;
  background-size: cover;
  background-position: center;
}

.lake-card__image::after,
.category-card::after,
.mini-card::after,
.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 60, 41, 0.12), rgba(14, 60, 41, 0.02));
  pointer-events: none;
}

.lake-card__image--one {
  background-image: url("assets/lake-panorama.jpg");
}

.lake-card__image--two {
  background-image: url("assets/lake-overview.jpg");
}

.lake-card__image--three {
  background-image: url("assets/lake-shore.jpg");
}

.lake-card__image--four {
  background-image: url("assets/lake-pier.jpg");
}

.badge {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
}

.badge--green {
  color: var(--green-2);
  background: #dff7e9;
}

.badge--red {
  color: #c94747;
  background: #fff0ef;
}

.heart {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease;
}

.heart.is-active {
  color: #fff;
  background: rgba(231, 95, 93, 0.85);
}

.lake-card__body {
  padding: 20px 15px 15px;
}

.lake-card__title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.lake-card h3,
.category-card h3,
.mini-card h3,
.info-card h3,
.report-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.lake-card__title-row span {
  min-width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-2);
  background: #ebfbf2;
  font-size: 11px;
  font-weight: 800;
}

.lake-card p,
.category-card p,
.mini-card p,
.info-card p,
.report-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #31445f;
  font-size: 12px;
  font-weight: 800;
}

.rating b {
  color: var(--gold);
}

.rating span {
  margin-left: auto;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.chips span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #61718a;
  background: #f5f8fc;
  font-size: 11px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 20px 0 16px;
}

.price-row strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 0 0 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.category-card h3,
.category-card p {
  position: relative;
  z-index: 2;
  padding-inline: 18px;
}

.category-card h3 {
  margin-top: 18px;
}

.category-card .badge {
  left: 14px;
  top: 12px;
}

.section--value {
  background: #fff;
  padding-block: 24px 30px;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(390px, 1.38fr);
  gap: clamp(18px, 3.2vw, 42px);
  align-items: center;
  min-height: clamp(214px, 21vw, 268px);
  padding: clamp(27px, 3.05vw, 42px) clamp(34px, 4.1vw, 56px);
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 13% 72%, rgba(25, 130, 225, 0.32), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(81, 162, 230, 0.16), transparent 28%),
    linear-gradient(135deg, #0d3e6f 0%, #07579b 52%, #063765 100%);
  box-shadow: 0 20px 46px rgba(5, 38, 70, 0.2);
}

.value-panel h2 {
  max-width: 285px;
  margin: 0 0 clamp(13px, 1.45vw, 18px);
  font-size: clamp(24px, 2.65vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.value-panel ul,
.owner-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.value-panel ul {
  gap: clamp(7px, 0.85vw, 11px);
}

.value-panel li,
.owner-panel li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 800;
}

.value-panel li {
  gap: 9px;
  font-size: clamp(10px, 0.86vw, 13px);
  line-height: 1.28;
  font-size: 14px;
}

.value-panel li::before {
  width: 14px;
  height: 14px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.23);
}

.value-panel li::before,
.owner-panel li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.25);
  flex: 0 0 auto;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(14px, 1.55vw, 21px);
}

.store-badge {
  min-width: clamp(91px, 8.4vw, 114px);
  min-height: clamp(30px, 2.8vw, 38px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #fff;
  background: #03070a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.store-badge i {
  width: clamp(16px, 1.5vw, 21px);
  height: clamp(16px, 1.5vw, 21px);
  flex: 0 0 auto;
}

.store-badge--play i {
  clip-path: polygon(10% 0, 100% 50%, 10% 100%);
  background: linear-gradient(135deg, #31d172 0 34%, #f4d14f 35% 61%, #45a2ff 62%);
}

.store-badge--apple i {
  position: relative;
  border-radius: 48% 48% 54% 54%;
  background: #fff;
}

.store-badge--apple i::before {
  content: "";
  position: absolute;
  right: 2px;
  top: -5px;
  width: 8px;
  height: 6px;
  border-radius: 8px 0;
  background: #fff;
  transform: rotate(-24deg);
}

.store-badge span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(5px, 0.48vw, 7px);
  font-weight: 800;
  letter-spacing: 0;
}

.store-badge strong {
  color: #fff;
  font-size: clamp(9px, 0.84vw, 13px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(11px, 1.35vw, 18px);
  align-items: end;
  justify-items: center;
}

.phone-card {
  width: min(100%, clamp(72px, 7.1vw, 94px));
  text-align: center;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 800;
}

.phone-card__screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.48;
  min-height: 148px;
  max-height: 196px;
  border: clamp(4px, 0.55vw, 7px) solid #071a2c;
  border-radius: clamp(17px, 1.75vw, 26px);
  background: #f9fbfe;
  box-shadow: 0 13px 22px rgba(0, 0, 0, 0.26);
}

.phone-card__screen::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 38px;
  height: 8px;
  border-radius: 99px;
  background: #071a2c;
  transform: translateX(-50%);
  z-index: 4;
}

.phone-card h4 {
  margin: 30px 12px 12px;
  color: var(--navy);
  font-size: clamp(10px, 0.92vw, 13px);
  text-align: left;
}

.phone-card p {
  margin: 0 11px 7px;
  padding: 7px 8px;
  color: #5a6980;
  border-radius: 8px;
  background: #eff5fb;
  font-size: clamp(7px, 0.62vw, 9px);
  text-align: left;
}

.mini-map {
  position: absolute;
  inset: 25px 9px 10px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 42% 48%, rgba(31, 112, 201, 0.82) 0 28%, transparent 29%),
    radial-gradient(circle at 55% 50%, rgba(55, 173, 114, 0.72) 0 48%, transparent 49%),
    url("assets/lake-panorama.jpg") center / cover;
}

.mini-map b {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
}

.mini-map b:nth-child(1) {
  left: 23%;
  top: 28%;
}

.mini-map b:nth-child(2) {
  right: 22%;
  top: 38%;
}

.mini-map b:nth-child(3) {
  left: 36%;
  bottom: 28%;
}

.mini-map b:nth-child(4) {
  right: 32%;
  bottom: 23%;
  border-color: var(--green);
}

.mini-map b:nth-child(5) {
  left: 52%;
  top: 52%;
}

.phone-card--photo .phone-card__screen,
.phone-card--catch .phone-card__screen {
  background: url("assets/lake-pier.jpg") center / cover;
}

.phone-card--catch .phone-card__screen {
  background-image: url("assets/stand-view.jpg");
}

.phone-card > span {
  display: block;
  margin-top: 11px;
  color: #dcecff;
  line-height: 1.15;
}

.mini-carousel {
  position: relative;
  --carousel-gap: 20px;
}

.mini-carousel__viewport {
  overflow: hidden;
  padding: 0 0 8px;
  scroll-behavior: smooth;
}

.mini-carousel__viewport:focus-visible {
  outline: 3px solid rgba(31, 112, 201, 0.28);
  outline-offset: 8px;
  border-radius: 18px;
}

.mini-card-row {
  display: flex;
  gap: var(--carousel-gap);
  align-items: stretch;
  will-change: scroll-position;
}

.mini-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - (var(--carousel-gap) * 4)) / 5);
  min-width: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}

.mini-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  border-radius: 10px !important;
}

.mini-card h3,
.mini-card p,
.mini-card span {
  display: block;
  padding-inline: 15px;
}

.mini-card h3 {
  margin-top: 14px;
  font-size: 18px;
}

.mini-card p {
  margin-top: 5px;
  font-size: 13px;
  color: #808080;
}

.mini-card span {
  margin: 7px 0 15px;
  color: #52657e;
  font-size: 12px;
  font-weight: 800;
}

.carousel-control {
  position: absolute;
  z-index: 4;
  top: 45%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(18, 50, 84, 0.14);
  font-size: 34px;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  transform: translateY(-50%);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: #f7fbff;
  box-shadow: 0 14px 30px rgba(18, 50, 84, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control--left {
  left: -24px;
}

.carousel-control--right {
  right: -24px;
}

@media (max-width: 980px) {
  .mini-carousel {
    --carousel-gap: 16px;
  }

  .mini-card {
    flex-basis: calc((100% - (var(--carousel-gap) * 2)) / 3);
  }
}

@media (max-width: 700px) {
  .mini-carousel {
    --carousel-gap: 14px;
  }

  .mini-card {
    flex-basis: 84%;
  }
}

.section--pilot {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(55, 173, 114, 0.08), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(31, 112, 201, 0.1), transparent 30%),
    #f7fbff;
  padding-block: clamp(34px, 5vw, 72px);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(350px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.pilot-media-card,
.booking-panel,
.tour-preview,
.rules-card,
.owner-simple-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.pilot-media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #102b49;
}

.pilot-media-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 800;
}

.pilot-media-card__top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pilot-media-card__top span:last-child {
  color: #c9f5d9;
  background: rgba(55, 173, 114, 0.18);
}

.drone-photo {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  margin: 0 18px 18px;
  overflow: hidden;
  border-radius: 18px;
  background: #102d4b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.drone-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drone-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 54%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(4, 19, 35, 0.04), rgba(4, 19, 35, 0.36));
}

.stand-pin {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(4, 18, 34, 0.26);
  font-size: 13px;
  font-weight: 800;
  transform: translate(-50%, -50%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    outline-color 0.2s ease;
}

.stand-pin:hover,
.stand-pin.is-active {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 24px rgba(4, 18, 34, 0.34);
}

.stand-pin--green {
  background: var(--green);
}

.stand-pin--blue {
  background: var(--blue);
}

.stand-pin--red {
  background: var(--danger);
}

.stand-pin--40 {
  left: 66%;
  top: 48%;
  width: 54px;
  height: 54px;
  font-size: 17px;
  outline: 8px solid rgba(55, 173, 114, 0.26);
}

.stand-pin--31 {
  left: 36%;
  top: 29%;
}

.stand-pin--35 {
  left: 49%;
  top: 26%;
}

.stand-pin--44 {
  left: 56%;
  top: 36%;
}

.stand-pin--47 {
  left: 71%;
  top: 42%;
}

.stand-pin--48 {
  left: 73%;
  top: 55%;
}

.drone-callout {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: min(320px, calc(100% - 48px));
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(4, 18, 34, 0.22);
}

.drone-callout span,
.booking-panel__status {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drone-callout strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 800;
}

.drone-callout p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0 18px 18px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.map-legend .green {
  background: var(--green);
}

.map-legend .red {
  background: var(--danger);
}

.map-legend .blue {
  background: var(--blue);
}

.map-legend .grey {
  background: #8a98ad;
}

.booking-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.booking-panel h3 {
  margin: 6px 0 6px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.booking-panel > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.feature-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: #52657e;
  background: #f6f9fc;
  border: 1px solid #e5eef7;
  font-size: 12px;
  font-weight: 800;
}

.feature-strip span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex: 0 0 auto;
}

.booking-block {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.booking-block strong {
  color: #4a5a71;
  font-size: 13px;
  font-weight: 800;
}

.date-grid,
.shift-grid {
  display: grid;
  gap: 9px;
}

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

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

.date-grid button,
.shift-grid button {
  min-height: 60px;
  border-radius: 12px;
  color: #52657e;
  background: #f8fbff;
  border: 1px solid #dfe9f4;
  font-weight: 800;
}

.date-grid button span,
.shift-grid button span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.date-grid .is-selected,
.shift-grid .is-selected {
  color: var(--blue);
  background: #eef6ff;
  border-color: rgba(31, 112, 201, 0.65);
}

.price-summary {
  display: grid;
  gap: 3px;
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f3f9ff;
  border: 1px solid #ddebf8;
}

.price-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-summary strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.price-summary small {
  color: var(--muted);
  font-weight: 800;
}

.booking-panel .btn:disabled {
  cursor: not-allowed;
  color: #fff;
  background: #98a6b8;
  box-shadow: none;
  transform: none;
}

.lake-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 22px;
  margin-top: 24px;
}

.tour-preview,
.rules-card,
.owner-simple-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tour-preview__image {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  cursor: grab;
  background:
    linear-gradient(180deg, rgba(11, 43, 76, 0.02), rgba(11, 43, 76, 0.18)),
    var(--tour-image, url("assets/lake-pier.jpg")) var(--tour-x, 50%) center / 190% 100% no-repeat;
  transition: background-position 0.28s ease;
  user-select: none;
}

.tour-preview__image.is-dragging {
  cursor: grabbing;
  transition: none;
}

.tour-preview__image span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 37, 65, 0.64);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tour-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 37, 65, 0.18);
  font-size: 28px;
  transform: translateY(-50%);
}

.tour-arrow--left {
  left: 16px;
}

.tour-arrow--right {
  right: 16px;
}

.tour-stand-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: rgba(55, 173, 114, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.tour-play {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: rgba(8, 37, 65, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tour-route {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 66px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-route button {
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: #eaf5ff;
  background: rgba(8, 37, 65, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tour-route button.is-active {
  color: var(--navy);
  background: #fff;
}

.tour-preview__body,
.rules-card,
.owner-simple-card {
  padding: 22px;
}

.tour-preview h3,
.rules-card h3,
.owner-simple-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tour-preview p,
.rules-card p,
.owner-simple-card p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.rules-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.rules-card li {
  position: relative;
  padding-left: 28px;
  color: #41536d;
  font-size: 14px;
  font-weight: 800;
}

.rules-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.owner-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.owner-flow button {
  min-height: 48px;
  border-radius: 12px;
  color: var(--blue);
  background: #f4f9ff;
  border: 1px solid #dce9f7;
  font-size: 12px;
  font-weight: 800;
}

.owner-flow .is-blocked {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}

.owner-stand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #f7fbff;
  border: 1px solid #e2edf8;
}

.owner-stand-grid i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
}

.owner-stand-grid .red {
  background: var(--danger);
}

.owner-stand-grid .selected {
  background: var(--blue);
  outline: 5px solid rgba(31, 112, 201, 0.16);
}

.owner-stand-grid .selected.is-blocked {
  background: var(--danger);
  outline-color: rgba(231, 95, 93, 0.18);
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 42, 0.54);
  backdrop-filter: blur(10px);
}

.success-modal[hidden] {
  display: none;
}

.success-modal__card {
  position: relative;
  width: min(100%, 430px);
  padding: 34px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 27, 48, 0.25);
}

.success-modal__card > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
}

.success-modal__card > span::after {
  content: "";
  width: 25px;
  height: 13px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}

.success-modal__card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.success-modal__card p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.success-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  background: #f4f8fc;
  font-size: 22px;
}

@media (max-width: 1100px) {
  .pilot-layout,
  .lake-detail-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    align-items: start;
  }

  .booking-panel__status,
  .booking-panel h3,
  .booking-panel > p,
  .feature-strip,
  .booking-panel .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .section--pilot {
    padding-block: 34px;
  }

  .pilot-media-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .drone-photo {
    min-height: 360px;
    margin-inline: 12px;
    background-position: 52% center;
  }

  .stand-pin {
    width: 32px;
    height: 32px;
    border-width: 3px;
    font-size: 11px;
  }

  .stand-pin--40 {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .drone-callout {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 15px;
  }

  .drone-callout strong {
    font-size: 19px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .feature-strip,
  .date-grid,
  .shift-grid,
  .owner-flow {
    grid-template-columns: 1fr;
  }

  .map-legend {
    padding-inline: 12px;
    font-size: 12px;
  }

  .tour-preview__image {
    min-height: 205px;
  }

  .tour-stand-cta {
    left: 16px;
    right: auto;
  }

  .owner-stand-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.section--owner {
  background: #fff;
  padding-block: 26px 30px;
}

.owner-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(420px, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  min-height: clamp(194px, 19vw, 250px);
  padding: clamp(26px, 3vw, 40px) clamp(34px, 4.8vw, 62px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 23% 68%, rgba(55, 173, 114, 0.08), transparent 34%),
    linear-gradient(100deg, #f8fffb 0%, #f3fbf8 42%, #ffffff 100%);
  border: 1px solid rgba(205, 231, 220, 0.72);
  box-shadow: 0 18px 42px rgba(27, 65, 98, 0.08);
}

.owner-panel h2 {
  margin: 0 0 clamp(12px, 1.35vw, 18px);
  color: var(--green-2);
  font-size: clamp(22px, 2.55vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.owner-panel h2 span {
  color: var(--blue);
}

.owner-panel ul {
  color: #466078;
  margin-bottom: clamp(15px, 1.7vw, 24px);
  gap: clamp(8px, 0.9vw, 12px);
}

.owner-panel li {
  gap: 9px;
  font-size: clamp(11px, 0.88vw, 13px);
  font-weight: 800;
}

.owner-panel li::before {
  width: 12px;
  height: 12px;
  box-shadow: none;
}

.owner-panel .btn {
  min-height: clamp(38px, 2.9vw, 46px);
  padding-inline: clamp(18px, 2vw, 26px);
  border-radius: 8px;
}

.owner-panel__device {
  position: relative;
  min-height: clamp(158px, 16vw, 208px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.34fr 1fr 0.34fr;
  gap: clamp(10px, 1.4vw, 16px);
  width: min(100%, clamp(430px, 45vw, 610px));
  max-width: 610px;
  margin-left: auto;
  padding: clamp(15px, 1.9vw, 24px);
  border-radius: 18px;
  background: #fff;
  border: clamp(5px, 0.65vw, 8px) solid #101923;
  box-shadow:
    0 18px 34px rgba(6, 31, 58, 0.18),
    inset 0 0 0 1px rgba(9, 28, 45, 0.06);
}

.dashboard-card__sidebar,
.dashboard-card__summary {
  padding: clamp(10px, 1.2vw, 15px);
  border-radius: 12px;
  background: #f2f8fc;
}

.dashboard-card strong {
  display: block;
  margin-bottom: clamp(8px, 1vw, 12px);
  color: var(--navy);
  font-size: clamp(11px, 1vw, 14px);
}

.dashboard-card span {
  display: block;
  color: #65748a;
  font-size: clamp(8px, 0.82vw, 11px);
  font-weight: 800;
}

.dashboard-card__sidebar span + span {
  margin-top: clamp(7px, 0.85vw, 10px);
}

.dashboard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.dashboard-card__top button {
  min-height: clamp(22px, 2vw, 30px);
  padding: 0 clamp(8px, 0.9vw, 12px);
  border-radius: 999px;
  color: var(--green-2);
  background: #e8f9ef;
  font-size: clamp(8px, 0.82vw, 11px);
  font-weight: 800;
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: clamp(6px, 0.75vw, 9px);
}

.stand-grid i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
}

.stand-grid button {
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: clamp(8px, 0.75vw, 10px);
  font-weight: 900;
}

.stand-grid i.red {
  background: var(--danger);
}

.stand-grid button.occupied {
  background: var(--danger);
}

.stand-grid i.blue {
  background: var(--blue);
}

.dashboard-card__summary strong {
  margin: 2px 0 clamp(6px, 0.8vw, 10px);
  font-size: clamp(20px, 2.2vw, 28px);
}

.dashboard-card__summary b {
  color: var(--navy);
}

.rod {
  position: absolute;
  right: clamp(13px, 2.2vw, 32px);
  bottom: clamp(7px, 1.4vw, 20px);
  z-index: 1;
  width: 4px;
  height: clamp(140px, 16vw, 210px);
  border-radius: 99px;
  background: linear-gradient(#173f5d, #ecf5fb 68%, #122f46);
  transform: rotate(18deg);
  transform-origin: bottom center;
}

.rod::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -16px;
  width: clamp(32px, 4vw, 48px);
  height: clamp(32px, 4vw, 48px);
  border-radius: 50%;
  border: 6px solid #16293b;
  background:
    radial-gradient(circle at 50% 50%, #6faed9 0 16%, transparent 17%),
    linear-gradient(135deg, #0c1d2e, #283b4c);
  box-shadow: 0 8px 16px rgba(9, 35, 55, 0.18);
}

.rod::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 26%;
  width: 13px;
  height: 24px;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(#ff8a2a 0 42%, #f8fbfc 43% 61%, #3dbd70 62%);
  box-shadow: 0 7px 0 -4px rgba(0, 0, 0, 0.2);
}

.rod--two {
  right: clamp(60px, 7.5vw, 116px);
  bottom: clamp(9px, 1.7vw, 24px);
  height: clamp(120px, 14vw, 180px);
  transform: rotate(13deg);
  opacity: 0.78;
}

.rod--two::before,
.rod--two::after {
  display: none;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  min-height: 320px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.line-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--blue);
  border: 2px solid rgba(31, 112, 201, 0.18);
  font-size: 24px;
  font-weight: 800;
}

.small-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 13px;
  background: #f8fbff;
  border: 1px solid #e7eff8;
}

.small-box span,
.small-box small,
.info-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.small-box strong {
  display: block;
  margin: 4px 0;
  color: var(--navy);
}

.info-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  position: absolute;
  bottom: 20px;
}

.avatar-row {
  display: flex;
  margin-top: 28px;
}

.avatar-row span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg, #77d49b, #1f70c9);
}

.avatar-row span + span {
  margin-left: -9px;
}

.rating-big {
  margin-top: 24px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.rating-big span {
  color: var(--gold);
  font-size: 18px;
}

.info-card--photo img {
  width: 100%;
  height: 82px;
  margin-top: 15px;
  border-radius: 12px;
  object-fit: cover;
}

.section--reports {
  background: #fff;
  padding-top: 8px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.report-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.report-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
}

.report-card .blog-cat {
  display: inline-flex;
  margin: 16px 18px 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-2);
  background: #e9f9f0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card h3,
.report-card p {
  padding-inline: 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 34%, rgba(34, 122, 204, 0.18), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(31, 98, 164, 0.2), transparent 32%),
    linear-gradient(180deg, #0a2c4c 0%, #082844 100%);
  color: #dce9f6;
  padding-block: clamp(20px, 2.15vw, 30px) clamp(7px, 0.85vw, 11px);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.72fr)
    minmax(112px, 0.78fr)
    minmax(112px, 0.78fr)
    minmax(112px, 0.78fr)
    minmax(190px, 1fr);
  gap: clamp(40px, 5.4vw, 88px);
  align-items: start;
  justify-content: stretch;
}

.brand--footer {
  display: inline-flex;
  align-items: center;
  color: #4ea5ff;
  gap: 8px;
  margin-top: 0;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1;
}

.brand--footer img {
  width: clamp(28px, 2.7vw, 34px);
  height: clamp(28px, 2.7vw, 34px);
}

.footer-brand p {
  max-width: 225px;
  margin: 8px 0 12px;
  color: #b8cce0;
  font-size: clamp(9px, 0.74vw, 11.5px);
  line-height: 1.38;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: clamp(22px, 1.9vw, 28px);
  height: clamp(22px, 1.9vw, 28px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #dbeaf6;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(9px, 0.74vw, 11.5px);
  font-weight: 800;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(10px, 0.82vw, 12.5px);
  line-height: 1.2;
  font-weight: 800;
}

.footer-grid a {
  display: block;
  margin-top: 6px;
  color: #b7cbe1;
  font-size: clamp(9px, 0.76vw, 11.5px);
  line-height: 1.22;
  font-weight: 700;
}

.footer-grid .brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: #4ea5ff;
  font-size: clamp(18px, 1.75vw, 23px);
  font-weight: 800;
}

.footer-grid .brand--footer img {
  width: clamp(28px, 2.7vw, 34px);
  height: clamp(28px, 2.7vw, 34px);
}

.footer-grid .brand--footer strong {
  color: var(--green);
}

.footer-grid > div:last-child a:nth-of-type(3) {
  color: #4fd083;
  font-weight: 800;
}

.footer-grid > div:last-child a:nth-of-type(3)::before {
  content: "☎";
  margin-right: 8px;
  color: #4fd083;
}

.footer-grid > div:last-child a:nth-of-type(4)::before {
  content: "✉";
  margin-right: 8px;
  color: #4fd083;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(15px, 1.75vw, 24px);
  padding-top: clamp(8px, 0.8vw, 11px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9bdd0;
  font-size: clamp(8px, 0.7vw, 10px);
  line-height: 1.2;
  font-weight: 700;
}

.footer-bottom nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
}

@media (max-width: 700px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: var(--side-pad);
    right: var(--side-pad);
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }

  .main-nav {
    top: 84px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px 18px 0 0;
  }

  .header-actions {
    top: 311px;
    flex-direction: column;
    align-items: stretch;
    border-top: 0;
    border-radius: 0 0 18px 18px;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .lake-grid,
  .community-grid,
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .mini-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-panel,
  .owner-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    margin-inline: 0 auto;
  }

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

@media (max-width: 700px) {
  :root {
    --side-pad: 18px;
  }

  .top-strip {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__content {
    margin-top: 0;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .hero p {
    font-size: 16px;
  }

  .search-card {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .search-card label {
    min-height: 56px;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid #e2ebf4;
    padding: 0 14px 10px;
  }

  .search-card label:last-of-type {
    border-bottom: 0;
    text-align: center;
    padding: 0 10px 10px;
  }

  .search-card .btn {
    width: 100%;
    font-size: 16px;
  }
  div .hero-promise span {
    font-size: 14px;
  }


  .hero-promise {
    margin-inline: auto;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: 28px;
  }

  .section-heading p {
    max-width: calc(100vw - 42px);
    font-size: 14px;
    line-height: 1.45;
  }

  .section-heading a {
    white-space: normal;
  }

  .lake-grid,
  .category-grid,
  .mini-card-row,
  .community-grid,
  .report-grid,
  .phone-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lake-card__title-row {
    display: block;
  }

  .lake-card__title-row span {
    display: inline-flex;
    min-width: 0;
    margin-top: 8px;
  }

  .value-panel,
  .owner-panel {
    padding: 32px 22px;
  }

  .phone-card__screen {
    max-width: 230px;
    margin-inline: auto;
  }

  .dashboard-card {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
  }

  .mobile-toggle {
    position: absolute;
    top: 50%;
    right: var(--side-pad);
    z-index: 90;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 12px;
    background: #eef6fd !important;
    border: 1px solid #dce7f2;
    transform: translateY(-50%);
  }

  .mobile-toggle span {
    display: block;
    opacity: 1;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
    flex: 0 0 auto;
  }
}

/* Inner pages */
.page-main {
  background:
    radial-gradient(circle at 12% 8%, rgba(55, 173, 114, 0.12), transparent 28%),
    linear-gradient(180deg, #f3f8fc 0%, #ffffff 48%, #f6faff 100%);
}

.page-hero {
  padding: clamp(54px, 7vw, 96px) 0 clamp(28px, 5vw, 64px);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-title {
  max-width: 780px;
  margin: 0;
  color: #07142b;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-title span {
  color: var(--green);
}

.page-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: #53637a;
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.65;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-panel {
  border: 1px solid rgba(15, 95, 176, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.page-panel--padded {
  padding: 24px;
}

.mini-phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page-section {
  padding: clamp(42px, 6vw, 82px) 0;
}

.page-section--dark {
  background: var(--navy);
  color: #fff;
}

.page-section--white {
  background: #fff;
}

.page-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.page-section__head h2 {
  max-width: 760px;
  margin: 0;
  color: #07142b;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.page-section--dark .page-section__head h2 {
  color: #fff;
}

.page-section__head p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.page-section--dark .page-section__head p {
  color: #c7d7e7;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-hero-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 30px;
  background: linear-gradient(145deg, #102f52, #071d35);
  box-shadow: var(--shadow-card);
}

.romania-shape {
  position: absolute;
  inset: 72px 52px 88px;
  background: #e9f4fb;
  clip-path: polygon(18% 31%, 29% 17%, 51% 12%, 74% 18%, 88% 36%, 82% 58%, 64% 78%, 43% 84%, 25% 72%, 12% 54%);
  filter: drop-shadow(0 20px 42px rgba(255, 255, 255, 0.22));
}

.pin-cloud {
  position: absolute;
  inset: 92px 80px 118px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 15px 20px;
  transform: rotate(-2deg);
}

.pin-cloud i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 37, 65, 0.42);
}

.pin-cloud .active {
  width: 20px;
  height: 20px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(55, 173, 114, 0.18);
}

.map-callout {
  position: absolute;
  right: 36px;
  bottom: 56px;
  width: min(320px, calc(100% - 72px));
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-callout small {
  color: var(--green-2);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-callout h3 {
  margin: 8px 0 4px;
  font-size: 21px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.filter-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
}

.filter-panel h2,
.filter-panel h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.filter-field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-field input,
.filter-field select,
.filter-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--text);
  font: inherit;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip-row button,
.soft-chip {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #465772;
  font-size: 13px;
  font-weight: 800;
}

.filter-chip-row button.is-active,
.soft-chip.is-active {
  border-color: rgba(55, 173, 114, 0.35);
  background: rgba(55, 173, 114, 0.11);
  color: var(--green-2);
}

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

.archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.archive-card__media {
  position: relative;
  height: 185px;
  overflow: hidden;
}

.archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__media span {
  position: absolute;
  top: 14px;
  left: 14px;
}

.archive-card__body {
  padding: 18px;
}

.archive-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.archive-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.archive-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f7fc;
  color: #53637a;
  font-size: 12px;
  font-weight: 800;
}

.detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 390px;
  gap: 24px;
  align-items: stretch;
}

.detail-cover {
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  background: #0b2948;
  box-shadow: var(--shadow-card);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.booking-card {
  padding: 24px;
}

.booking-card h2 {
  margin: 0 0 5px;
  font-size: 32px;
}

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

.booking-date-grid,
.booking-shift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.booking-date-grid button,
.booking-shift-grid button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #4d6078;
  font-weight: 800;
}

.booking-date-grid button.is-selected,
.booking-shift-grid button.is-selected {
  border-color: var(--blue);
  background: rgba(31, 112, 201, 0.08);
  color: var(--blue);
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 20px 0;
  padding: 16px;
  border-radius: 16px;
  background: #f3f8fc;
}

.price-box strong {
  font-size: 32px;
}

.drone-map-real {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  background: #0b2948;
  box-shadow: var(--shadow-card);
}

.drone-map-real img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: 0.92;
}

.drone-map-real::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 37, 65, 0.08), rgba(8, 37, 65, 0.2));
  pointer-events: none;
}

.real-stand {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 37, 65, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.real-stand.available {
  background: var(--green);
}

.real-stand.occupied {
  background: var(--danger);
}

.real-stand.featured {
  width: 48px;
  height: 48px;
  font-size: 17px;
  box-shadow: 0 0 0 10px rgba(55, 173, 114, 0.24), 0 16px 30px rgba(8, 37, 65, 0.28);
}

.real-stand--40 {
  left: 72%;
  top: 56%;
}

.real-stand--31 {
  left: 29%;
  top: 42%;
}

.real-stand--35 {
  left: 52%;
  top: 34%;
}

.real-stand--44 {
  left: 35%;
  top: 62%;
}

.real-stand--47 {
  left: 79%;
  top: 47%;
}

.real-stand--48 {
  left: 82%;
  top: 63%;
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 24px;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-tile,
.rule-card,
.help-card,
.flow-card,
.community-card,
.shop-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.feature-tile b {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.feature-tile span {
  color: var(--muted);
  font-weight: 800;
}

.rule-card h3,
.help-card h3,
.flow-card h3,
.community-card h3,
.shop-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rule-card p,
.help-card p,
.flow-card p,
.community-card p,
.shop-card p {
  margin: 0;
  color: var(--muted);
}

.rule-card ul,
.flow-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.rule-card li,
.flow-card li {
  margin-top: 10px;
  color: #41516a;
  font-weight: 700;
}

.rule-card li::before,
.flow-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
  font-weight: 900;
}

.simple-tour {
  padding: 18px;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
}

.simple-tour__viewer {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: url("assets/lake-pier.jpg") center / cover no-repeat;
}

.simple-tour__viewer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 22, 39, 0.42));
}

.ground-arrow {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 84px;
  width: 74px;
  height: 74px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: translateX(-50%) rotate(-45deg);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.tour-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.tour-toolbar span {
  color: #c7d7e7;
  font-weight: 800;
}

.flow-grid,
.help-grid,
.community-page-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-card strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
  text-align: left;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.community-card img,
.shop-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.shop-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.shop-price strong {
  font-size: 22px;
  color: var(--blue);
}

.owner-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 24px;
}

.owner-simple-card--split,
.owner-simple-card--wide {
  display: grid;
  align-items: center;
  gap: 24px;
}

.owner-simple-card--split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
}

.owner-simple-card--wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.owner-form {
  padding: 24px;
}

.owner-form textarea {
  min-height: 120px;
  padding-block: 12px;
  resize: vertical;
}

.auth-page {
  min-height: calc(100vh - 250px);
  display: grid;
  place-items: center;
  padding: 64px var(--side-pad);
}

.auth-card {
  width: min(100%, 480px);
  padding: 28px;
}

.auth-card .brand {
  margin-bottom: 26px;
}

.empty-state {
  display: none;
  padding: 28px;
  border: 1px dashed #b9c9d9;
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

@media (max-width: 1100px) {
  .page-hero__grid,
  .detail-top,
  .detail-two-col,
  .owner-form-grid,
  .owner-simple-card--split,
  .owner-simple-card--wide,
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .archive-grid,
  .flow-grid,
  .help-grid,
  .community-page-grid,
  .shop-grid,
  .feature-list-grid,
  .mini-phone-grid,
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-hero {
    padding-top: 38px;
  }

  .page-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-grid,
  .flow-grid,
  .help-grid,
  .community-page-grid,
  .shop-grid,
  .feature-list-grid,
  .mini-phone-grid,
  .stat-row,
  .booking-date-grid,
  .booking-shift-grid {
    grid-template-columns: 1fr;
  }

  .map-hero-card,
  .drone-map-real,
  .simple-tour__viewer {
    min-height: 330px;
  }

  .detail-cover,
  .detail-cover img {
    min-height: 300px;
  }

  .map-callout {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .pin-cloud {
    gap: 10px;
    inset: 84px 48px 128px;
  }
}

/* preloader css */
.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
}
.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.container-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 6em;
  width: 6em;
  border: 7px solid #0F0E0E;
  border-top-color: #fff;
  margin: 0 auto 3.5em auto;
}
@media only screen and (max-width: 1199px) {
  .container-preloader .animation-preloader .spinner {
    height: 4em;
    width: 4em;
    border-width: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .spinner {
    margin: 0 auto 0.2em auto;
  }
}
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters {
  color: #fff;
  position: relative;
  display: inline-block;
}
.dark .container-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .txt-loading .characters {
    font-size: 50px;
  }
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  color: #0F0E0E;
  content: attr(data-text);
  animation: characters 4s infinite;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}
.container-preloader .loader-section {
  background-color: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.dark .container-preloader .loader-section {
  background-color: #fff;
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}