.sof,
.sof *,
.sof *::before,
.sof *::after {
  box-sizing: border-box;
  font-family: "DM Sans", "Open Sans", sans-serif;
}
.sof-page {
  background: #faf9f6;
  padding-bottom: 80px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.sof-hero {
  position: relative;
  background: #1a1a1a;
  padding: 90px 0 70px;
  overflow: hidden;
  text-align: center;
}
.sof-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.sof-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.65) 0%,
    rgba(10, 10, 10, 0.88) 100%
  );
  z-index: 1;
}
.sof-hero-inner {
  position: relative;
  z-index: 2;
}
.sof-hero-tag {
  display: inline-block;
  background: #ff5a5f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sof-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.sof-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.sof-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sof-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff5a5f;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.sof-hero-cta:hover {
  background: #d94a4f;
  color: #fff;
  text-decoration: none;
}
.sof-hero-cta-alt {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.sof-hero-cta-alt:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* ── Trust strip ─────────────────────────────────────────────────────── */
.sof-trust {
  background: #222;
  padding: 14px 0;
}
.sof-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.sof-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.sof-trust-item i {
  color: #ff5a5f;
}

/* ── Section dividers ────────────────────────────────────────────────── */
.sof-section-anchor {
  display: block;
  height: 0;
  visibility: hidden;
  margin-top: -80px;
  padding-top: 80px;
}
.sof-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 32px;
}
.sof-section-divider::before,
.sof-section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}
.sof-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
.sof-section-label i {
  font-size: 11px;
}
.sof-section-label-hotel {
  background: #fff0f0;
  color: #ff5a5f;
}
.sof-section-label-trek {
  background: #f0fdf4;
  color: #22a06b;
}
.sof-section-label-reviews {
  background: #fffbeb;
  color: #d97706;
}

/* ── Section headings ────────────────────────────────────────────────── */
.sof-sec-head {
  text-align: center;
  padding: 52px 0 32px;
}
.sof-sec-head h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.sof-sec-head p {
  font-size: 15px;
  color: #888;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── Featured hotel deal ─────────────────────────────────────────────── */
.sof-featured {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.sof-feat-img {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}
.sof-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.sof-feat-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 80px;
  background: linear-gradient(135deg, #1a1a1a, #3a1a0a);
}
.sof-feat-savings {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff5a5f;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  line-height: 1;
}
.sof-feat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffb400;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sof-feat-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sof-feat-icon {
  width: 52px;
  height: 52px;
  background: #fff5f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sof-feat-icon i {
  color: #ff5a5f;
  font-size: 22px;
}
.sof-feat-body h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}
.sof-feat-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 24px;
}
.sof-feat-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.sof-feat-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.sof-feat-wa:hover {
  background: #1fba58;
  color: #fff;
  text-decoration: none;
}
.sof-feat-rooms {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff5a5f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ff5a5f;
  padding: 12px 18px;
  border-radius: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.sof-feat-rooms:hover {
  background: #ff5a5f;
  color: #fff;
  text-decoration: none;
}

/* ── Hotel offers grid ───────────────────────────────────────────────── */
.sof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sof-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.sof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.sof-card-top {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sof-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sof-card-icon i {
  font-size: 20px;
  color: #fff;
}
.sof-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  height: fit-content;
}
.sof-card-savings {
  font-size: 28px;
  font-weight: 700;
  margin: 14px 24px 6px;
  line-height: 1;
}
.sof-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 24px 10px;
  line-height: 1.35;
}
.sof-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0 24px;
  flex: 1;
}
.sof-card-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 18px 24px;
}
.sof-card-footer {
  padding: 0 24px 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.sof-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  flex: 1;
}
.sof-card-wa:hover {
  background: #1fba58;
  color: #fff;
  text-decoration: none;
}
.sof-card-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 12px;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.sof-card-detail:hover {
  border-color: #ff5a5f;
  color: #ff5a5f;
  text-decoration: none;
}

/* ── Trekking cards ──────────────────────────────────────────────────── */
.sof-trek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  gap: 24px;
  justify-content: center;
}
.sof-trek-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ede8;
}
.sof-trek-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
}
.sof-trek-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1f10, #1a3025);
}
.sof-trek-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.sof-trek-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.sof-trek-card:hover .sof-trek-img img {
  transform: scale(1.07);
}
.sof-trek-emoji {
  font-size: 72px;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}
.sof-trek-type {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 90, 95, 0.9);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.sof-trek-type-tour {
  background: rgba(90, 103, 216, 0.9);
}
.sof-trek-diff {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.sof-trek-diff-easy {
  background: rgba(34, 160, 107, 0.9);
  color: #fff;
}
.sof-trek-diff-mod {
  background: rgba(255, 180, 0, 0.92);
  color: #222;
}
.sof-trek-diff-hard {
  background: rgba(255, 90, 95, 0.9);
  color: #fff;
}
.sof-trek-badge-pill {
  background: rgba(255, 180, 0, 0.95);
  color: #222;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.sof-trek-dur {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.sof-trek-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sof-trek-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.3;
}
.sof-trek-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 14px;
  flex: 1;
}
.sof-trek-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #f5f0eb;
  border-bottom: 1px solid #f5f0eb;
  margin-bottom: 16px;
}
.sof-trek-price-lbl {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 2px;
}
.sof-trek-price-val {
  font-size: 22px;
  font-weight: 700;
  color: #ff5a5f;
  line-height: 1;
}
.sof-trek-price-per {
  font-size: 12px;
  color: #bbb;
}
.sof-trek-from {
  font-size: 12px;
  color: #888;
  margin: 0 0 14px;
}
.sof-trek-from strong {
  font-size: 18px;
  color: #ff5a5f;
  font-weight: 700;
}
.sof-trek-footer {
  display: flex;
  gap: 8px;
}
.sof-trek-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  flex: 1;
}
.sof-trek-wa:hover {
  background: #1fba58;
  color: #fff;
  text-decoration: none;
}
.sof-trek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff5a5f;
  text-decoration: none;
  padding: 11px 14px;
  border: 1.5px solid #ff5a5f;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.sof-trek-btn:hover {
  background: #ff5a5f;
  color: #fff;
  text-decoration: none;
}

/* ── Trek card share row ─────────────────────────────────────────────── */
.sof-trek-share{display:flex;align-items:center;gap:6px;padding-top:10px;margin-top:12px;border-top:1px solid #f5f0eb}
.sof-trek-share-lbl{font-size:11px;color:#bbb;text-transform:uppercase;letter-spacing:.5px;flex:1}
.sof-trek-share-btn{width:30px;height:30px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;font-size:13px;text-decoration:none;transition:opacity .2s,background .2s;border:none;cursor:pointer;flex-shrink:0}
.sof-trek-share-btn:hover{opacity:.82;text-decoration:none}
.sof-trek-share-fb{background:#1877f2;color:#fff}
.sof-trek-share-tw{background:#000;color:#fff}
.sof-trek-share-wa{background:#25D366;color:#fff}
.sof-trek-share-copy{background:#f0f0f0;color:#666}
.sof-trek-share-copy.copied{background:#22a06b;color:#fff}

/* ── Trek + Stay combo ───────────────────────────────────────────────── */
.sof-combo {
  background: linear-gradient(135deg, #0f2010 0%, #1a1a2d 100%);
  border-radius: 20px;
  padding: 44px 48px;
  margin: 8px 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.sof-combo-content {
  flex: 1;
  min-width: 260px;
}
.sof-combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffb400;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.sof-combo h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.sof-combo-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 0 20px;
}
.sof-combo-incs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.sof-combo-inc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.sof-combo-inc i {
  color: #ffb400;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.sof-combo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sof-combo-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.sof-combo-wa:hover {
  background: #1fba58;
  color: #fff;
  text-decoration: none;
}
.sof-combo-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb400;
  border: 1px solid rgba(255, 180, 0, 0.4);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.sof-combo-more:hover {
  background: rgba(255, 180, 0, 0.1);
  color: #ffb400;
  text-decoration: none;
}
.sof-combo-visual {
  font-size: 80px;
  line-height: 1.2;
  flex-shrink: 0;
  user-select: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

/* ── Reviews ─────────────────────────────────────────────────────────── */
.sof-reviews {
  margin-bottom: 48px;
}
.sof-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.sof-reviews-title h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.sof-reviews-title p {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.sof-google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.sof-google-g {
  font-size: 26px;
  font-weight: 900;
  color: #4285f4;
  line-height: 1;
}
.sof-google-rating {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.sof-google-stars {
  color: #ffb400;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}
.sof-google-label {
  font-size: 11px;
  color: #888;
  margin-top: 1px;
}
.sof-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sof-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}
.sof-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sof-review-stars {
  color: #ffb400;
  font-size: 15px;
  letter-spacing: 1px;
}
.sof-review-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.sof-review-tag-stay {
  background: #fff0f0;
  color: #ff5a5f;
}
.sof-review-tag-trek {
  background: #f0fdf4;
  color: #22a06b;
}
.sof-review-text {
  font-size: 13px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 16px;
  flex: 1;
  font-style: italic;
}
.sof-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sof-review-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.sof-review-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.sof-review-meta {
  font-size: 11px;
  color: #aaa;
}

/* ── Comparison table ────────────────────────────────────────────────── */
.sof-compare {
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 48px;
}
.sof-compare h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  text-align: center;
}
.sof-compare-sub {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin: 0 0 28px;
}
.sof-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sof-compare-table th {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #888;
  background: #faf9f6;
  border-bottom: 2px solid #f0f0f0;
  text-align: left;
}
.sof-compare-table th:not(:first-child) {
  text-align: center;
}
.sof-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  color: #444;
  vertical-align: middle;
}
.sof-compare-table td:not(:first-child) {
  text-align: center;
}
.sof-compare-table tr:last-child td {
  border-bottom: none;
}
.sof-compare-table .col-direct {
  background: #fff8f5;
}
.sof-ct-yes {
  color: #22a06b;
  font-size: 17px;
}
.sof-ct-no {
  color: #e53e3e;
  font-size: 17px;
}
.sof-ct-badge {
  display: inline-block;
  background: #ff5a5f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
}
.sof-ct-head-direct {
  color: #ff5a5f !important;
  font-size: 13px !important;
}
.sof-compare-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin: 14px 0 0;
}

/* ── Savings calculator ──────────────────────────────────────────────── */
.sof-calc {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 100%);
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 48px;
  color: #fff;
}
.sof-calc h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  text-align: center;
}
.sof-calc-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.6;
}
.sof-calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
}
.sof-calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sof-calc-field label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.sof-calc-field input,
.sof-calc-field select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.sof-calc-field input:focus,
.sof-calc-field select:focus {
  border-color: rgba(255, 255, 255, 0.6);
}
.sof-calc-field select option {
  color: #333;
  background: #fff;
}
.sof-calc-btn {
  background: #ff5a5f;
  color: #fff;
  border: none;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.sof-calc-btn:hover {
  background: #d94a4f;
}
.sof-calc-result {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 24px 28px;
}
.sof-calc-result.show {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sof-calc-stat {
  text-align: center;
}
.sof-calc-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: #ff5a5f;
  line-height: 1;
  margin-bottom: 4px;
}
.sof-calc-stat-val.green {
  color: #4ade80;
}
.sof-calc-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.sof-calc-wa {
  display: none;
  text-align: center;
  margin-top: 16px;
}
.sof-calc-wa.show {
  display: block;
}
.sof-calc-wa a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}
.sof-calc-wa a:hover {
  background: #1fba58;
  color: #fff;
}

/* ── How to book ─────────────────────────────────────────────────────── */
.sof-how {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  margin-top: 48px;
  text-align: center;
}
.sof-how h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.sof-how-sub {
  font-size: 15px;
  color: #888;
  margin: 0 0 36px;
  line-height: 1.6;
}
.sof-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.sof-how-step {
  text-align: center;
}
.sof-how-num {
  width: 44px;
  height: 44px;
  background: #ff5a5f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 12px;
}
.sof-how-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.sof-how-step p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
.sof-how-connector {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sof-how-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s;
}
.sof-how-wa:hover {
  background: #1fba58;
  color: #fff;
  text-decoration: none;
}
.sof-how-rooms {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff5a5f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #ff5a5f;
  padding: 13px 24px;
  border-radius: 12px;
  transition:
    background 0.2s,
    color 0.2s;
}
.sof-how-rooms:hover {
  background: #ff5a5f;
  color: #fff;
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sof-featured {
    grid-template-columns: 1fr;
  }
  .sof-feat-img {
    min-height: 240px;
  }
  .sof-feat-body {
    padding: 28px 28px 32px;
  }
  .sof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sof-trek-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sof-combo {
    gap: 24px;
  }
  .sof-combo-visual {
    font-size: 60px;
  }
  .sof-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sof-calc-form {
    grid-template-columns: 1fr 1fr;
  }
  .sof-calc-result.show {
    grid-template-columns: repeat(2, 1fr);
  }
  .sof-compare {
    padding: 28px 20px;
    overflow-x: auto;
  }
  .sof-how-steps {
    grid-template-columns: 1fr;
  }
  .sof-trust-inner {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .sof-hero {
    padding: 64px 0 52px;
  }
  .sof-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .sof-hero-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .sof-grid {
    grid-template-columns: 1fr;
  }
  .sof-trek-grid {
    grid-template-columns: 1fr;
  }
  .sof-combo {
    flex-direction: column;
    padding: 28px 24px;
  }
  .sof-combo-visual {
    display: none;
  }
  .sof-reviews-grid {
    grid-template-columns: 1fr;
  }
  .sof-reviews-head {
    flex-direction: column;
  }
  .sof-calc {
    padding: 28px 20px;
  }
  .sof-calc-form {
    grid-template-columns: 1fr;
  }
  .sof-calc-result.show {
    grid-template-columns: repeat(2, 1fr);
  }
  .sof-how {
    padding: 28px 20px;
  }
  .sof-how-connector {
    flex-direction: column;
    align-items: center;
  }
  .sof-how-wa,
  .sof-how-rooms {
    width: 100%;
    justify-content: center;
  }
}
