:root {
  --ink: #16211f;
  --muted: #66736f;
  --paper: #fffdf7;
  --soft: #f5f0e7;
  --line: rgba(22, 33, 31, .12);
  --brand: #0f5f5c;
  --brand-2: #d7a75f;
  --brand-3: #103b3a;
  --white: #ffffff;
  --danger: #a3483b;
  --shadow: 0 22px 60px rgba(16, 59, 58, .16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 167, 95, .28), transparent 34rem),
    radial-gradient(circle at top right, rgba(15, 95, 92, .18), transparent 38rem),
    var(--paper);
  background-attachment: fixed;
  line-height: 1.55;
  top: 0 !important;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .button { font: inherit; }

/* ── Layout ── */
.page-shell { max-width: 1180px; margin: 0 auto; padding: 24px 18px 60px; }

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 253, 247, .82);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 33, 31, .08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(15, 95, 92, .25);
}

.topbar-actions { display: flex; align-items: center; gap: 8px; }

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(22, 33, 31, .06);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: var(--white);
  border: 0;
}

.button.gold {
  background: #fff6e5;
  border-color: rgba(215, 167, 95, .35);
  color: #6f4a13;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 22px;
  align-items: stretch;
  min-height: 560px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(16, 59, 58, .88), rgba(15, 95, 92, .62)),
    url("../img/casa.jpg") center/cover;
  color: var(--white);
  padding: clamp(28px, 6vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  margin: 26px 0 14px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  max-width: 850px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(255, 255, 255, .9);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-actions .button { border: 0; }

/* ── Navigation app buttons ── */
.btn-google-maps {
  background: #34A853;
  border: 0 !important;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  transition: background .2s;
}
.btn-google-maps:hover { background: #2d9248; }
.btn-google-maps i { color: #fff; font-size: 1.05em; }

.btn-waze {
  background: #33ccff;
  border: 0 !important;
  color: #fff;
  font-weight: 700;
  transition: background .2s, box-shadow .2s;
}
.btn-waze:hover {
  background: #00b8e6;
}

/* ── Side panel ── */
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.guest-chip {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff8ea, #ffffff);
  border: 1px solid rgba(215, 167, 95, .22);
}

.guest-chip small,
.muted { color: var(--muted); }

.guest-chip h2 { margin: 5px 0 4px; font-size: 28px; letter-spacing: -.04em; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-card {
  min-height: 132px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(22, 33, 31, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 33, 31, .1);
}

.quick-card b { display: block; margin-top: 10px; font-size: 21px; letter-spacing: -.03em; color: var(--ink); }
.quick-card span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

.icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 16px;
  color: var(--brand);
}

.secure-note {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #edf7f5;
  border: 1px solid rgba(15, 95, 92, .16);
  color: #184b49;
  font-size: 14px;
}

/* ── Sections ── */
.section { padding: 80px 0 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(15, 95, 92, .1);
  border: 1px solid rgba(15, 95, 92, .18);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.section h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: .96; letter-spacing: -.055em; }
.section p.lead { margin: 10px 0 0; color: var(--muted); max-width: 680px; font-size: 18px; line-height: 1.6; }

/* ── Cards ── */
.card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(22, 33, 31, .07);
  transition: box-shadow .2s ease;
}

.card:hover { box-shadow: 0 20px 52px rgba(22, 33, 31, .11); }

/* ── Checklist ── */
.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.check-card { padding: 22px; }

.check-card .number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(15, 95, 92, .28);
}

.check-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.035em; }
.check-card p { margin: 0; color: var(--muted); line-height: 1.6; }

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: stretch;
}

.info-card { padding: 24px; }
.info-card h3 { margin: 0 0 10px; font-size: 26px; letter-spacing: -.04em; }
.info-card p { color: var(--muted); margin: 0 0 14px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
  border: 1px solid rgba(15, 95, 92, .2);
  background: rgba(15, 95, 92, .07);
  color: var(--brand-3);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ── Map ── */
.map-card {
  min-height: 350px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 95, 92, .08), rgba(215, 167, 95, .16)),
    repeating-linear-gradient(45deg, rgba(22, 33, 31, .05) 0 2px, transparent 2px 16px);
  display: grid;
  place-items: center;
  position: relative;
}

.map-pin {
  width: min(90%, 440px);
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.map-pin strong { display: block; font-size: 24px; letter-spacing: -.04em; margin-bottom: 6px; }
.map-pin small { color: var(--muted); }

/* ── Parking ── */
.parking-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }

.photo-box {
  min-height: 180px;
  border-radius: var(--radius-md);
  border: 1.5px dashed rgba(15, 95, 92, .25);
  background: linear-gradient(135deg, rgba(15, 95, 92, .04), rgba(215, 167, 95, .06));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

.photo-box.large { grid-column: 1 / -1; min-height: 250px; }

/* ── Check-in steps ── */
.steps { display: grid; gap: 16px; }

.step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 23px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(15, 95, 92, .22);
}

.step h3 { margin: 0 0 4px; font-size: 22px; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); }

.mini-photo {
  height: 120px;
  border-radius: 18px;
  background: #f7f2ea;
  border: 1px dashed rgba(22, 33, 31, .24);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

/* ── Videos ── */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.video-card { padding: 14px; }

.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 22px;
  background: #0f1514;
}

.video-frame iframe,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  padding: 24px;
  background: radial-gradient(circle at center, rgba(215, 167, 95, .28), transparent 55%), #101b1a;
}

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

.detail-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(22, 33, 31, .08);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.detail-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(22, 33, 31, .13);
  border-color: rgba(15, 95, 92, .3);
}

.detail-btn:hover .icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  border-color: transparent;
  color: var(--white);
}

.detail-btn span {
  font-size: 16px;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* ── House Rules ── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.rule-card {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(22, 33, 31, .08);
  padding: 22px 24px;
}

.rule-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rule-card-head .icon {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  border: 0;
  color: var(--white);
}

.rule-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.03em;
  color: var(--ink);
}

.rule-card ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rule-card ul li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.rule-card ul li strong { color: var(--ink); }

.rule-alert {
  gap: 8px;
  background: #fef3f1;
  border: 1px solid rgba(163, 72, 59, .2);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.rule-alert i { margin-top: 2px; flex-shrink: 0; }

/* ── Footer CTA ── */
.footer-cta {
  margin: 90px 0 16px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(215, 167, 95, .22), transparent 50%),
    linear-gradient(135deg, #0a2e2d, #0f5f5c);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 30px 70px rgba(16, 59, 58, .28);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: -40% -10% -40% auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(215, 167, 95, .14);
  filter: blur(2px);
  pointer-events: none;
}

.footer-cta h2 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 54px); line-height: .96; letter-spacing: -.055em; }
.footer-cta p { margin: 0; color: rgba(255, 255, 255, .75); max-width: 580px; font-size: 17px; line-height: 1.6; }
.footer-cta .button { flex-shrink: 0; background: var(--white); color: var(--brand-3); font-weight: 800; padding: 0 28px; }

.bottom-note { text-align: center; color: var(--muted); font-size: 13px; padding: 20px 0 32px; }

/* ── Language selector ── */
.lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--white);
  font-size: .88rem;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(22, 33, 31, .06);
  font-weight: 900;
}

.lang-pill select {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  max-width: 110px;
  appearance: none;
  -webkit-appearance: none;
}

/* ── Google Translate suppression ── */
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ── Responsive: tablet ── */
@media (max-width: 920px) {
  .hero,
  .split,
  .parking-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; }

  .checklist,
  .details-grid,
  .rules-grid { grid-template-columns: repeat(2, 1fr); }

  .step { grid-template-columns: 70px minmax(0, 1fr); }
  .step .mini-photo { grid-column: 1 / -1; }

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

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

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}

/* ── Responsive: mobile ── */
@media (max-width: 620px) {
  .page-shell { padding: 12px; }

  .topbar {
    border-radius: 22px;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-hamburger { display: flex; }

  .topbar-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
  }

  .topbar.open .topbar-actions { display: flex; }

  .topbar-actions .button,
  .topbar-actions .lang-pill { width: 100%; }
  .topbar-actions .button.gold { display: inline-flex; }

  .quick-grid,
  .checklist,
  .details-grid,
  .rules-grid,
  .photo-stack { grid-template-columns: 1fr; }

  .photo-box.large { grid-column: auto; }

  .hero-card,
  .side-panel { border-radius: 24px; }

  .hero-actions .button { width: 100%; }

  .section-head { display: block; }

  .step { grid-template-columns: 1fr; }
  .step-num { width: 58px; height: 58px; border-radius: 19px; font-size: 22px; }
}

/* ── Wi-Fi modal ── */
.wifi-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 33, 31, .55);
  backdrop-filter: blur(6px);
  opacity: 1;
  transition: opacity .35s ease;
}

.wifi-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.wifi-modal {
  width: min(100%, 420px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(16, 59, 58, .28);
  padding: 36px 32px 28px;
  text-align: center;
  transform: translateY(0);
  transition: transform .35s ease;
}

.wifi-overlay.hidden .wifi-modal {
  transform: translateY(24px);
}

.wifi-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 20px;
  box-shadow: 0 14px 28px rgba(15, 95, 92, .28);
}

.wifi-modal h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -.04em;
  color: var(--ink);
}

.wifi-modal p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

.wifi-credentials {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  text-align: left;
}

.wifi-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
}

.wifi-field + .wifi-field {
  border-top: 1px solid var(--line);
}

.wifi-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.wifi-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  color: var(--ink);
  font-size: 14px;
  word-break: break-all;
}

.wifi-pass-hidden {
  filter: blur(5px);
  user-select: none;
  transition: filter .25s;
}

.wifi-pass-hidden.visible {
  filter: none;
  user-select: text;
}

.wifi-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.wifi-toggle:hover { color: var(--brand); }

.wifi-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wifi-connect-btn {
  width: 100%;
  font-size: 15px;
  min-height: 48px;
}

.wifi-skip-btn {
  width: 100%;
  min-height: 44px;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  box-shadow: none;
  font-size: 14px;
}

.wifi-skip-btn:hover { color: var(--ink); }

/* ── Support modal ── */
.support-modal { text-align: center; }

.support-modal-icon {
  background: linear-gradient(135deg, #1a4a8a, #2563eb);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .28);
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.support-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 33, 31, .12);
}

.support-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.support-btn-text {
  flex: 1;
  text-align: left;
}

.support-btn-text strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.support-btn-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.support-btn-arrow {
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
}

.support-btn--owner {
  background: #edf7f5;
  border-color: rgba(15, 95, 92, .2);
}
.support-btn--owner .support-btn-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
}

.support-btn--police {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, .2);
}
.support-btn--police .support-btn-icon {
  background: linear-gradient(135deg, #1a4a8a, #2563eb);
}

.support-btn--fire {
  background: #fff5f0;
  border-color: rgba(220, 80, 30, .2);
}
.support-btn--fire .support-btn-icon {
  background: linear-gradient(135deg, #b93a10, #ea580c);
}
