/* ============================================================
   country-hotels.css — shared styles for all /hotels-for-sale-* pages
   ALL selectors scoped to .hs-page — zero global side effects
   ============================================================ */

.hs-page {
  --hs-bg0:     #070A10;
  --hs-bg1:     #0E1420;
  --hs-bg2:     #111827;
  --hs-surface: rgba(255,255,255,0.055);
  --hs-surface2:rgba(255,255,255,0.08);
  --hs-stroke:  rgba(255,255,255,0.14);
  --hs-text:    rgba(255,255,255,0.92);
  --hs-muted:   rgba(255,255,255,0.68);
  --hs-brand:   #C0A977;
  --hs-brand2:  rgba(192,169,119,0.18);
  --hs-r:       16px;

  background: linear-gradient(160deg, var(--hs-bg0) 0%, var(--hs-bg1) 60%, var(--hs-bg2) 100%);
  color: var(--hs-text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.hs-page h1,
.hs-page h2,
.hs-page h3,
.hs-page h4 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.15;
  color: var(--hs-text);
}
.hs-page h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; }
.hs-page h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 900; margin: 0; }
.hs-page h3 { font-size: clamp(15px, 2vw, 18px); font-weight: 800; margin: 0; }
.hs-page p  { color: var(--hs-muted); line-height: 1.78; margin: 0; }

.hs-page .hs-section { padding: 64px 0; }
.hs-page .hs-section + .hs-section { border-top: 1px solid var(--hs-stroke); }
.hs-page .hs-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.hs-page .hs-hero { padding: 110px 0 72px; position: relative; overflow: hidden; }
.hs-page .hs-hero__bg {
  position: absolute; inset: -60px 0 auto 0;
  opacity: .18; pointer-events: none; z-index: 0;
}
.hs-page .hs-hero__body { position: relative; z-index: 1; }
.hs-page .hs-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--hs-stroke);
  background: var(--hs-surface);
  color: var(--hs-muted); font-size: 13px; font-weight: 600;
}
.hs-page .hs-kicker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hs-brand); flex-shrink: 0;
}
.hs-page .hs-hero h1 { margin-top: 20px; max-width: 840px; }
.hs-page .hs-hero__lead {
  margin-top: 16px; max-width: 720px;
  color: var(--hs-muted); font-size: 17px; line-height: 1.78;
}
.hs-page .hs-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hs-page .hs-chip {
  border-radius: 999px; border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); color: var(--hs-muted);
  padding: 7px 13px; font-size: 13px;
}
.hs-page .hs-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hs-page .hs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-radius: 12px;
  font-weight: 800; font-size: 14px; text-decoration: none;
  transition: background .18s, transform .15s;
  border: none; cursor: pointer; white-space: nowrap;
}
.hs-page .hs-btn--primary {
  background: rgba(192,169,119,.18);
  border: 1px solid rgba(192,169,119,.35);
  color: #fff;
}
.hs-page .hs-btn--primary:hover {
  background: rgba(192,169,119,.28); color: #fff; text-decoration: none;
  transform: translateY(-1px);
}
.hs-page .hs-btn--outline {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hs-stroke);
  color: rgba(255,255,255,.82);
}
.hs-page .hs-btn--outline:hover {
  background: rgba(255,255,255,.07); color: #fff; text-decoration: none;
  transform: translateY(-1px);
}
.hs-page .hs-btn--full { width: 100%; justify-content: center; }

.hs-page .hs-sh { margin-bottom: 32px; }
.hs-page .hs-sh h2 { margin-bottom: 10px; }
.hs-page .hs-sh p { max-width: 840px; font-size: 16px; }

.hs-page .hs-card {
  border-radius: var(--hs-r); border: 1px solid var(--hs-stroke);
  background: linear-gradient(160deg, var(--hs-surface2), rgba(255,255,255,.02));
  padding: 22px; height: 100%;
}
.hs-page .hs-card h3 { font-size: 16px; margin-bottom: 10px; }
.hs-page .hs-card p  { font-size: 15px; }

.hs-page .hs-ul { list-style: none; padding: 0; margin: 14px 0 0; }
.hs-page .hs-ul li {
  position: relative; padding-left: 20px;
  color: var(--hs-muted); font-size: 15px; line-height: 1.7;
  margin-top: 8px;
}
.hs-page .hs-ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hs-brand);
  box-shadow: 0 0 0 4px rgba(192,169,119,.12);
}

.hs-page .hs-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.hs-page .hs-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

.hs-page .hs-teaser {
  border-radius: 14px; border: 1px solid var(--hs-stroke);
  background: rgba(255,255,255,.03); padding: 16px;
}
.hs-page .hs-teaser__title { font-weight: 800; font-size: 15px; }
.hs-page .hs-teaser__meta {
  margin-top: 8px; color: var(--hs-muted); font-size: 13px; line-height: 1.6;
}

.hs-page .hs-timeline { display: flex; flex-wrap: wrap; gap: 0; margin-top: 28px; }
.hs-page .hs-timeline__step {
  flex: 1; min-width: 100px; position: relative;
  text-align: center; padding: 0 8px 0;
}
.hs-page .hs-timeline__step::after {
  content: '→'; position: absolute; right: -8px; top: 12px;
  color: var(--hs-brand); font-size: 16px; font-weight: 900;
}
.hs-page .hs-timeline__step:last-child::after { display: none; }
.hs-page .hs-timeline__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--hs-brand2); border: 1px solid rgba(192,169,119,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; font-size: 13px; font-weight: 900; color: var(--hs-brand);
}
.hs-page .hs-timeline__label { font-size: 12px; font-weight: 700; line-height: 1.35; }
.hs-page .hs-timeline__sub { font-size: 11px; color: var(--hs-muted); margin-top: 3px; line-height: 1.4; }

.hs-page .hs-checklist {
  border-radius: var(--hs-r); border: 1px solid rgba(192,169,119,.25);
  background: rgba(192,169,119,.06); padding: 28px;
}
.hs-page .hs-checklist h3 { color: var(--hs-brand); margin-bottom: 18px; }
.hs-page .hs-checklist-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 28px; }
.hs-page .hs-checklist-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}
.hs-page .hs-checklist-item:last-child { border-bottom: none; }
.hs-page .hs-checklist-item__ico {
  flex-shrink: 0; margin-top: 2px;
  color: var(--hs-brand); font-weight: 900; font-size: 14px;
}
.hs-page .hs-checklist-item__text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.hs-page .hs-checklist-item__text span { color: var(--hs-muted); font-size: 13px; }

.hs-page .hs-flags { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.hs-page .hs-flag {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 12px; border: 1px solid rgba(220,70,70,.2);
  background: rgba(220,70,70,.05); padding: 14px 16px;
}
.hs-page .hs-flag__ico { color: #e05454; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.hs-page .hs-flag__text strong { display: block; font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.hs-page .hs-flag__text span { color: var(--hs-muted); font-size: 13px; line-height: 1.55; }

.hs-page .hs-faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 24px; }
.hs-page .hs-faq {
  border-radius: 16px; border: 1px solid var(--hs-stroke);
  background: rgba(255,255,255,.03); padding: 18px;
}
.hs-page .hs-faq h3 { font-size: 14px; font-weight: 800; margin-bottom: 8px; line-height: 1.45; }
.hs-page .hs-faq p  { font-size: 14px; line-height: 1.7; }

.hs-page .hs-cta-band {
  background: linear-gradient(135deg, rgba(192,169,119,.12), rgba(192,169,119,.04));
  border: 1px solid rgba(192,169,119,.2);
  border-radius: 20px; padding: 40px; text-align: center;
}
.hs-page .hs-cta-band h2 { margin-bottom: 10px; }
.hs-page .hs-cta-band p  { max-width: 600px; margin: 0 auto 24px; }
.hs-page .hs-cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hs-page .hs-form-wrap {
  border-radius: 20px; border: 1px solid var(--hs-stroke);
  background: rgba(255,255,255,.04); padding: 32px;
}
.hs-page .hs-form-wrap h3 { margin-bottom: 20px; font-size: 18px; }
.hs-page .hs-form-group { margin-bottom: 16px; }
.hs-page .hs-form-group label {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 700; color: var(--hs-muted);
  text-transform: uppercase; letter-spacing: .4px;
}
.hs-page .hs-form-group input,
.hs-page .hs-form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--hs-stroke);
  background: rgba(255,255,255,.06); color: #fff;
  font-size: 15px; transition: border .15s, background .15s;
  -webkit-appearance: none;
}
.hs-page .hs-form-group input::placeholder,
.hs-page .hs-form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.hs-page .hs-form-group input:focus,
.hs-page .hs-form-group textarea:focus {
  outline: none;
  border-color: rgba(192,169,119,.5);
  background: rgba(255,255,255,.09);
}
.hs-page .hs-form-success {
  display: none; text-align: center; padding: 24px;
  color: #7ec89e; font-weight: 700; font-size: 16px;
}

.hs-page .hs-compliance {
  text-align: center; border-top: 1px solid var(--hs-stroke); padding: 48px 0;
}
.hs-page .hs-compliance p {
  max-width: 840px; margin: 0 auto 28px; font-size: 14px; line-height: 1.75;
}
.hs-page .hs-compliance__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hs-page .hs-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hs-page .hs-link-item {
  border-radius: 999px; border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--hs-muted); text-decoration: none;
}
.hs-page .hs-link-item:hover { color: #fff; background: var(--hs-surface2); text-decoration: none; }

.hs-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(7,10,16,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 12px 16px;
  gap: 10px;
}
.hs-sticky a { flex: 1; text-align: center; font-size: 13px; padding: 12px 10px; }

/* ── Stats row ───────────────────────────────────────────────────────────── */
.hs-page .hs-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-radius: var(--hs-r); border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); overflow: hidden;
}
.hs-page .hs-stat {
  flex: 1; min-width: 140px; padding: 24px 28px;
  border-right: 1px solid var(--hs-stroke);
  text-align: center;
}
.hs-page .hs-stat:last-child { border-right: none; }
.hs-page .hs-stat__n {
  display: block; font-size: clamp(28px,4vw,40px); font-weight: 900;
  font-family: 'Unbounded', sans-serif; color: var(--hs-brand); line-height: 1.1;
}
.hs-page .hs-stat__l {
  display: block; font-size: 13px; color: var(--hs-muted);
  margin-top: 4px; line-height: 1.4;
}
.hs-page .hs-section--narrow { padding: 32px 0; }

/* ── 4-column grid ───────────────────────────────────────────────────────── */
.hs-page .hs-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ── Country cards ───────────────────────────────────────────────────────── */
.hs-page .hs-country-card {
  border-radius: var(--hs-r); border: 1px solid var(--hs-stroke);
  background: linear-gradient(160deg, var(--hs-surface2), rgba(255,255,255,.02));
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .18s;
}
.hs-page .hs-country-card:hover { border-color: rgba(192,169,119,.4); }
.hs-page .hs-country-card h3 { font-size: 15px; margin-bottom: 0; }
.hs-page .hs-country-card p { font-size: 13px; flex: 1; }
.hs-page .hs-country-card__link {
  font-size: 13px; font-weight: 700; color: var(--hs-brand);
  text-decoration: none; margin-top: 4px;
}
.hs-page .hs-country-card__link:hover { text-decoration: underline; }

/* ── Card icon ───────────────────────────────────────────────────────────── */
.hs-page .hs-card__ico { font-size: 24px; margin-bottom: 10px; display: block; }

/* ── Section variants ────────────────────────────────────────────────────── */
.hs-page .hs-section--accent {
  background: linear-gradient(135deg, rgba(192,169,119,.08), rgba(192,169,119,.02));
  border-top: 1px solid rgba(192,169,119,.18);
  border-bottom: 1px solid rgba(192,169,119,.18);
}
.hs-page .hs-section--muted {
  background: rgba(255,255,255,.015);
}

/* ── Tags cloud ──────────────────────────────────────────────────────────── */
.hs-page .hs-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hs-page .hs-tag {
  border-radius: 999px; border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); color: var(--hs-muted);
  padding: 7px 14px; font-size: 13px; font-weight: 600;
}

/* ── Ordered list ────────────────────────────────────────────────────────── */
.hs-page .hs-ordered-list {
  list-style: none; padding: 0; margin: 14px 0 0; counter-reset: hs-ol;
}
.hs-page .hs-ordered-list li {
  counter-increment: hs-ol; position: relative;
  padding: 10px 0 10px 38px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--hs-muted); font-size: 15px; line-height: 1.65;
}
.hs-page .hs-ordered-list li:last-child { border-bottom: none; }
.hs-page .hs-ordered-list li::before {
  content: counter(hs-ol);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--hs-brand2); border: 1px solid rgba(192,169,119,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: var(--hs-brand);
  line-height: 1;
}

/* ── Buy/sell columns ────────────────────────────────────────────────────── */
.hs-page .hs-buysell-col {
  border-radius: var(--hs-r); border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); padding: 24px;
}
.hs-page .hs-buysell-col h3 {
  font-size: 16px; margin-bottom: 4px;
  color: var(--hs-brand);
}

/* ── SEO body ────────────────────────────────────────────────────────────── */
.hs-page .hs-seo-body {
  color: var(--hs-muted); font-size: 15px; line-height: 1.85;
  max-width: 900px;
}

/* ── Hero photo ──────────────────────────────────────────────────────────── */
.hs-page .hs-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .18; pointer-events: none;
}

/* ── Management section ──────────────────────────────────────────────────── */
.hs-page .hs-mgmt-layout {
  display: flex; gap: 48px; align-items: flex-start;
}
.hs-page .hs-mgmt-content { flex: 1; min-width: 0; }
.hs-page .hs-mgmt-img-wrap {
  flex-shrink: 0; width: 220px;
}
.hs-page .hs-mgmt-photo--sm {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--hs-r); border: 1px solid var(--hs-stroke);
}
.hs-page .hs-mgmt-items { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.hs-page .hs-mgmt-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.hs-page .hs-mgmt-item__ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.hs-page .hs-mgmt-item strong {
  display: block; font-size: 14px; font-weight: 800; color: var(--hs-text); margin-bottom: 3px;
}
.hs-page .hs-mgmt-item span { font-size: 14px; color: var(--hs-muted); line-height: 1.6; }

/* ── Team section — compact avatars ──────────────────────────────────────── */
.hs-page .hs-team-row {
  display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap;
}
.hs-page .hs-tm {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: 14px; border: 1px solid var(--hs-stroke);
  background: var(--hs-surface); padding: 16px 14px;
  width: 130px; gap: 4px; flex-shrink: 0;
  transition: border-color .18s;
}
.hs-page .hs-tm:hover { border-color: rgba(192,169,119,.4); }
.hs-page .hs-tm__avatar-wrap { position: relative; margin-bottom: 4px; }
.hs-page .hs-tm__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 2px solid var(--hs-stroke);
  display: block;
}
.hs-page .hs-tm__badge {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  background: var(--hs-brand); color: #000;
  padding: 2px 6px; border-radius: 999px; white-space: nowrap;
}
.hs-page .hs-tm__name { font-size: 12px; font-weight: 800; line-height: 1.3; margin-top: 6px; }
.hs-page .hs-tm__title { font-size: 10px; color: var(--hs-muted); line-height: 1.4; }
.hs-page .hs-tm__li {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(192,169,119,.3); background: rgba(192,169,119,.08);
  color: var(--hs-brand); text-decoration: none; margin-top: 4px;
}
.hs-page .hs-tm__li:hover { background: rgba(192,169,119,.2); text-decoration: none; }
.hs-page .hs-tm__divider {
  width: 1px; height: 80px; background: var(--hs-stroke);
  align-self: center; flex-shrink: 0;
}

/* ── Offices bar ─────────────────────────────────────────────────────────── */
.hs-page .hs-offices {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px; border-radius: 12px;
  border: 1px solid var(--hs-stroke); background: var(--hs-surface);
}
.hs-page .hs-offices__label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--hs-muted); margin-right: 4px;
}
.hs-page .hs-offices__item { font-size: 14px; font-weight: 600; color: var(--hs-text); }

/* ── Contact label ───────────────────────────────────────────────────────── */
.hs-page .hs-contact-label {
  font-size: 11px; color: var(--hs-muted);
  text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-bottom: 4px;
}

/* ── Teaser price/desc ───────────────────────────────────────────────────── */
.hs-page .hs-teaser__desc { color: var(--hs-muted); font-size: 13px; margin-top: 6px; line-height: 1.55; }
.hs-page .hs-teaser__price {
  margin-top: 10px; font-size: 13px; font-weight: 800;
  color: var(--hs-brand); letter-spacing: .2px;
}

@media (min-width: 1440px) { .hs-page .hs-inner { max-width: 1280px; } }

@media (max-width: 992px) {
  .hs-page .hs-grid-3 { grid-template-columns: repeat(2,1fr); }
  .hs-page .hs-grid-4 { grid-template-columns: repeat(2,1fr); }
  .hs-page .hs-timeline__step::after { display: none; }
  .hs-page .hs-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
  .hs-page .hs-timeline__step { padding: 0; }
  .hs-page .hs-stats { flex-direction: row; }
}

@media (max-width: 768px) {
  .hs-page .hs-section { padding: 48px 0; }
  .hs-page .hs-grid-3,
  .hs-page .hs-grid-2,
  .hs-page .hs-grid-4 { grid-template-columns: 1fr; }
  .hs-page .hs-faq-grid { grid-template-columns: 1fr; }
  .hs-page .hs-flags { grid-template-columns: 1fr; }
  .hs-page .hs-checklist-row { grid-template-columns: 1fr; }
  .hs-page .hs-timeline { grid-template-columns: repeat(2,1fr); }
  .hs-page .hs-cta-band { padding: 28px 20px; }
  .hs-page .hs-form-wrap { padding: 22px 18px; }
  .hs-page .hs-stats { flex-direction: column; }
  .hs-page .hs-stat { border-right: none; border-bottom: 1px solid var(--hs-stroke); }
  .hs-page .hs-stat:last-child { border-bottom: none; }
  .hs-page .hs-mgmt-layout { flex-direction: column-reverse; }
  .hs-page .hs-mgmt-img-wrap { width: 140px; }
  .hs-page .hs-team-row { gap: 8px; }
  .hs-page .hs-tm { width: calc(50% - 4px); }
  .hs-page .hs-tm__divider { display: none; }
  .hs-sticky { display: flex; }
  .hs-page { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hs-page .hs-hero { padding: 88px 0 56px; }
  .hs-page .hs-hero__lead { font-size: 15px; }
  .hs-page .hs-timeline { grid-template-columns: 1fr 1fr; }
  .hs-page .hs-hero__cta { flex-direction: column; }
  .hs-page .hs-btn { width: 100%; justify-content: center; }
  .hs-page .hs-inner { padding: 0 16px; }
}
