/* ============================================================
   Nyumbanet — Premium overrides for the Vue SPA
   Deep Blue + Gold. Loaded AFTER app.css so these rules win.
   Non-destructive: only restyles existing classes.
   ============================================================ */

/* Palette: ONFIVEE sky-blue (navy-* = primary blues, gold-* = blue accents) */
:root {
  --pm-navy-900: #0b1f3a;
  --pm-navy-800: #1f63c2;
  --pm-navy-700: #2f7fd8;
  --pm-navy-600: #4a95e6;
  --pm-gold-500: #2f7fd8;
  --pm-gold-400: #5aa2ec;
  --pm-gold-300: #dbeafe;
  --pm-ink: #0b1f3a;
  --pm-muted: #5b6b82;
  --pm-line: #dde8f6;
  --pm-bg: #f3f8ff;
}

/* ============== CONTACT / AGENT FORMS ============== */
.contact-container {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 3rem;
  background: #ffffff !important;
  border: 1px solid var(--pm-line);
  border-radius: 20px;
  padding: 2.5rem 2.25rem 2.25rem;
  box-shadow: 0 24px 60px -24px rgba(10, 37, 64, 0.30);
  overflow: hidden;
}
/* gold top accent bar */
.contact-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pm-gold-300), var(--pm-gold-500), var(--pm-navy-700));
}

.contact-container__title {
  font-family: "Plus Jakarta Sans", "Quicksand", sans-serif;
  font-weight: 800 !important;
  font-size: 1.85rem !important;
  color: var(--pm-ink) !important;
  text-shadow: none !important;
  text-align: center;
  margin-top: 0.4rem;
}
.contact-container__para {
  color: var(--pm-muted) !important;
  font-size: 1rem !important;
  text-align: center;
  max-width: 520px;
  margin: 0.5rem auto 2rem;
  line-height: 1.6;
}

/* The forms carry .text-white from markup — restyle for the light card */
.contact-container .application-form {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.contact-container .application-form label {
  color: var(--pm-navy-800);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  text-transform: capitalize;
}
.contact-container .application-form .form-group { margin-bottom: 1.1rem; }

/* Inputs / selects / textarea
   NOTE: the global theme paints these grey with !important, so we must
   override with !important + explicit element selectors to win. */
.contact-container .application-form input.form-control,
.contact-container .application-form select.form-control,
.contact-container .application-form textarea.form-control,
.contact-container .application-form .form-control {
  height: 52px;
  border: 1.5px solid var(--pm-line) !important;
  border-radius: 12px !important;
  padding: 0 16px;
  font-size: 15px;
  color: var(--pm-ink) !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  opacity: 1 !important;
  transition: border-color .2s, box-shadow .2s;
}
.contact-container .application-form textarea.form-control {
  height: auto;
  padding: 14px 16px;
  min-height: 120px;
}
.contact-container .application-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239aa6b6' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px;
}
.contact-container .application-form .form-control:focus {
  border-color: var(--pm-navy-700) !important;
  box-shadow: 0 0 0 4px rgba(14, 51, 84, 0.10) !important;
  background-color: #ffffff !important;
  color: var(--pm-ink) !important;
}
.contact-container .application-form .form-control::placeholder { color: #aab3c0; }
.contact-container .application-form .form-control:-webkit-autofill,
.contact-container .application-form .form-control:-webkit-autofill:hover,
.contact-container .application-form .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--pm-ink) !important;
  transition: background-color 99999s ease-in-out 0s;
}

/* Submit button -> premium navy gradient */
.contact-container .application-form .btn-primary,
.contact-container .application-form button.btn {
  height: 52px;
  min-width: 180px;
  border: 0 !important;
  border-radius: 12px !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: .3px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800)) !important;
  box-shadow: 0 14px 30px -12px rgba(10, 37, 64, 0.6);
  transition: transform .15s, filter .2s;
}
.contact-container .application-form .btn-primary:hover,
.contact-container .application-form button.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.contact-container .application-form button.btn:disabled {
  filter: grayscale(.4) brightness(.9);
  cursor: not-allowed;
}

/* Photo upload (agent page) */
.contact-container .application-form label.btn-outline-primary {
  width: auto !important;
  border: 1.5px dashed var(--pm-gold-500) !important;
  color: var(--pm-navy-800) !important;
  background: rgba(201, 162, 75, 0.08);
  border-radius: 12px;
  height: auto;
  padding: 12px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s;
}
.contact-container .application-form label.btn-outline-primary:hover {
  background: rgba(201, 162, 75, 0.16);
  border-color: var(--pm-gold-400) !important;
}
.contact-container .image-container {
  height: 130px;
  border: 1px solid var(--pm-line);
  border-radius: 14px;
  box-shadow: none;
}
.contact-container .image-container img { object-fit: cover; }

/* terms checkbox row */
.contact-container .application-form #terms { width: 16px; height: 16px; accent-color: var(--pm-navy-800); vertical-align: -2px; margin-right: 6px; }

/* commission hint */
.contact-container .application-form span strong { color: var(--pm-gold-500); }

/* ============================================================
   HOME PAGE — hero search + sections + premium property cards
   ============================================================ */

/* ----- Hero / search container ----- */
.landing-wrapper { padding-top: 1.5rem; }

.search_container {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
  border: 1px solid var(--pm-line);
  border-radius: 24px !important;
  padding: 2.5rem 1.5rem 2.75rem !important;
  box-shadow: 0 30px 70px -30px rgba(10, 37, 64, 0.30) !important;
  max-width: 1000px;
  margin: 0 auto 1rem;
}
.search_container section.p-0.mt-5 { margin-top: 0 !important; }

/* The big NYUMBANET title on the landing + section tagline */
.landing-wrapper > section .search_container__title {
  font-family: "Plus Jakarta Sans", "Quicksand", sans-serif !important;
  font-weight: 800 !important;
  color: var(--pm-ink) !important;
  letter-spacing: .5px;
}
.landing-wrapper > section .search_container__title b { color: var(--pm-navy-700); }

.search_container .search_container__title {
  color: var(--pm-muted) !important;
  font-weight: 600 !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.search_container .search_container__title .fa-laptop-house { color: var(--pm-gold-500); }

/* ----- Simple search bar (input + button as premium pills) ----- */
.search_container form.form-row { padding: 0 1rem 0.5rem !important; }
.search_container .form-row .form-group { margin-bottom: 0; }

.search_container .form-control {
  height: 48px;
  min-width: 340px;
  border: 1.5px solid var(--pm-line) !important;
  border-radius: 999px !important;
  padding: 0 22px !important;
  font-size: 15px;
  color: var(--pm-ink) !important;
  background-color: #fff !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: border-color .2s, box-shadow .2s;
}
.search_container .form-control:focus {
  border-color: var(--pm-navy-700) !important;
  box-shadow: 0 0 0 4px rgba(14, 51, 84, 0.10) !important;
}
.search_container .btn-group .btn-primary {
  height: 48px !important;
  border-radius: 999px !important;
  padding: 0 22px !important;
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800)) !important;
  border: 0 !important;
  box-shadow: 0 12px 26px -12px rgba(10,37,64,0.6);
  transition: transform .15s, filter .2s;
}
.search_container .btn-group .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.search_container .btn-group .btn-primary .fa-search { color: var(--pm-gold-300) !important; }

/* ----- Advanced search toggle ----- */
.search_container > section > div .text-center .btn-primary {
  background: transparent !important;
  color: var(--pm-navy-800) !important;
  border: 1.5px solid var(--pm-navy-700) !important;
  border-radius: 999px !important;
  padding: 7px 18px !important;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: none !important;
  transition: background .2s, color .2s;
}
.search_container > section > div .text-center .btn-primary:hover {
  background: var(--pm-navy-800) !important;
  color: #fff !important;
}

/* ----- Advanced search panel ----- */
.search_container .border.rounded.p-4 {
  border: 1px solid var(--pm-line) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 18px 44px -24px rgba(10,37,64,0.25);
  padding: 1.5rem 1.5rem 1.75rem !important;
}
.search_container .border.rounded.p-4 .search_container__title {
  color: var(--pm-ink) !important;
  font-weight: 800 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
.search_container .border.rounded.p-4 label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--pm-navy-700);
  margin-bottom: 6px;
  text-align: left;
}
.search_container .border.rounded.p-4 .form-group { margin: 0 8px 12px; text-align: left; }
.search_container .border.rounded.p-4 select.form-control,
.search_container .border.rounded.p-4 input.form-control {
  min-width: 170px;
  height: 44px !important;
  font-size: 14px;
  border-radius: 11px !important;
}
.search_container .border.rounded.p-4 select.form-control {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239aa6b6' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
}
.search_container .border.rounded.p-4 .btn-primary {
  background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800)) !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 9px 26px !important;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 26px -12px rgba(10,37,64,0.6);
}
.search_container .border.rounded.p-4 .btn-primary .fa-search { color: var(--pm-gold-300) !important; }
.search_container .border.rounded.p-4 .btn-danger {
  border-radius: 999px !important;
  background: #fff !important;
  color: #d64545 !important;
  border: 1.5px solid #f1c9c9 !important;
  font-weight: 600;
}
.search_container .border.rounded.p-4 .btn-danger:hover { background: #fdecec !important; }

/* ----- Section titles ----- */
.home-listings { padding: 2.25rem 0.5rem 0.5rem !important; }
.home-listings__title {
  position: relative;
  font-family: "Plus Jakarta Sans", "Quicksand", sans-serif !important;
  font-size: 1.9rem !important;
  font-weight: 800 !important;
  color: var(--pm-ink) !important;
  line-height: 1.2 !important;
  padding-bottom: 12px;
  margin-bottom: 1.25rem;
}
.home-listings__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pm-gold-400), var(--pm-gold-500));
}

/* ----- Property cards ----- */
.listing-list { gap: 1.5rem !important; }

/* Home sections -> single sliding row (horizontal scroll, page stays short) */
.landing-wrapper .listing-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  grid-template-columns: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 1.25rem !important;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.landing-wrapper .listing-list__item {
  flex: 0 0 270px;
  max-width: 270px;
  scroll-snap-align: start;
}
/* premium thin scrollbar */
.landing-wrapper .listing-list { scrollbar-width: thin; scrollbar-color: var(--pm-gold-500) #eef2f7; }
.landing-wrapper .listing-list::-webkit-scrollbar { height: 8px; }
.landing-wrapper .listing-list::-webkit-scrollbar-track { background: #eef2f7; border-radius: 999px; }
.landing-wrapper .listing-list::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--pm-gold-400), var(--pm-gold-500));
  border-radius: 999px;
}
@media (max-width: 600px) {
  .landing-wrapper .listing-list__item { flex: 0 0 80%; max-width: 80%; }
}

.house-container {
  height: 320px !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px -18px rgba(10, 37, 64, 0.45) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.house-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -20px rgba(10, 37, 64, 0.55) !important;
}
.house-container .house-img { border-radius: 18px; }

/* collapsed state: gradient bar with gold price */
.house-container .house-desc {
  top: 78% !important;
  background: linear-gradient(180deg, rgba(7,24,43,0) 0%, rgba(7,24,43,0.55) 18%, rgba(7,24,43,0.92) 55%) !important;
  padding: 0 1.25rem 1.25rem !important;
  backdrop-filter: none;
}
.house-container:hover .house-desc {
  top: 0% !important;
  background: linear-gradient(180deg, rgba(7,24,43,0.86) 0%, rgba(10,37,64,0.92) 100%) !important;
  backdrop-filter: blur(2px);
  justify-content: center !important;
  padding-top: 1.25rem !important;
}
.house-container .house-desc h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.15rem !important;
  color: var(--pm-gold-300) !important;
  background: transparent !important;
  margin: 0 0 0.25rem !important;
  align-self: stretch;
  text-align: left;
}
.house-container:hover .house-desc h5 {
  text-align: center;
  font-size: 1.35rem !important;
}
.house-container .house-desc .house-desc_content {
  border: 1px solid rgba(201, 162, 75, 0.35) !important;
  background: rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease .05s, transform .2s ease .05s;
}
.house-container:hover .house-desc .house-desc_content { opacity: 1; transform: none; }
.house-container .house-desc_content .house-desc_flex em { color: var(--pm-gold-300) !important; font-style: normal; font-weight: 600; }

/* "house detail" button */
.house-container .house-desc .btn-secondary {
  opacity: 0;
  transition: opacity .2s ease .05s, filter .2s, transform .15s;
  background: linear-gradient(135deg, var(--pm-gold-400), var(--pm-gold-500)) !important;
  border: 0 !important;
  color: var(--pm-navy-900) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 9px 22px !important;
  box-shadow: 0 10px 22px -10px rgba(201,162,75,0.8);
}
.house-container:hover .house-desc .btn-secondary { opacity: 1; }
.house-container .house-desc .btn-secondary:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* Advanced search: keep all 4 selects on ONE line on desktop */
@media (min-width: 768px) {
  .search_container .border.rounded.p-4 .d-md-flex {
    flex-wrap: nowrap !important;
    gap: 14px;
    align-items: flex-end;
  }
  .search_container .border.rounded.p-4 .form-group {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
  .search_container .border.rounded.p-4 select.form-control {
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  .search_container .form-control { min-width: 0; width: 100%; }
  .search_container { padding: 1.75rem 1rem 2rem !important; border-radius: 18px !important; }
  .home-listings__title { font-size: 1.5rem !important; }
}

/* ============================================================
   HOUSE DETAILS PAGE (/house/:id) — world-class layout
   ============================================================ */
#house-details.house-pro {
  background: transparent !important;
  padding: 0 !important;
  display: block !important;
}
.house-pro .hp-wrap { max-width: 1140px; margin: 0 auto; padding: 1.5rem 1rem 3.5rem; }
.house-pro .hp-error { text-align: center; color: var(--pm-ink) !important; padding: 3rem 0; }

/* ----- Gallery ----- */
.house-pro .hp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 1.75rem;
}
.house-pro .hp-gallery__main {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 26px 60px -28px rgba(10,37,64,0.5);
}
.house-pro .hp-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.house-pro .hp-gallery__main:hover img { transform: scale(1.04); }
.house-pro .hp-gallery__badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(7,24,43,0.78); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.house-pro .hp-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.house-pro .hp-thumb {
  position: relative; height: 92px; border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s, transform .2s;
}
.house-pro .hp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.house-pro .hp-thumb:hover { transform: translateY(-2px); }
.house-pro .hp-thumb.active { border-color: var(--pm-gold-500); }
.house-pro .hp-thumb__more {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(7,24,43,0.62); color: #fff; font-weight: 700; font-size: 18px;
}

/* ----- Header ----- */
.house-pro .hp-head { margin-bottom: 1.5rem; }
.house-pro .hp-tag {
  display: inline-block; background: rgba(201,162,75,0.15); color: var(--pm-navy-800);
  border: 1px solid rgba(201,162,75,0.4);
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px;
}
.house-pro .hp-title {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--pm-ink); margin: 0 0 6px;
}
.house-pro .hp-loc { color: var(--pm-muted); font-size: 15px; margin: 0; }
.house-pro .hp-loc i { color: var(--pm-gold-500); margin-right: 6px; }

/* ----- Grid ----- */
.house-pro .hp-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.house-pro .hp-main { display: flex; flex-direction: column; gap: 20px; }

.house-pro .hp-card {
  background: #fff; border: 1px solid var(--pm-line); border-radius: 18px;
  padding: 1.5rem 1.5rem 1.6rem; box-shadow: 0 18px 44px -30px rgba(10,37,64,0.3);
}
.house-pro .hp-card__title {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--pm-ink); margin: 0 0 1.1rem; position: relative; padding-bottom: 10px;
}
.house-pro .hp-card__title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px;
  border-radius: 3px; background: linear-gradient(90deg, var(--pm-gold-400), var(--pm-gold-500));
}

/* spec chips */
.house-pro .hp-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.house-pro .hp-spec {
  display: flex; align-items: center; gap: 14px;
  background: #f7faff; border: 1px solid var(--pm-line); border-radius: 14px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.house-pro .hp-spec:hover { border-color: rgba(201,162,75,0.5); box-shadow: 0 8px 18px -12px rgba(10,37,64,0.25); }
.house-pro .hp-spec > i {
  flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px;
  background: linear-gradient(145deg, var(--pm-navy-700), var(--pm-navy-800)); color: var(--pm-gold-300); font-size: 16px;
}
.house-pro .hp-spec span { display: flex; flex-direction: column; line-height: 1.25; font-weight: 700; color: var(--pm-ink); font-size: 0.98rem; }
.house-pro .hp-spec span em { font-style: normal; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #8a97a8; margin-bottom: 2px; }

.house-pro .hp-desc { color: #475569; font-size: 15px; line-height: 1.7; margin: 0; white-space: pre-line; }

.house-pro .hp-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px;
  background: #f7faff; border: 1px solid var(--pm-line); color: var(--pm-navy-800) !important;
  font-weight: 600; font-size: 14px; margin-bottom: 10px; transition: background .2s, border-color .2s; word-break: break-word;
}
.house-pro .hp-link:last-child { margin-bottom: 0; }
.house-pro .hp-link i { color: var(--pm-gold-500); font-size: 16px; }
.house-pro .hp-link:hover { background: rgba(201,162,75,0.10); border-color: rgba(201,162,75,0.45); }

.house-pro .hp-noreview { color: var(--pm-muted); font-size: 14px; margin: 0 0 1rem; }

/* ----- Booking card (sticky) ----- */
.house-pro .hp-side { position: sticky; top: 88px; }
.house-pro .hp-booking {
  background: #fff; border: 1px solid var(--pm-line); border-radius: 20px; padding: 1.5rem;
  box-shadow: 0 26px 60px -30px rgba(10,37,64,0.4);
}
.house-pro .hp-booking__price { margin-bottom: 1.1rem; }
.house-pro .hp-booking__price small { display: block; color: var(--pm-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; font-weight: 700; }
.house-pro .hp-booking__price strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 2rem; color: var(--pm-ink); font-weight: 800; }
.house-pro .hp-booking__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.house-pro .hp-booking__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--pm-line); font-size: 13px; color: var(--pm-muted);
}
.house-pro .hp-booking__meta i { color: var(--pm-gold-500); margin-right: 5px; }
.house-pro .hp-booking__meta a { color: var(--pm-navy-800) !important; font-weight: 600; }
.house-pro .hp-booking__meta a:hover { color: var(--pm-gold-500) !important; }

/* ----- Buttons ----- */
.house-pro .btn-pro {
  border: 0; border-radius: 12px; padding: 12px 18px; font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif; cursor: pointer; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .15s, filter .2s, background .2s;
}
.house-pro .btn-pro.block { width: 100%; }
.house-pro .btn-pro--navy { background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800)); color: #fff; box-shadow: 0 14px 30px -12px rgba(10,37,64,0.6); }
.house-pro .btn-pro--gold { background: linear-gradient(135deg, var(--pm-gold-400), var(--pm-gold-500)); color: var(--pm-navy-900); box-shadow: 0 12px 26px -12px rgba(201,162,75,0.7); }
.house-pro .btn-pro--ghost { background: #f7faff; border: 1.5px solid var(--pm-line); color: var(--pm-navy-800); }
.house-pro .btn-pro--ghost:hover { background: rgba(201,162,75,0.10); border-color: rgba(201,162,75,0.45); }
.house-pro .btn-pro:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* lightbox overlay wrapper */
.house-pro .hp-lightbox { position: fixed; inset: 0; z-index: 1050; }

/* video modal -> centered popup overlay (like the image lightbox) */
.house-pro .video-modal {
  position: fixed !important;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 24, 43, 0.88);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  animation: hpFade .2s ease;
}
.house-pro .video-wrapper {
  width: 100%;
  max-width: 880px;
  background: #07182b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
}
.house-pro .video-wrapper video { border-radius: 12px; display: block; }
.house-pro .video-wrapper .btn-danger {
  border: 0 !important;
  border-radius: 999px !important;
  padding: 10px 28px !important;
  font-weight: 700;
  background: linear-gradient(135deg, #e05858, #c33b3b) !important;
}
@keyframes hpFade { from { opacity: 0; } to { opacity: 1; } }

/* reviews list tidy */
.house-pro .review__title::after { display: none; }
.house-pro .review .review__title { padding-bottom: 10px; }
.house-pro .review .review__title::after { content: ""; display: block; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--pm-gold-400), var(--pm-gold-500)); }

@media (max-width: 900px) {
  .house-pro .hp-grid { grid-template-columns: 1fr; }
  .house-pro .hp-side { position: static; }
  .house-pro .hp-gallery__main { height: 300px; }
}
@media (max-width: 560px) {
  .house-pro .hp-specs { grid-template-columns: 1fr; }
  .house-pro .hp-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ===== legacy dark theme fallback (old markup, if cached) ===== */
#house-details:not(.house-pro) {
  background: transparent !important;
  padding: 1.5rem 1rem 3rem !important;
}
/* the main details card */
#house-details aside.shadow {
  background: #ffffff !important;
  border: 1px solid var(--pm-line);
  border-radius: 22px !important;
  box-shadow: 0 30px 70px -30px rgba(10,37,64,0.30) !important;
  padding: 2.25rem 1.75rem !important;
}
/* force readable text (markup uses .text-light everywhere) */
#house-details .text-light,
#house-details aside,
#house-details h3,
#house-details h5,
#house-details h6 { color: var(--pm-ink) !important; }

/* page title */
#house-details h3 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 800 !important;
  color: var(--pm-ink) !important;
  margin-bottom: 1.5rem !important;
}
#house-details h3 .fa-laptop-house { color: var(--pm-gold-500); }

/* spec boxes */
#house-details .border {
  border: 1px solid var(--pm-line) !important;
  border-radius: 14px !important;
  background: #f7faff !important;
  padding: 0.85rem 1.1rem !important;
  text-align: left !important;
  transition: border-color .2s, box-shadow .2s;
}
#house-details .border:hover {
  border-color: rgba(201,162,75,0.5) !important;
  box-shadow: 0 8px 20px -12px rgba(10,37,64,0.25);
}
#house-details .border h5.text-muted {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700 !important;
  color: #8a97a8 !important;
  margin-bottom: 0.25rem;
}
#house-details .border > div {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pm-ink) !important;
}

/* yellow inline links -> readable gold/navy */
#house-details a[style*="yellow"] { color: var(--pm-navy-700) !important; font-weight: 600; word-break: break-word; }
#house-details a[style*="yellow"]:hover { color: var(--pm-gold-500) !important; }
#house-details .c-color-blue { color: var(--pm-gold-500) !important; }

/* action buttons */
#house-details .btn-secondary {
  background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 24px !important;
  font-weight: 700;
  box-shadow: 0 12px 26px -12px rgba(10,37,64,0.6);
}
#house-details .btn-outline-warning {
  border: 1.5px solid var(--pm-gold-500) !important;
  color: var(--pm-navy-800) !important;
  background: rgba(201,162,75,0.08) !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  font-weight: 600;
}
#house-details .btn-outline-warning:hover { background: rgba(201,162,75,0.18) !important; }

/* views / location bar */
#house-details h6.border-right { border-right: 1px solid var(--pm-line) !important; }

/* description */
#house-details .lead { font-weight: 800 !important; color: var(--pm-ink) !important; font-family: "Plus Jakarta Sans", sans-serif; }

/* reviews block (the blue box area) -> premium card */
#house-details .review {
  background: #ffffff !important;
  border: 1px solid var(--pm-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 44px -26px rgba(10,37,64,0.25);
  padding: 1.5rem !important;
  margin-top: 1.5rem;
}
#house-details .review__title { color: var(--pm-ink) !important; font-weight: 800 !important; font-family: "Plus Jakarta Sans", sans-serif; }
#house-details .review .btn-primary {
  background: linear-gradient(135deg, var(--pm-gold-400), var(--pm-gold-500)) !important;
  border: 0 !important;
  color: var(--pm-navy-900) !important;
  border-radius: 999px !important;
  padding: 10px 24px !important;
  font-weight: 700;
  box-shadow: 0 10px 22px -10px rgba(201,162,75,0.7);
}

/* ============================================================
   HOME: image FILLS the whole search card, text sits on top
   ============================================================ */
.landing-wrapper .search_container {
  position: relative;
  overflow: hidden;
  /* photo stays clear: only a light shade at the top so the tagline reads */
  background-image:
    linear-gradient(180deg, rgba(11,31,58,0.42) 0%, rgba(11,31,58,0.12) 38%, rgba(11,31,58,0) 60%),
    url('/images/hero.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  padding: 3rem 1.5rem 3.25rem !important;
}
.landing-wrapper .search_container > section { position: relative; z-index: 2; }

/* tagline -> white & bold so it reads from afar on the photo */
.landing-wrapper .search_container .search_container__title {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 18px rgba(0,0,0,0.45);
}
.landing-wrapper .search_container .search_container__title .fa-laptop-house { color: var(--pm-gold-300) !important; }

/* Advanced Search toggle -> readable glass button on the dark photo */
.search_container > section > div .text-center .btn-primary {
  background: rgba(255,255,255,0.14) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.search_container > section > div .text-center .btn-primary:hover {
  background: #ffffff !important;
  color: var(--pm-navy-800) !important;
  border-color: #fff !important;
}

@media (max-width: 600px) {
  .landing-wrapper .search_container { padding: 2.25rem 1rem 2.5rem !important; }
}

/* ============================================================
   ADMIN DASHBOARD — Realtors (and shared admin tables)
   ============================================================ */
.reators-card { cursor: pointer; transition: transform .2s, box-shadow .2s; }
.reators-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(229, 62, 90, 0.6); }
.reators-card__hint { display: inline-block; opacity: .85; font-size: 11px; margin-top: 4px; }
.reators-card__hint::before { content: "\f0a4"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 5px; }

.admin-page { padding: 0 0.5rem; }
.adm-panel {
  background: #fff;
  border: 1px solid var(--pm-line);
  border-radius: 18px;
  box-shadow: 0 20px 50px -28px rgba(10,37,64,0.3);
  padding: 1.5rem;
  margin: 1.25rem 1rem 2.5rem;
}
.adm-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 1.25rem; flex-wrap: wrap; }
.adm-panel__title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--pm-ink); margin: 0; }
.adm-panel__sub { color: var(--pm-muted); font-size: 14px; margin: 2px 0 0; }

.adm-btn {
  border: 0; border-radius: 999px; padding: 10px 22px; font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; cursor: pointer;
  color: #fff; background: linear-gradient(135deg, var(--pm-navy-700), var(--pm-navy-800));
  box-shadow: 0 12px 26px -12px rgba(10,37,64,0.6); display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, filter .2s;
}
.adm-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* search */
.adm-search { position: relative; max-width: 420px; margin-bottom: 1.1rem; }
.adm-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #9aa6b6; }
.adm-search input {
  width: 100%; height: 46px; border: 1.5px solid var(--pm-line); border-radius: 12px;
  padding: 0 16px 0 42px; font-size: 14px; color: var(--pm-ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.adm-search input:focus { outline: 0; border-color: var(--pm-navy-700); box-shadow: 0 0 0 4px rgba(14,51,84,0.10); }

/* table */
.adm-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--pm-line); }
.adm-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.adm-table thead th {
  background: var(--pm-navy-800); color: #fff; font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px;
  padding: 14px 16px; text-align: left; white-space: nowrap;
}
.adm-table thead th:first-child { border-top-left-radius: 0; }
.adm-table tbody td { padding: 13px 16px; color: var(--pm-ink); border-bottom: 1px solid #eef2f7; vertical-align: middle; }
.adm-table tbody tr:nth-child(even) { background: #f7faff; }
.adm-table tbody tr:hover { background: rgba(201,162,75,0.08); }
.adm-table tbody tr:last-child td { border-bottom: 0; }
.adm-table .adm-email { color: var(--pm-navy-700); }

.adm-empty { text-align: center; color: var(--pm-muted); padding: 1.5rem; margin: 0; }

/* hint when list is hidden */
.adm-hint {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: #f7faff; border: 1px dashed var(--pm-line); border-radius: 14px;
  padding: 1.5rem; color: var(--pm-muted); font-size: 15px; text-align: center;
}
.adm-hint i { color: var(--pm-gold-500); font-size: 20px; }
.adm-hint b { color: var(--pm-navy-800); }

@media (max-width: 600px) {
  .adm-panel { margin: 1rem 0.5rem 2rem; padding: 1.1rem; }
}

/* ============== NAVBAR: Login link + Register button + menu ============== */
.nav-login {
  font-weight: 600;
  letter-spacing: .2px;
  border-radius: 10px;
  padding: 8px 16px !important;
  transition: color .2s, background .2s;
}
.nav-login:hover { color: var(--pm-gold-300) !important; background: rgba(255,255,255,0.08); }

.btn-register {
  display: inline-flex !important;
  align-items: center;
  font-weight: 700 !important;
  color: var(--pm-navy-900) !important;
  background: linear-gradient(135deg, var(--pm-gold-300), var(--pm-gold-500)) !important;
  border-radius: 10px;
  padding: 8px 18px !important;
  margin-left: 6px;
  box-shadow: 0 8px 20px -8px rgba(201,162,75,0.7);
  transition: transform .15s, filter .2s;
}
.btn-register:hover { transform: translateY(-1px); filter: brightness(1.06); color: var(--pm-navy-900) !important; }
.btn-register .fa-angle-down { font-size: 12px; opacity: .8; }

/* Register dropdown */
.register-menu {
  border: 0;
  border-radius: 16px;
  padding: 10px;
  min-width: 290px;
  margin-top: 12px;
  box-shadow: 0 24px 60px -18px rgba(10,37,64,0.45);
}
.register-menu__head {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa6b6;
  font-weight: 700;
  padding: 6px 12px 8px;
  margin: 0;
}
.register-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  white-space: normal;
  transition: background .18s;
}
.register-menu .dropdown-item:hover { background: rgba(201,162,75,0.10); }
.register-menu .dropdown-item:active { background: rgba(201,162,75,0.16); color: inherit; }
.register-menu .dropdown-item > i {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--pm-navy-700), var(--pm-navy-800));
  color: var(--pm-gold-300);
  font-size: 16px;
}
.register-menu .dropdown-item span { display: flex; flex-direction: column; line-height: 1.25; }
.register-menu .dropdown-item span b { color: var(--pm-ink); font-weight: 700; font-size: 14px; }
.register-menu .dropdown-item span small { color: var(--pm-muted); font-size: 12px; }

/* Shorten the cramped "Country Code..." label on /contact/user -> "C-Code" */
.contact-container .application-form label[for="codes"] {
  white-space: nowrap;
  font-size: 0;
}
.contact-container .application-form label[for="codes"]::after {
  content: "C-Code";
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .contact-container { padding: 1.75rem 1.25rem; margin: 1.25rem 0.5rem 2rem; border-radius: 16px; }
  .contact-container__title { font-size: 1.45rem !important; }
}

/* ============================================================
   ONFIVEE LOOK — sky-blue navbar, light page, white cards
   ============================================================ */
body { background: linear-gradient(180deg, #eaf3ff 0, var(--pm-bg) 380px, #ffffff 100%) fixed !important; }
#navbar { background: linear-gradient(90deg, #2a74d0, #3d8fe6) !important; border-bottom: 0 !important; box-shadow: 0 6px 24px -12px rgba(31,99,194,.55) !important; }

/* remove the thin box line around the home page */
.landing-wrapper { border: 0 !important; }
.landing-wrapper::before, .landing-wrapper::after { display: none !important; }

/* Register -> white pill like "Sign Up Free" */
.btn-register { background: #fff !important; color: var(--pm-navy-800) !important; box-shadow: 0 8px 20px -10px rgba(11,31,58,.45); }
.btn-register:hover { color: var(--pm-navy-800) !important; }
.nav-login:hover { color: #fff !important; background: rgba(255,255,255,.14); }

/* blue buttons need white text (they were gold) */
.house-container .house-desc .btn-secondary,
.house-pro .btn-pro--gold,
#house-details .review .btn-primary { color: #fff !important; }

/* hover tints: gold -> blue */
.register-menu .dropdown-item:hover,
.adm-table tbody tr:hover,
.house-pro .hp-link:hover,
.house-pro .btn-pro--ghost:hover { background: #eaf3ff !important; }
.house-container .house-desc .house-desc_content { border-color: rgba(219,234,254,.35) !important; }
.house-container .house-desc h5 { color: #fff !important; }

/* ---- home rows: endless right-to-left slide ---- */
.landing-wrapper .listing-list--marquee {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  scrollbar-width: none;
}
.landing-wrapper .listing-list--marquee::-webkit-scrollbar { display: none; }

/* ---- footer ---- */
.site-footer { background: linear-gradient(135deg, #0f2d52, #133e6e); color: #cfe0f7; text-align: center; padding: 1.6rem 1rem 1.2rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin-bottom: .6rem; }
.site-footer a { color: #fff !important; font-weight: 600; font-size: 14px; }
.site-footer a:hover { color: #9cc8ff !important; text-decoration: none; }
.site-footer p { margin: 0; font-size: 13px; opacity: .8; }

/* ---- free package / subscription card (dashboard > Payment) ---- */
.plan-card { background: #fff; color: var(--pm-ink); border: 1px solid var(--pm-line); border-radius: 18px; padding: 1.4rem 1.5rem; margin: 1rem 0 1.5rem; box-shadow: 0 20px 50px -28px rgba(31,99,194,.35); }
.plan-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.plan-card__badge { background: #eaf3ff; color: var(--pm-navy-800); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; padding: 5px 12px; border-radius: 999px; }
.plan-card__state { font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 999px; }
.plan-card__state.on { background: #dcfce7; color: #15803d; }
.plan-card__state.off { background: #fee2e2; color: #b91c1c; }
.plan-card__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.plan-card__stats > div { background: var(--pm-bg); border-radius: 14px; padding: 14px 16px; }
.plan-card__stats strong { display: block; font: 800 1.9rem "Plus Jakarta Sans", sans-serif; color: var(--pm-navy-800); }
.plan-card__stats small { color: var(--pm-muted); font-size: 13px; }
.plan-card__bar { height: 8px; background: #dbeafe; border-radius: 99px; margin-top: 10px; overflow: hidden; }
.plan-card__bar i { display: block; height: 100%; background: linear-gradient(90deg, #2f7fd8, #5aa2ec); border-radius: 99px; }
.plan-card__note { margin: 1rem 0 0; color: var(--pm-muted); font-size: 14px; line-height: 1.6; }

/* ---- admin audit trail extras ---- */
.adm-select { width: 100%; height: 46px; border: 1.5px solid var(--pm-line); border-radius: 12px; padding: 0 12px 0 42px; font-size: 14px; color: var(--pm-ink); background: #fff; }
.adm-chip { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 999px; background: #eaf3ff; color: var(--pm-navy-800); font-weight: 600; }
.adm-chip i { cursor: pointer; }
.adm-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 6px; background: #eef2f7; color: #475569; margin-right: 6px; }
.adm-tag.good { background: #dcfce7; color: #15803d; }
.adm-tag.bad { background: #fee2e2; color: #b91c1c; }
.adm-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---- Terms & Privacy page ---- */
.legal { max-width: 900px; margin: 0 auto; padding: 1rem 1rem 3rem; color: var(--pm-ink); }
.legal__hero { text-align: center; padding: 2rem 0 1.5rem; }
.legal__pill { display: inline-block; background: var(--pm-navy-700); color: #fff; font-weight: 700; font-size: 12px; padding: 4px 14px; border-radius: 999px; }
.legal__hero h1 { font: 800 clamp(1.8rem, 4vw, 2.6rem) "Plus Jakarta Sans", sans-serif; margin: .8rem 0 .4rem; }
.legal__hero p { color: var(--pm-muted); margin: 0; }
.legal__toc { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 1.3rem; }
.legal__toc a { padding: 7px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--pm-line); color: var(--pm-navy-800) !important; font-weight: 600; font-size: 14px; }
.legal__toc a:hover { background: #eaf3ff; text-decoration: none; }
.legal__card { background: #fff; border: 1px solid var(--pm-line); border-radius: 18px; padding: 1.6rem 1.8rem; margin-bottom: 1.2rem; box-shadow: 0 18px 44px -32px rgba(31,99,194,.4); scroll-margin-top: 90px; }
.legal__card h2 { font: 800 1.35rem "Plus Jakarta Sans", sans-serif; margin: 0 0 .9rem; }
.legal__card h3 { font: 700 1rem "Plus Jakarta Sans", sans-serif; margin: 1.1rem 0 .4rem; color: var(--pm-navy-800); }
.legal__card p, .legal__card li { color: #3b4a5e; font-size: 15px; line-height: 1.7; }
.legal__card ul { padding-left: 1.2rem; margin: 0; }
.legal__card a { color: var(--pm-navy-700); font-weight: 600; }
.legal__copy { margin-top: 1rem; font-size: 13px !important; color: var(--pm-muted) !important; }

/* ---- house page: video capture thumbnail ---- */
.house-pro .hp-thumb--video { background: #0b1f3a; }
.house-pro .hp-thumb--video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.house-pro .hp-thumb__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--pm-navy-800); font-size: 14px; padding-left: 3px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.5); transition: transform .2s;
}
.house-pro .hp-thumb--video:hover .hp-thumb__play { transform: translate(-50%, -50%) scale(1.12); }
.house-pro .hp-thumb__label {
  position: absolute; left: 8px; bottom: 6px; font-size: 11px; font-weight: 700; color: #fff;
  background: rgba(11,31,58,.7); padding: 2px 8px; border-radius: 999px;
}

/* hero photo as wide as the listing rows below */
.landing-wrapper .search_container { max-width: none !important; width: 100%; padding: 3.6rem 1.5rem 3.8rem !important; }

.legal__card ul { list-style: disc !important; } .legal__card li { display: list-item !important; }

/* ---- admin: clickable cards, subscription flow ---- */
.reators-card.active { outline: 3px solid rgba(255,255,255,.85); outline-offset: -6px; transform: translateY(-4px); }
.adm-thumb { width: 56px; height: 42px; object-fit: cover; border-radius: 8px; }
.adm-link { font-weight: 700; color: var(--pm-navy-700) !important; }
.adm-tag.warn { background: #fef3c7; color: #b45309; }
.adm-btn--sm { padding: 6px 14px; font-size: 12.5px; }
.sub-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin: 1.25rem 1rem 0; }
.sub-stat { background: #fff; border: 1.5px solid var(--pm-line); border-radius: 16px; padding: 14px 18px; cursor: pointer; transition: border-color .2s, transform .2s; }
.sub-stat:hover { transform: translateY(-2px); }
.sub-stat.active { border-color: var(--pm-navy-700); box-shadow: 0 12px 28px -16px rgba(31,99,194,.6); }
.sub-stat strong { display: block; font: 800 1.7rem "Plus Jakarta Sans", sans-serif; color: var(--pm-navy-800); }
.sub-stat span { color: var(--pm-muted); font-size: 13px; font-weight: 600; }
.sub-packages { display: flex; flex-wrap: wrap; gap: 12px; }
.sub-package { flex: 1 1 140px; background: var(--pm-bg); border: 1px solid var(--pm-line); border-radius: 14px; padding: 12px 16px; color: var(--pm-ink); }
.sub-package small { display: block; color: var(--pm-muted); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .5px; }
.sub-package b { font: 800 1.25rem "Plus Jakarta Sans", sans-serif; color: var(--pm-navy-800); }
.sub-package span { display: block; font-size: 12px; color: var(--pm-muted); }
.sub-package--free { background: #dcfce7; border-color: #bbf7d0; }
.sub-package--free b { color: #15803d; }

/* profile: two-factor switch */
.twofa-box { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 1.25rem; padding: 14px 16px; border-radius: 14px; background: #eaf3ff; color: var(--pm-ink); }
.twofa-box small { display: block; color: var(--pm-muted); }
.twofa-switch { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 700; color: var(--pm-navy-800); white-space: nowrap; }
.twofa-switch input { width: 18px; height: 18px; accent-color: var(--pm-navy-700); }
.video-check { margin-top: 8px; font-size: 13px; font-weight: 600; color: #15803d; } .video-check--bad { color: #dc2626; } .video-preview { display: block; margin-top: 10px; max-width: 320px; width: 100%; border-radius: 12px; background: #000; }
