/* ── Short-Term Rental page ─────────────────────────────────── */

/* Hero */
.str-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #003f5c 0%, #005f8e 45%, #0077b6 100%);
  padding-top: 220px;
}
.str-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.str-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 64px 24px 72px;
}
.str-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.str-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.str-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.str-hero-sub strong { color: #fff; }
.str-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Stats bar ── */
.str-stats-bar {
  background: #003f5c;
  padding: 20px 0;
  border-bottom: 3px solid var(--red);
}
.str-stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.str-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.str-stat-item:last-child { border-right: none; }
.str-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.str-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 100px;
}

/* ── Section base ── */
.str-section { padding: 80px 0; }
.str-section-white { background: var(--white); }
.str-section-gray  { background: var(--off-white); }
.str-section-blue  {
  background: linear-gradient(135deg, #0077b6, #0096c7);
  padding: 64px 0;
}

/* ── Why it matters — split layout ── */
.str-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.str-split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.str-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.str-quote-block {
  background: #fff3f3;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}
.str-quote-block p {
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.6;
}
.str-quote-block span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* Checklist card */
.str-checklist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 6px 32px rgba(27,46,107,0.12);
  border: 1px solid var(--border);
}
.str-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.str-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.str-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}

/* ── Service plans ── */
.str-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.str-plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.str-plan-featured {
  border: 2px solid var(--navy);
  box-shadow: 0 8px 32px rgba(0,119,182,0.18);
}
.str-plan-best {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.str-plan-icon { font-size: 2rem; }
.str-plan h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.str-plan p   { font-size: 0.93rem; color: var(--muted); line-height: 1.65; flex: 1; }
.str-plan-tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.str-plan-featured .str-plan-tag {
  background: #e6f4ff;
  border-color: var(--navy);
}

/* ── Benefits grid ── */
.str-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.str-benefit {
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.str-benefit-icon { font-size: 1.8rem; margin-bottom: 12px; }
.str-benefit h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.str-benefit p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── Testimonial ── */
.str-testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.str-stars { color: #f5a623; font-size: 1.4rem; margin-bottom: 20px; letter-spacing: 4px; }
.str-testimonial blockquote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: #fff;
  line-height: 1.8;
  margin: 0 0 16px;
}
.str-testimonial cite {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  font-weight: 600;
}

/* ── Contact form ── */
.str-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.str-form-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.str-form-intro > p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.str-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.str-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  transition: color 0.2s;
}
.str-contact-links a:hover { color: var(--red); }

.str-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  .str-hero { padding-top: 80px; }
  .str-hero-content { padding: 48px 20px 60px; }
  .str-hero-cta { flex-direction: column; }
  .str-hero-cta .btn { width: 100%; justify-content: center; }
  .str-section { padding: 56px 0; }

  .str-stats-inner { justify-content: flex-start; }
  .str-stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 20px;
  }
  .str-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .str-split    { grid-template-columns: 1fr; gap: 32px; }
  .str-plans    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .str-benefits { grid-template-columns: 1fr 1fr; }
  .str-form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .str-form { padding: 28px 20px; }
  .str-checklist-card { padding: 28px 20px; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .str-hero { padding-top: 70px; }
  .str-hero-content { padding: 36px 16px 52px; }
  .str-stat-item { flex: 1 1 100%; border-right: none !important; }
  .str-benefits { grid-template-columns: 1fr; }
  .str-form { padding: 20px 16px; }
}
