  :root {
      --navy: #1a2b5e;
      --red: #8b0000;
      --gold: #8b0000;
      --dark: #0d1528;

      --navy-mid: #223472;
      --navy-dark: #111d40;
      --navy-light: #eef0f7;
      --red-hover: #6e0000;
      --text: #2a334f;
      --muted: #697089;
      --muted2: #9fa8c0;
      --bg: #f2f4f9;
      --surface: #ffffff;
      --border: #dde1ed;
      --border-dark: #c8cde0;
  }

  *,
  *::before,
  *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html,
  body {
      overflow-x: hidden;
  }

  body {
      font-family: 'Segoe UI', sans-serif;
  }

  /* header start css */
  /* ══════════════════════════════════════════
           HEADER
        ══════════════════════════════════════════ */
  #siteHeader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      width: 100%;
  }

  /* ── TOPBAR ── */
  #topbar {
      background: var(--dark);
      overflow: hidden;
      height: 44px;
      will-change: height;
      transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #topbar.hide {
      height: 0;
  }

  .tb-wrap {
      display: flex;
      height: 44px;
      align-items: stretch;
  }

  .tb-left {
      background: #fff;
      flex: 1;
      clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 100%, 0 100%);
      max-width: calc(100% - 600px);
      /* ✅ শুধু এই লাইন add করো */
  }

  .tb-right {
      background: var(--dark);
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 180px 0 44px;
      flex-shrink: 0;
  }

  .tb-right a {
      color: #b8c8e0;
      font-size: 12.5px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: color .2s;
  }

  .tb-right a:hover {
      color: #fff;
  }

  .tb-right a i {
      color: #fff;
      font-size: 11px;
  }

  .tb-div {
      width: 1px;
      height: 16px;
      background: rgba(255, 255, 255, .2);
      flex-shrink: 0;
  }

  .tb-social {
      display: flex;
      gap: 8px;
  }

  .tb-social a {
      width: 24px;
      height: 24px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      gap: 0;
  }

  .tb-social a:hover {
      border-color: #fff;
      color: var(--dark) !important;
  }

  /* ── NAVBAR ── */
  #mainNav {
      background: #fff;
      border-bottom: 3px solid var(--navy);
      transition: box-shadow .3s;
      overflow: visible;
  }

  #mainNav.scrolled {
      box-shadow: 0 4px 20px rgba(26, 43, 94, .15);
  }

  .nav-wrap {
      display: flex;
      align-items: center;
      /* ✅ CENTER: logo left, nav center, spacer right */
      justify-content: space-between;
      padding: 14px 20px;
      gap: 12px;
      transition: padding .3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: visible;
  }

  #mainNav.scrolled .nav-wrap {
      padding-top: 8px;
      padding-bottom: 8px;
  }

  /* ── LOGO ── */
.logo-a {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: 80px;   /* fixed - already 80px */
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-top: -10px;      /* age -32px chilo, onek beshi */
    margin-bottom: -10px;   /* age -4px chilo */
    transition: height .3s cubic-bezier(0.4, 0, 0.2, 1),
        margin .3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: drop-shadow(0 4px 10px rgba(26, 43, 94, .18));
}

#mainNav.scrolled .logo-img {
    height: 70px;
    margin-top: -6px;    /* age -18px chilo */
    margin-bottom: -6px; /* age -2px chilo */
}

  /* ── DESKTOP NAV — CENTER ── */
  .d-nav-wrapper {
      /* Takes up remaining space, centers the nav */
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .d-nav {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  /* Right spacer = logo width so nav stays truly centered */
  .nav-spacer {
      flex-shrink: 0;
      width: 120px;
      /* approx logo width */
  }

  .d-nav .nav-link {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--navy) !important;
      text-transform: uppercase;
      letter-spacing: .55px;
      padding: 8px 11px !important;
      position: relative;
      white-space: nowrap;
  }

  .d-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 1px;
      left: 11px;
      right: 11px;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform .22s;
  }

  .d-nav .nav-link:hover {
      color: var(--red) !important;
  }

  .d-nav .nav-link:hover::after,
  .d-nav .nav-link.active::after {
      transform: scaleX(1);
  }

  .d-nav .nav-link.active {
      color: var(--red) !important;
  }

  /* ── DROPDOWN INDICATOR ARROW ── */
  .d-nav .dropdown-toggle::before {
      display: none;
  }

  .d-nav .dropdown-toggle .dd-arrow {
      display: inline-block;
      margin-left: 4px;
      font-size: 9px;
      color: var(--red);
      transition: transform .22s;
      vertical-align: middle;
  }

  .d-nav .dropdown.show>.dropdown-toggle .dd-arrow {
      transform: rotate(180deg);
  }

  .d-nav .dropdown-toggle::after {
      display: none;
  }

  /* ── DROPDOWN MENU ── */
  .dropdown-menu {
      border: none;
      border-top: 3px solid var(--red);
      border-radius: 0 0 6px 6px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
      padding: 6px 0;
      min-width: 200px;
  }

  .dropdown-item {
      font-size: 12.5px;
      font-weight: 600;
      color: #333;
      padding: 9px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .dropdown-item i {
      color: var(--gold);
      width: 14px;
      font-size: 11px;
  }

  .dropdown-item:hover {
      background: var(--navy);
      color: #fff;
  }

  .dropdown-item:hover i {
      color: #fff;
  }

  /* Sub-dropdown (nested) */
  .dropdown-submenu {
      position: relative;
  }

  .dropdown-submenu>.dropdown-item {
      justify-content: space-between;
  }

  .dropdown-submenu>.dropdown-item .sub-arrow {
      font-size: 9px;
      color: #aaa;
      margin-left: auto;
  }

  .dropdown-submenu>.dropdown-item:hover .sub-arrow {
      color: #fff;
  }

  .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -9px;
      border-top: 3px solid var(--gold);
      display: none;
  }

  .dropdown-submenu:hover>.dropdown-menu {
      display: block;
  }

  /* ── HAMBURGER ── */
  .ham {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
      flex-shrink: 0;
  }

  .ham span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--navy);
      border-radius: 2px;
      transition: .3s;
  }

  .ham.open span:nth-child(1) {
      transform: rotate(45deg) translate(5.5px, 5.5px);
  }

  .ham.open span:nth-child(2) {
      opacity: 0;
  }

  .ham.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5.5px, -5.5px);
  }

  /* ══════════════════════════════════════════
           MOBILE SIDEBAR
        ══════════════════════════════════════════ */
  #overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 1999;
  }

  #overlay.show {
      display: block;
  }

  #sidebar {
      position: fixed;
      top: 0;
      left: -300px;
      width: 280px;
      height: 100%;
      z-index: 2000;
      overflow-y: auto;
      transition: left .32s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      background: #fff;
  }

  #sidebar.open {
      left: 0;
  }

  .sb-top {
      background: var(--dark);
      padding: 12px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .sb-top a {
      color: #b8c8e0;
      font-size: 12px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .sb-top a i {
      color: var(--gold);
      width: 14px;
  }

  .sb-top a:hover {
      color: var(--gold);
  }

  .sb-top-social {
      display: flex;
      gap: 8px;
      margin-top: 4px;
  }

  .sb-top-social a {
      width: 26px;
      height: 26px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      gap: 0;
  }

  .sb-top-social a:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
  }

  .sb-logo-band {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
      border-bottom: 3px solid var(--red);
  }

  .sb-logo-band .sb-logo-img {
      height: 60px;
      width: auto;
      display: block;
  }

  .sb-nav {
      list-style: none;
      padding: 0;
      flex: 1;
  }

  .sb-nav>li>a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
      color: var(--navy);
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      border-bottom: 1px solid #e8edf5;
      transition: background .18s, color .18s;
  }

  .sb-nav>li>a:hover,
  .sb-nav>li>a.active {
      background: #f0f4ff;
      color: var(--red);
  }

  .sb-nav>li>a .chevron {
      font-size: 10px;
      color: #aaa;
      transition: transform .2s;
  }

  .sb-nav>li>a.sub-open .chevron {
      transform: rotate(180deg);
  }

  .sb-sub {
      display: none;
      list-style: none;
      background: #f8f9fc;
  }

  .sb-sub.open {
      display: block;
  }

  .sb-sub li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 34px;
      font-size: 12px;
      font-weight: 600;
      color: #555;
      text-decoration: none;
      border-bottom: 1px solid #eef;
      transition: color .18s, background .18s;
  }

  .sb-sub li a i {
      color: var(--gold);
      width: 13px;
      font-size: 10px;
  }

  .sb-sub li a:hover {
      color: var(--red);
      background: #fff;
  }

  .sb-sub-title {
      padding: 8px 34px 4px;
      font-size: 10px;
      font-weight: 800;
      color: #aaa;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #f8f9fc;
  }

  .sb-close-bar {
      display: flex;
      justify-content: flex-end;
      padding: 10px 14px;
      background: var(--dark);
  }

  .sb-close-btn {
      background: none;
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      transition: background .2s, border-color .2s;
  }

  .sb-close-btn:hover {
      background: var(--red);
      border-color: var(--red);
  }

  /*  */
  .mob-contact-btn {
      display: none;
      /* desktop এ hidden */
      background: var(--red);
      color: #fff !important;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      padding: 7px 13px;
      border-radius: 4px;
      text-decoration: none;
      white-space: nowrap;
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      transition: background .2s;
  }

  .mob-contact-btn:hover {
      background: var(--navy);
      color: #fff !important;
  }

  @media (max-width: 991.98px) {
      .mob-contact-btn {
          display: inline-flex;
          /* ✅ mobile এ দেখাবে */
          align-items: center;
      }
  }

  /*  */

  /* ══════════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════════ */
  @media (min-width: 992px) {
      .ham {
          display: none !important;
      }
  }

  @media (max-width: 991.98px) {
      #topbar {
          display: none;
      }

      .d-nav-wrapper,
      .nav-spacer,
      .lang-pill {
          display: none !important;
      }

      .nav-wrap {
          position: relative;
          justify-content: center;
          padding: 10px 16px;
      }

      .ham {
          position: absolute;
          left: 16px;
          top: 50%;
          transform: translateY(-50%);
      }

      .logo-a {
          margin-left: 0;
          justify-content: center;
      }

      .logo-img {
          height: 52px;
          margin-top: 0;
          margin-bottom: 0;
          filter: none;
      }

      #mainNav.scrolled .logo-img {
          height: 38px;
          margin-top: 0;
          margin-bottom: 0;
      }
  }

  @media (max-width: 576px) {
      .logo-img {
          height: 80px;
          margin-top: 0;
          margin-bottom: 0;
      }

      #mainNav.scrolled .logo-img {
          height: 45px;
      }
  }

  /* 22-inch+ monitors */
  @media (min-width: 1920px) {
      .nav-wrap {
          max-width: 1800px;
          margin: 0 auto;
          padding-left: 40px;
          padding-right: 40px;
      }

      .tb-wrap {
          margin: 0 auto;
      }

      .d-nav .nav-link {
          font-size: 20.5px;
          padding: 8px 14px !important;
      }

      .logo-img {
          height: 149px;
          margin-top: -22px;
          margin-bottom: -22px;
      }

      #mainNav.scrolled .logo-img {
          height: 80px;
          margin-top: -12px;
          margin-bottom: -12px;
      }

      .nav-spacer {
          width: 140px;
      }

      /* ✅ 1 নম্বর fix — 22 inch এ navbar border-bottom সরাও */

  }

  .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
  }

  .hero h1 {
      font-size: clamp(24px, 5vw, 56px);
      font-weight: 900;
      letter-spacing: 2px;
  }

  .hero p {
      font-size: 15px;
      opacity: .7;
      margin-top: 10px;
  }

  .filler {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
      font-size: 18px;
      background: #f5f5f5;
  }

  /*  */
  /* ── BOOK NOW BUTTON ── */
  .nav-book-btn {
      background: var(--navy);
      color: #fff !important;
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      padding: 8px 18px;
      border-radius: 4px;
      text-decoration: none;
      white-space: nowrap;
      transition: background .2s, transform .15s;
      flex-shrink: 0;
  }

  .nav-book-btn:hover {
      background: var(--red);
      color: #fff !important;
      transform: translateY(-1px);
  }

  /* ── LOGIN ICON ── */
  .nav-login-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 2px solid var(--navy);
      border-radius: 50%;
      color: var(--navy);
      font-size: 15px;
      text-decoration: none;
      flex-shrink: 0;
      transition: background .2s, color .2s, border-color .2s;
  }

  .nav-login-btn:hover {
      background: var(--navy);
      color: #fff;
  }

  /* ── HOVER DROPDOWN (desktop only) ── */
  @media (min-width: 992px) {
      .d-nav .dropdown:hover>.dropdown-menu {
          display: block;
          margin-top: 0;
      }

      /* click dropdown disable করো না, hover ও চলবে */
      .d-nav .dropdown>.dropdown-toggle {
          pointer-events: auto;
      }
  }

  /* 22-inch এ book/login size বড় */
  @media (min-width: 1920px) {
      .nav-book-btn {
          font-size: 15px;
          padding: 10px 24px;
      }

      .nav-login-btn {
          width: 44px;
          height: 44px;
          font-size: 18px;
      }
  }

  /* mobile এ hide */
  @media (max-width: 991.98px) {

      .nav-book-btn,
      .nav-login-btn {
          display: none;
      }
  }

  /* header end css */

  /* banner css start */
  /* ─── SLIDER WRAPPER ──────────────────────────────────── */
  #heroSlider {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 500px;
      max-height: 680px;
      overflow: hidden;
  }

  /* ─── EACH SLIDE ──────────────────────────────────────── */
  .slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.9s ease;
      z-index: 1;
  }

  .slide.active {
      opacity: 1;
      z-index: 2;
  }

 /* BG IMAGE */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.07);
    transition: transform 6s ease;
}

  .slide.active .slide-bg {
      transform: scale(1);
  }

  /* OVERLAY */
  .slide-overlay {
      position: absolute;
      inset: 0;
      background: var(--overlay-dark);
      z-index: 1;
  }

  /* ─── SLIDE CONTENT ───────────────────────────────────── */
  .slide-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 24px;
  }

  .badge-pill {
      display: inline-block;
      background: var(--brand-blue);
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: clamp(0.75rem, 1.5vw, 0.95rem);
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 8px 28px;
      border-radius: 50px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
  }

  .slide.active .badge-pill {
      opacity: 1;
      transform: translateY(0);
  }

  .slide-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5.5vw, 4.2rem);
      font-weight: 900;
      color: var(--brand-white);
      line-height: 1.1;
      text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
  }

  .slide.active .slide-title {
      opacity: 1;
      transform: translateY(0);
  }

  .slide-subtitle {
      font-size: clamp(0.7rem, 1.6vw, 0.95rem);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s 0.65s ease, transform 0.7s 0.65s ease;
  }

  .slide.active .slide-subtitle {
      opacity: 1;
      transform: translateY(0);
  }

  .slide-btn {
      display: inline-block;
      background: var(--brand-blue);
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-weight: 600;
      font-size: clamp(0.8rem, 1.4vw, 0.95rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 13px 36px;
      border-radius: 4px;
      text-decoration: none;
      border: 2px solid transparent;
      transition: background 0.3s, border-color 0.3s, transform 0.2s;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s 0.8s ease, transform 0.7s 0.8s ease, background 0.3s, border-color 0.3s;
  }

  .slide.active .slide-btn {
      opacity: 1;
      transform: translateY(0);
  }

  .slide-btn:hover {
      background: transparent;
      border-color: var(--brand-white);
      color: #fff;
      transform: translateY(-2px) !important;
  }

  /* ─── DOTS ────────────────────────────────────────────── */
  .slider-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
      align-items: center;
  }

  .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: 2px solid rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
  }

  .dot.active {
      background: var(--brand-blue);
      border-color: var(--brand-blue);
      transform: scale(1.35);
  }

  /* ─── ARROW BUTTONS ───────────────────────────────────── */
  .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 46px;
      height: 46px;
      background: rgba(255, 255, 255, 0.12);
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 18px;
      user-select: none;
  }

  .slider-arrow:hover {
      background: var(--brand-blue);
      border-color: var(--brand-blue);
  }

  .slider-arrow.prev {
      left: 20px;
  }

  .slider-arrow.next {
      right: 20px;
  }

  /* ─── SLIDE COUNTER ───────────────────────────────────── */
  .slide-counter {
      position: absolute;
      bottom: 28px;
      right: 28px;
      z-index: 10;
      font-family: 'Barlow', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
  }

  .slide-counter span {
      color: #fff;
  }

 /* ─── MOBILE ──────────────────────────────────────────── */
  @media (max-width: 767px) {
      #heroSlider {
        
          height: auto;
          aspect-ratio: 16 / 9;
          min-height: 220px;
          max-height: none;
      }

      .slider-arrow {
          width: 36px;
          height: 36px;
          font-size: 14px;
      }

      .slider-arrow.prev {
          left: 10px;
      }

      .slider-arrow.next {
          right: 10px;
      }

      .slide-counter {
          display: none;
      }
  }

  /* ─── LARGE MONITOR (22" ≈ 1920px) ───────────────────── */
  @media (min-width: 1600px) {
      #heroSlider {
          max-height: 760px;
      }
  }

  /* ─── PROGRESS BAR ────────────────────────────────────── */
  .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--brand-blue);
      width: 0%;
      z-index: 10;
      transition: width linear;
  }

  /* banner css end */


  /* about start css */
  /* ═══ SECTION ═══ */
  .about-section {
      padding: 100px 0 90px;
      position: relative;
      overflow: hidden;
  }

  .about-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -180px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26, 43, 94, .07) 0%, transparent 70%);
      pointer-events: none;
  }

  .about-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -120px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139, 0, 0, .05) 0%, transparent 70%);
      pointer-events: none;
  }

  /* ═══ IMAGE BLOCK ═══ */
  .img-col {
      position: relative;
  }

  .img-frame {
      position: relative;
      z-index: 2;
      margin-right: 40px;
  }

  .img-frame::before {
      content: '';
      position: absolute;
      top: -18px;
      left: -18px;
      width: 120px;
      height: 120px;
      border-top: 3px solid var(--navy);
      border-left: 3px solid var(--navy);
      border-radius: 2px;
      z-index: 3;
      pointer-events: none;
  }

  .img-frame::after {
      content: '';
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 120px;
      height: 120px;
      border-bottom: 3px solid var(--red);
      border-right: 3px solid var(--red);
      border-radius: 2px;
      z-index: 3;
      pointer-events: none;
  }

  .main-img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      border-radius: 6px;
      display: block;
      position: relative;
      z-index: 2;
      box-shadow: 0 30px 70px rgba(13, 21, 40, .22);
  }

  .vertical-label {
      position: absolute;
      left: -46px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--navy);
      opacity: .45;
      white-space: nowrap;
      z-index: 4;
  }

  /* ── FLOAT CARD ── */
  .float-card {
      position: absolute;
      bottom: 36px;
      right: -36px;
      background: var(--navy);
      border-radius: 8px;
      padding: 18px 22px;
      z-index: 5;
      box-shadow: 0 16px 48px rgba(26, 43, 94, .38);
      min-width: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .fc-logo {
      width: 130px;
      height: auto;
      object-fit: contain;
      display: block;
  }

  .fc-logo-text {
      font-family: 'Barlow', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .8);
      line-height: 1.5;
      text-align: center;
  }

  .mini-badge {
      position: absolute;
      top: 28px;
      right: -28px;
      background: var(--red);
      color: #fff;
      border-radius: 6px;
      padding: 10px 18px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(139, 0, 0, .35);
      z-index: 5;
      text-align: center;
      line-height: 1.4;
  }

  /* ═══ CONTENT BLOCK ═══ */
  .content-col {
      padding-left: 20px;
  }

  .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
  }

  .eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
  }

  .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.4vw, 3.1rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 6px;
  }

  .about-title em {
      font-style: italic;
      color: var(--navy);
  }

  .typewriter-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      flex-wrap: wrap;
  }

  .tw-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--navy);
      opacity: .55;
      text-transform: uppercase;
      letter-spacing: .1em;
  }

  .tw-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 1.8vw, 1.35rem);
      font-weight: 600;
      color: var(--red);
      border-right: 2px solid var(--red);
      padding-right: 3px;
      animation: caret .75s step-end infinite;
      min-height: 1.5em;
  }

  @media (max-width: 767px) {

      .content-col {
          text-align: center;
      }

      .eyebrow {
          display: flex;
          justify-content: center;
      }

      .typewriter-row {
          justify-content: center;
      }

      .rule-double {
          align-items: center;
      }
  }

  @keyframes caret {

      0%,
      100% {
          border-color: var(--red);
      }

      50% {
          border-color: transparent;
      }
  }

  .rule-double {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 28px;
  }

  .rule-double span:first-child {
      display: block;
      width: 56px;
      height: 3px;
      background: var(--navy);
      border-radius: 2px;
  }

  .rule-double span:last-child {
      display: block;
      width: 32px;
      height: 3px;
      background: var(--red);
      border-radius: 2px;
  }

  .about-body p {
      font-size: clamp(.87rem, 1.1vw, .97rem);
      color: #3c4a68;
      line-height: 1.9;
      margin-bottom: 14px;
      text-align: justify;
  }

  /* ═══ WHAT WE DO ═══ */
  .what-we-do {
      margin: 30px 0 32px;
  }

  .wwd-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 18px;
  }

  .wwd-label::before,
  .wwd-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
  }

  .wwd-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
  }

  .wwd-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 18px 10px 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      gap: 10px;
      transition: box-shadow .25s, transform .25s, border-color .25s;
      cursor: default;
  }

  .wwd-card:hover {
      box-shadow: 0 8px 28px rgba(26, 43, 94, .12);
      transform: translateY(-3px);
      border-color: rgba(26, 43, 94, .2);
  }

  /* icon circle */
  .wwd-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--navy-light);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .25s;
  }

  .wwd-card:hover .wwd-icon {
      background: var(--navy);
  }

  .wwd-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--navy);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke .25s;
  }

  .wwd-card:hover .wwd-icon svg {
      stroke: #fff;
  }

  .wwd-name {
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--dark);
      line-height: 1.35;
      text-transform: none;
  }

  /* dots between cards */
  .wwd-sep {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 1.2rem;
      font-weight: 700;
      padding-top: 18px;
      line-height: 58px;
  }

  /* 4 cards + 3 separators in single row */
  .wwd-row {
      display: flex;
      align-items: flex-start;
      gap: 0;
  }

  .wwd-row .wwd-card {
      flex: 1;
  }

  .wwd-row .wwd-sep {
      flex: 0 0 22px;
      text-align: center;
      font-size: 1.4rem;
      color: var(--red);
      padding-top: 0;
      align-self: center;
      line-height: 1;
      margin-top: -6px;
  }

  /* ═══ CTA ═══ */
  .cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .btn-primary-about {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 4px;
      text-decoration: none;
      border: 2px solid var(--navy);
      transition: background .3s, color .3s, transform .2s;
  }

  .btn-primary-about:hover {
      background: transparent;
      color: var(--navy);
      transform: translateY(-2px);
  }

  .btn-primary-about svg {
      transition: transform .3s;
  }

  .btn-primary-about:hover svg {
      transform: translateX(5px);
  }

  /* ═══════════════════════════════
       RESPONSIVE
  ═══════════════════════════════ */

  @media (min-width: 1600px) {
      .main-img {
          height: 700px;
      }

      .about-section {
          padding: 120px 0 110px;
      }
  }

  @media (max-width: 1199px) {
      .float-card {
          right: -10px;
      }

      .mini-badge {
          right: -10px;
      }

      .vertical-label {
          display: none;
      }

      .img-frame {
          margin-right: 20px;
      }
  }

  @media (max-width: 991px) {
      .about-section {
          padding: 60px 0;
      }

      .content-col {
          padding-left: 0;
          margin-top: 60px;
      }

      .main-img {
          height: 420px;
      }

      .img-frame {
          margin-right: 0;
      }

      .float-card {
          right: 16px;
          bottom: 20px;
      }

      .mini-badge {
          right: 16px;
          top: 20px;
      }

      .img-frame::before,
      .img-frame::after {
          width: 70px;
          height: 70px;
      }
  }

  /* ─── MOBILE ≤ 767px: welcome heading comes FIRST ─── */
  @media (max-width: 767px) {
      .about-section {
          padding: 40px 0 50px;
      }

      /* reorder: content col appears before image col */
      .row.about-row {
          display: flex;
          flex-direction: column;
      }

      .col-img-mob {
          order: 2;
      }

      .col-text-mob {
          order: 1;
      }

      /* content col */
      .content-col {
          padding-left: 0;
          margin-top: 0;
          margin-bottom: 40px;
      }

      /* image */
      .img-frame {
          margin-right: 0;
          margin-bottom: 90px;
      }

      .main-img {
          height: 240px;
          border-radius: 8px;
      }

      .img-frame::before {
          top: -10px;
          left: -10px;
          width: 50px;
          height: 50px;
          border-width: 2px;
      }

      .img-frame::after {
          bottom: -10px;
          right: -10px;
          width: 50px;
          height: 50px;
          border-width: 2px;
      }

      /* float-card centered below image */
      .float-card {
          position: absolute;
          right: 50%;
          transform: translateX(50%);
          bottom: -62px;
          min-width: 130px;
          padding: 14px 20px;
          flex-direction: row;
      }

      .fc-logo {
          width: 90px;
      }

      .fc-logo-text {
          font-size: 0.62rem;
      }

      .mini-badge {
          display: none;
      }

      .about-title {
          font-size: 1.7rem;
      }

      .typewriter-row {
          gap: 6px;
      }

      .tw-text {
          font-size: 1rem;
      }

      /* What We Do — 2 cols on mobile */
      .wwd-row {
          flex-wrap: wrap;
          gap: 10px;
      }

      .wwd-row .wwd-sep {
          display: none;
      }

      .wwd-row .wwd-card {
          flex: 1 1 calc(50% - 5px);
          min-width: 0;
      }

      .wwd-label {
          font-size: 0.65rem;
      }

      /* CTA stack */
      .cta-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
      }

      .btn-primary-about {
          width: 100%;
          justify-content: center;
          font-size: .8rem;
          padding: 12px 24px;
      }
  }

  @media (max-width: 375px) {
      .main-img {
          height: 200px;
      }

      .about-title {
          font-size: 1.5rem;
      }

      .wwd-row .wwd-card {
          flex: 1 1 100%;
      }
  }

  /* about end css */

  /* properties css start */
  .properties-section {
      padding: 10px 0 50px;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 37px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
  }

  .section-divider {
      display: flex;
      align-items: center;
      margin-bottom: 36px;
  }

  .div-line {
      flex: 1;
  }

  .div-accent {
      width: 46px;
      height: 3px;
      background: var(--navy);
      border-radius: 2px;
  }

  /* ── CARD ── */
  .prop-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(26, 43, 94, .10);
      transition: transform .25s, box-shadow .25s;
      padding: 10px 10px 0 10px;
      /* white border around image like reference */
  }

  .prop-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(26, 43, 94, .16);
  }

  /* ── IMAGE: fixed 360×270 ── */
  .prop-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      width: 100%;
      /* fills card width */
      height: 270px;
      /* FIXED HEIGHT = 270px */
  }

  .prop-img-wrap img {
      width: 100%;
      /* fills 100% of wrap = 360px naturally in 3-col grid */
      height: 100%;
      /* fills fixed 270px */
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform .4s ease;
  }

  .prop-card:hover .prop-img-wrap img {
      transform: scale(1.05);
  }

  /* Badge */
  .prop-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--navy);
      color: #fff;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 3px;
      z-index: 2;
  }

  .prop-badge.sold {
      background: var(--red);
  }

  .prop-badge.share {
      background: #9a6b00;
      right: auto;
      left: 10px;
  }

  /* Card info */
  .prop-body {
      padding: 11px 6px 13px 4px;
  }

  .prop-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 6px;
  }

  .prop-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 4px;
  }

  .prop-price {
      font-size: 0.99rem;
      font-weight: 700;
      color: var(--red);
      white-space: nowrap;
  }

  .prop-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
  }

  .prop-meta-item {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 0.99rem;
      color: var(--text-muted);
  }

  .prop-meta-item i {
      font-size: 0.99rem;
      color: #bbb;
  }

  /* Fade animation */
  .prop-col {
      animation: up .45s ease both;
  }

  .prop-col:nth-child(1) {
      animation-delay: .04s
  }

  .prop-col:nth-child(2) {
      animation-delay: .10s
  }

  .prop-col:nth-child(3) {
      animation-delay: .16s
  }

  .prop-col:nth-child(4) {
      animation-delay: .22s
  }

  .prop-col:nth-child(5) {
      animation-delay: .28s
  }

  .prop-col:nth-child(6) {
      animation-delay: .34s
  }

  @keyframes up {
      from {
          opacity: 0;
          transform: translateY(16px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive: on small screens image height scales down proportionally */
  @media (max-width: 575px) {
      .prop-img-wrap {
          height: 220px;
      }
  }


  /*  */
  .prop-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
  }

  /*  */

  /*  */
  /* ── FILTER TABS ── */
  .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 36px;
      flex-wrap: wrap;
  }

  .filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 22px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: #fff;
      color: #5a6a8a;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .22s ease;
  }

  .filter-btn:hover {
      border-color: var(--navy);
      color: var(--navy);
      background: #eef1f8;
  }

  .filter-btn.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
  }

  .filter-btn .fb-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      opacity: .6;
      flex-shrink: 0;
  }

  .filter-btn.active .fb-dot {
      opacity: 1;
  }

  /* dot colors per category */
  .filter-btn[data-filter="completed"] .fb-dot {
      background: #1a8a4a;
  }

  .filter-btn[data-filter="ongoing"] .fb-dot {
      background: #c8a94a;
  }

  .filter-btn[data-filter="upcoming"] .fb-dot {
      background: #1a2b5e;
  }

  .filter-btn.active .fb-dot {
      background: #fff;
  }

  /* hide/show cards */
  .prop-col {
      transition: opacity .3s ease, transform .3s ease;
  }

  .prop-col.hidden {
      display: none;
  }

  /* mobile */
  @media (max-width: 575px) {
      .filter-btn {
          padding: 8px 16px;
          font-size: 0.72rem;
      }
  }

  /*  */
  /* properties css end */


  /* footer start */
  /* ══ FOOTER CSS ══ */
  .footer-contact-link:hover {
      color: #8b0000 !important;
  }

  .footer-contact-link:hover .footer-icon-box {
      background: #8b0000 !important;
  }

  .footer-contact-link:hover .footer-icon-box i {
      color: #ffffff !important;
  }

  .footer-nav-link:hover {
      color: #ffffff !important;
      transform: translateX(6px);
      transition: all 0.3s;
  }

  .footer-nav-link:hover i {
      color: #8b0000 !important;
  }

  .social-icon:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
  }

  @media (min-width: 1600px) {
      .container-xl {
          max-width: 1400px;
      }
  }

  /* footer end */

  /*  */
  /* Live Chat Widget CSS */
  .live-chat-wrap {
      position: fixed;
      bottom: 24px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
  }

  .chat-btn {
      display: flex;
      align-items: center;
      gap: 0;
      border-radius: 50px;
      overflow: hidden;
      border: none;
      cursor: pointer;
      text-decoration: none;
      height: 48px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
  }

  .cb-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 22px;
      color: #fff;
      border-radius: 50px;
      transition: border-radius 0.3s ease;
  }

  .cb-label {
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      transition: max-width 0.35s ease, padding 0.35s ease;
      padding: 0;
  }

  /* Hover effect — label expand */
  .chat-btn:hover .cb-label {
      max-width: 120px;
      padding: 0 14px 0 4px;
  }

  .chat-btn:hover .cb-icon {
      border-radius: 50% 0 0 50%;
  }

  /* Colors */
  .messenger {
      background: #0084ff;
  }

  .messenger:hover {
      background: #0078eb;
  }

  .whatsapp {
      background: #25d366;
  }

  .whatsapp:hover {
      background: #20c05a;
  }

  /* Mobile responsive */
  @media (max-width: 576px) {
      .live-chat-wrap {
          bottom: 16px;
          right: 12px;
      }

      .chat-btn {
          height: 44px;
      }

      .cb-icon {
          width: 44px;
          height: 44px;
          font-size: 20px;
      }
  }

  /* Login Page */
  /* ── LOGIN PAGE ── */
  .login-page {
      min-height: calc(100vh - 160px);
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f6fa;
      padding: 40px 16px;
  }

  .login-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
      padding: 40px 36px 36px;
      width: 100%;
      max-width: 400px;
  }

  .login-card h2 {
      font-size: 1.55rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 5px;
  }

  .login-card .login-sub {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 26px;
  }

  .login-card .form-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 6px;
  }

  .login-input-wrap {
      position: relative;
      margin-bottom: 18px;
  }

  .login-input-wrap .input-icon {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 0.85rem;
  }

  .login-input-wrap input {
      width: 100%;
      border: 1.5px solid #ddd;
      border-radius: 6px;
      padding: 10px 40px 10px 36px;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
  }

  .login-input-wrap input::placeholder {
      color: #bbb;
  }

  .login-input-wrap input:focus {
      border-color: #8b0000;
  }

  .login-input-wrap .eye-icon {
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 0.85rem;
      cursor: pointer;
  }

  .forgot-link {
      display: block;
      text-align: right;
      font-size: 0.82rem;
      color: #8b0000;
      text-decoration: none;
      margin-top: -10px;
      margin-bottom: 22px;
      font-weight: 500;
  }

  .forgot-link:hover {
      text-decoration: underline;
  }

  .login-btn {
      width: 100%;
      background: #8b0000;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 11px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s;
      margin-bottom: 20px;
  }

  .login-btn:hover {
      background: #6e0000;
  }

  .login-register {
      text-align: center;
      font-size: 0.88rem;
      color: #666;
  }

  .login-register a {
      color: #8b0000;
      font-weight: 600;
      text-decoration: none;
  }

  .login-register a:hover {
      text-decoration: underline;
  }

  @media (max-width: 480px) {
      .login-card {
          padding: 28px 20px 24px;
      }
  }

  /* Register Css */
  .reg-page {
      min-height: calc(100vh - 160px);
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f6fa;
      padding: 40px 16px;
  }

  .reg-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
      padding: 36px 36px 32px;
      width: 100%;
      max-width: 480px;
  }

  .reg-logo {
      text-align: center;
  }

  .reg-logo img {
      /* height: 52px; */
      width: auto;
      object-fit: contain;
  }

  .reg-title-wrap {
      text-align: center;
      margin-bottom: 22px;
  }

  .reg-title-wrap .reg-icon {
      width: 52px;
      height: 52px;
      background: #f0f0f0;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .reg-title-inline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }

  .reg-title-inline h2 {
      margin-bottom: 0px !important;
  }

  .reg-title-wrap .reg-icon i {
      font-size: 1.3rem;
      color: #555;
  }

  .reg-title-wrap h2 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 5px;
  }

  .reg-divider {
      width: 40px;
      height: 3px;
      background: #8b0000;
      border-radius: 2px;
      margin: 8px auto 6px;
  }

  .reg-title-wrap p {
      font-size: 0.85rem;
      color: #777;
      margin-bottom: 0;
  }

  .reg-card .form-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 6px;
  }

  .reg-card .form-label span {
      color: #8b0000;
  }

  .reg-input-wrap {
      position: relative;
      margin-bottom: 16px;
  }

  .reg-input-wrap .input-icon {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 0.85rem;
  }

  .reg-input-wrap input {
      width: 100%;
      border: 1.5px solid #ddd;
      border-radius: 6px;
      padding: 10px 14px 10px 36px;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
  }

  .reg-input-wrap input::placeholder {
      color: #bbb;
  }

  .reg-input-wrap input:focus {
      border-color: #8b0000;
  }

  /* Terms row */
  .reg-terms-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 22px;
      flex-wrap: wrap;
  }

  .reg-terms-check {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.83rem;
      color: #444;
  }

  .reg-terms-check input[type="checkbox"] {
      width: 15px;
      height: 15px;
      accent-color: #8b0000;
      cursor: pointer;
      flex-shrink: 0;
  }

  .reg-terms-check a {
      color: #8b0000;
      font-weight: 600;
      text-decoration: underline;
  }

  .reg-view-terms {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1.5px solid #8b0000;
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 0.8rem;
      color: #8b0000;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
  }

  .reg-view-terms:hover {
      background: #8b0000;
      color: #fff;
  }

  .reg-submit-btn {
      width: 100%;
      background: #8b0000;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s;
      margin-bottom: 14px;
  }

  .reg-submit-btn:hover {
      background: #6e0000;
  }

  .reg-safe-note {
      text-align: center;
      font-size: 0.8rem;
      color: #999;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
  }

  @media (max-width: 480px) {
      .reg-card {
          padding: 24px 16px 20px;
      }

      .reg-terms-row {
          flex-direction: column;
          align-items: flex-start;
      }
  }

  /* Single Properties */

    .pg {
                background: #f0f2f5;
                padding: 40px 16px;
                font-family: inherit
            }

            .pg * {
                box-sizing: border-box
            }

            .pg-wrap {
                max-width: 1060px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 280px 1fr;
                gap: 32px;
                align-items: stretch;
                /* start → stretch */
                background: white;
                padding: 20px;
                border-radius: 15px;
            }

            .pg-left {
                display: flex;
                flex-direction: column;
            }

            .pg-badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: #fff0f0;
                border: 1.5px solid #8b0000;
                border-radius: 20px;
                padding: 4px 14px;
                font-size: 12px;
                font-weight: 600;
                color: #8b0000;
                margin-bottom: 20px
            }

            .pg-left h1 {
                font-size: 28px;
                font-weight: 800;
                color: #111;
                line-height: 1.25;
                margin-bottom: 10px
            }

            .pg-left h1 .red {
                color: #8b0000
            }

            .pg-left .pg-sub {
                font-size: 13px;
                color: #666;
                margin-bottom: 28px;
                line-height: 1.6
            }

            .pg-feat {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 18px
            }

            .pg-feat-ic {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: #fff;
                border: 1.5px solid #e5e5e5;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0
            }

            .pg-feat-ic i {
                font-size: 15px;
                color: #8b0000
            }

            .pg-feat-tx strong {
                display: block;
                font-size: 13px;
                font-weight: 700;
                color: #111;
                margin-bottom: 2px
            }

            .pg-feat-tx span {
                font-size: 12px;
                color: #888;
                line-height: 1.4
            }

            .pg-house {
                margin-top: 24px;
                border-radius: 12px;
                overflow: hidden;
                flex: 1;
                /* baki saob height image nebe */
                min-height: 150px;
            }

            .pg-house img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .pg-card {
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
                padding: 28px 24px
            }

            .pg-frow {
                display: grid;
                gap: 14px;
                margin-bottom: 14px
            }

            .pg-frow.c3 {
                grid-template-columns: 1fr 1fr 1fr
            }

            .pg-frow.c2 {
                grid-template-columns: 1fr 1fr
            }

            .pg-frow.c1 {
                grid-template-columns: 1fr
            }

            .pg-fg label {
                display: block;
                font-size: 12px;
                font-weight: 600;
                color: #222;
                margin-bottom: 5px
            }

            .pg-iw {
                position: relative
            }

            .pg-iw i.pg-ic {
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
                color: #bbb;
                font-size: 13px;
                pointer-events: none
            }

            .pg-iw input,
            .pg-iw select,
            .pg-iw textarea {
                width: 100%;
                border: 1.5px solid #ddd;
                border-radius: 6px;
                padding: 9px 12px 9px 32px;
                font-size: 13px;
                color: #333;
                outline: none;
                background: #fff;
                font-family: inherit
            }

            .pg-iw input::placeholder,
            .pg-iw textarea::placeholder {
                color: #bbb
            }

            .pg-iw input:focus,
            .pg-iw select:focus,
            .pg-iw textarea:focus {
                border-color: #8b0000
            }

            .pg-iw.ni input,
            .pg-iw.ni select {
                padding-left: 12px
            }

            .pg-iw textarea {
                resize: vertical;
                min-height: 88px;
                padding-top: 10px
            }

            .pg-iw select {
                appearance: none;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23aaa' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 10px center;
                padding-right: 28px
            }

            .pg-hint {
                font-size: 11px;
                color: #aaa;
                margin-top: 3px
            }

            .pg-spin-w {
                position: relative
            }

            .pg-spin-w input[type=number] {
                -moz-appearance: textfield
            }

            .pg-spin-w input::-webkit-outer-spin-button,
            .pg-spin-w input::-webkit-inner-spin-button {
                -webkit-appearance: none
            }

            .pg-spin-arr {
                position: absolute;
                right: 5px;
                top: 50%;
                transform: translateY(-50%);
                display: flex;
                flex-direction: column
            }

            .pg-spin-arr button {
                background: none;
                border: none;
                padding: 1px 4px;
                cursor: pointer;
                color: #bbb;
                font-size: 9px;
                line-height: 1.2
            }

            .pg-spin-arr button:hover {
                color: #8b0000
            }

            .pg-upload {
                border: 2px dashed #ddd;
                border-radius: 8px;
                padding: 22px 16px;
                text-align: center;
                cursor: pointer;
                margin-bottom: 4px;
                transition: border-color .2s;
                display: block
            }

            .pg-upload:hover {
                border-color: #8b0000
            }

            .pg-upload i {
                font-size: 26px;
                color: #aaa;
                display: block;
                margin-bottom: 8px
            }

            .pg-upload p {
                font-size: 13px;
                color: #444;
                font-weight: 500;
                margin-bottom: 3px
            }

            .pg-upload span {
                font-size: 11px;
                color: #aaa
            }

            .pg-upload input {
                display: none
            }

            .pg-terms {
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 12px;
                color: #444;
                margin: 16px 0 18px
            }

            .pg-terms input[type=checkbox] {
                width: 14px;
                height: 14px;
                accent-color: #8b0000;
                cursor: pointer;
                flex-shrink: 0
            }

            .pg-terms a {
                color: #8b0000;
                font-weight: 600;
                text-decoration: underline
            }

            .pg-submit {
                width: 100%;
                background: #8b0000;
                color: #fff;
                border: none;
                border-radius: 6px;
                padding: 13px;
                font-size: 15px;
                font-weight: 700;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                transition: background .2s
            }

            .pg-submit:hover {
                background: #6e0000
            }

            @media(max-width:900px) {
                .pg-wrap {
                    grid-template-columns: 1fr
                }

                .pg-house {
                    display: none
                }
            }

            @media(max-width:580px) {

                .pg-frow.c3,
                .pg-frow.c2 {
                    grid-template-columns: 1fr
                }

                .pg-card {
                    padding: 16px 12px
                }
            }










/* Single Page Css */


/* ── BREADCRUMB ── */
        /* ── BREADCRUMB ── */
        .breadcrumb-bar {
            background: #e8ecf5;
            padding: 10px 0;
            border-bottom: 1px solid #d0d6e8;
        }

        .breadcrumb-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 0.76rem;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6a7a9a;
        }

        .breadcrumb li a {
            color: #1a2b5e;
            font-weight: 600;
            text-decoration: none;
            transition: color .2s;
        }

        .breadcrumb li a:hover {
            color: #8b0000;
        }

        .breadcrumb li+li::before {
            content: '/';
            color: #b0bcd4;
        }

        .breadcrumb li:last-child {
            color: #1a2b5e;
            font-weight: 700;
        }

        /* ── PAGE TITLE BAR ── */
        .page-title-bar {
            background: #f0f2f8;
            padding: 24px 0 20px;
        }

        .page-title-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .prop-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 700;
            color: #0d1528;
            margin: 0 0 10px;
            letter-spacing: .01em;
        }

        .badge-status {
            display: inline-block;
            background: var(--red);
            color: #fff;
            border: 1px solid var(--red);
            border-radius: 4px;
            padding: 5px 13px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-right: 6px;
        }

        .badge-status.navy-badge {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }

        /* ── MAIN LAYOUT ── */
        .main-wrap {
            background: var(--bg);
            padding: 30px 0 70px;
        }

        .main-wrap .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-row {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 26px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .page-row {
                grid-template-columns: 1fr 320px;
            }
        }

        @media (max-width: 900px) {
            .page-row {
                grid-template-columns: 1fr;
            }
        }

        /* ── GALLERY ── */
        * ═══════════════════════════════════════ GALLERY — MAIN IMAGE+THUMB SLIDER ═══════════════════════════════════════ */

        /* ── Main image wrap ── */
        .gallery-wrap {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: var(--dark);
            margin-bottom: 8px;
            box-shadow: 0 4px 20px rgba(13, 21, 40, .18);
        }

        .gallery-wrap .main-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            opacity: .95;
            transition: opacity .22s ease;
        }

        @media (max-width: 768px) {
            .gallery-wrap .main-img {
                height: 240px;
            }
        }

        @media (min-width: 1400px) {
            .gallery-wrap .main-img {
                height: 480px;
            }
        }

        /* badge top-left */
        .gallery-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(13, 21, 40, .72);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .12);
        }

        .gallery-badge.sale {
            background: rgba(139, 0, 0, .85);
        }

        /* image counter top-right */
        .gallery-counter {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(13, 21, 40, .6);
            backdrop-filter: blur(4px);
            color: rgba(255, 255, 255, .85);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 11px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, .12);
            letter-spacing: .04em;
        }

        /* bottom nav buttons */
        .gallery-nav {
            position: absolute;
            bottom: 14px;
            right: 14px;
            display: flex;
            gap: 8px;
        }

        .gallery-nav a {
            background: rgba(13, 21, 40, .68);
            backdrop-filter: blur(6px);
            color: rgba(255, 255, 255, .88);
            border: 1px solid rgba(255, 255, 255, .14);
            padding: 7px 15px;
            border-radius: 5px;
            font-size: 0.73rem;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: background .2s;
        }

        .gallery-nav a:hover {
            background: rgba(13, 21, 40, .9);
            color: #fff;
        }

        /* ── Thumbnail slider ── */
        .thumb-slider-wrap {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 22px;
            margin-top: 16px;
        }

        /* arrow buttons */
        .thumb-arrow {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border-dark);
            background: var(--surface);
            color: var(--navy);
            font-size: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s, color .2s, opacity .2s;
            box-shadow: 0 1px 4px rgba(13, 21, 40, .1);
        }

        .thumb-arrow:hover {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
        }

        .thumb-arrow:disabled {
            cursor: default;
        }

        /* viewport clips overflow */
        .thumb-viewport {
            flex: 1;
            overflow: hidden;
        }

        /* track slides horizontally */
        .thumb-track {
            display: flex;
            gap: 8px;
            transition: transform .3s ease;
            will-change: transform;
        }

        /* each thumb */
        .thumb-track .thumb {
            flex: 0 0 calc(25% - 6px);
            min-width: 0;
            border-radius: 7px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color .2s, box-shadow .2s;
        }

        .thumb-track .thumb img {
            width: 100%;
            height: 72px;
            object-fit: cover;
            display: block;
            transition: transform .3s, opacity .2s;
        }

        .thumb-track .thumb:hover img {
            transform: scale(1.06);
        }

        .thumb-track .thumb:not(.active) img {
            opacity: .65;
        }

        .thumb-track .thumb.active {
            border-color: var(--navy);
            box-shadow: 0 0 0 1px var(--navy);
        }

        .thumb-track .thumb.active img {
            opacity: 1;
        }

        @media (max-width: 480px) {
            .thumb-track .thumb img {
                height: 54px;
            }

            .thumb-arrow {
                width: 26px;
                height: 26px;
                font-size: 0.65rem;
            }
        }

        /* ── BLOCK CARD ── */
        .block-card {
            background: var(--surface);
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-bottom: 22px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(13, 21, 40, .06);
            transition: box-shadow .25s;
        }

        .block-card:hover {
            box-shadow: 0 4px 18px rgba(13, 21, 40, .1);
        }

        .block-head {
            padding: 15px 24px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--surface);
        }

        .block-head h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin: 0;
            padding-left: 14px;
            position: relative;
        }

        .block-head h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 75%;
            background: var(--red);
            border-radius: 2px;
        }

        .block-body {
            padding: 22px 24px;
        }

        /* ── OVERVIEW ── */
        .overview-grid {
            display: flex;
            flex-wrap: wrap;
        }

        .ov-item {
            flex: 1 1 130px;
            text-align: center;
            padding: 20px 12px;
            border-right: 1px solid var(--border);
            transition: background .2s;
        }

        .ov-item:last-child {
            border-right: none;
        }

        .ov-item:hover {
            background: var(--navy-light);
        }

        .ov-icon {
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .ov-val {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }

        .ov-lbl {
            font-size: 0.67rem;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--muted2);
            margin-top: 4px;
        }

        @media (max-width: 575px) {
            .ov-item {
                flex: 1 1 48%;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
        }

        /* ── DESCRIPTION ── */
        .desc-content p {
            font-size: 0.88rem;
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 10px;
        }

        .desc-content strong {
            color: var(--navy-dark);
        }

        .desc-content hr {
            border: none;
            border-top: 1px dashed var(--border-dark);
            margin: 14px 0;
        }

        .desc-collapsed {
            max-height: 185px;
            overflow: hidden;
            position: relative;
        }

        .desc-collapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: linear-gradient(transparent, #fff);
        }

        .show-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            background: none;
            border: 1px solid var(--border-dark);
            color: var(--navy);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: .04em;
            padding: 8px 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background .2s, color .2s, border-color .2s;
        }

        .show-more-btn:hover {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
        }

        /* ── ADDRESS / DETAILS LIST ── */
        .two-col-list {
            columns: 2;
            column-gap: 24px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 575px) {
            .two-col-list {
                columns: 1;
            }
        }

        .two-col-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.84rem;
            break-inside: avoid;
        }

        .two-col-list li:last-child {
            border-bottom: none;
        }

        .two-col-list li strong {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--muted);
            white-space: nowrap;
            min-width: 100px;
        }

        .two-col-list li span {
            color: var(--dark);
            font-weight: 600;
        }

        /* ── FORMS ── */
        .form-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-bottom: 6px;
        }

        .form-control {
            display: block;
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.86rem;
            padding: 10px 14px;
            color: var(--dark);
            background: #fafbfd;
            transition: border-color .2s, box-shadow .2s;
            font-family: inherit;
        }

        .form-control:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(26, 43, 94, .1);
            background: #fff;
            outline: none;
        }

        textarea.form-control {
            resize: vertical;
        }

        .form-select {
            display: block;
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.86rem;
            padding: 10px 14px;
            background: #fafbfd;
            color: var(--dark);
            font-family: inherit;
            cursor: pointer;
        }

        .form-select:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(26, 43, 94, .1);
            outline: none;
        }

        .btn-submit {
            background: var(--navy);
            color: #fff;
            border: 2px solid var(--navy);
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s, border-color .2s;
            font-family: inherit;
        }

        .btn-submit:hover {
            background: var(--red);
            border-color: var(--red);
        }

        .sub-head {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin: 22px 0 16px;
            padding-top: 18px;
            border-top: 1px solid var(--border);
        }

        .gdpr-text {
            font-size: 0.75rem;
            color: var(--muted2);
            margin-bottom: 6px;
        }

        .gdpr-text a {
            color: var(--navy);
            text-decoration: underline;
        }

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

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

        @media (max-width: 650px) {
            .form-grid-3 {
                grid-template-columns: 1fr;
            }

            .form-grid-2 {
                grid-template-columns: 1fr;
            }
        }

        /* ── AGENT ROW ── */
        .agent-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
        }

        .agent-avatar {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--navy-light);
            flex-shrink: 0;
        }

        .agent-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .agent-link {
            font-size: 0.76rem;
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            letter-spacing: .03em;
        }

        .agent-link:hover {
            color: var(--red);
        }

        /* ── REVIEW ── */
        .review-empty {
            text-align: center;
            padding: 32px 20px;
            color: var(--muted2);
            font-size: 0.86rem;
            border-bottom: 1px solid var(--border);
        }

        /* ── SIDEBAR ── */
        .sidebar-card {
            background: var(--surface);
            border-radius: 10px;
            border: 1px solid var(--border);
            overflow: hidden;
            position: sticky;
            top: 20px;
            box-shadow: 0 4px 20px rgba(13, 21, 40, .1);
        }

        .sidebar-price-header {
            background: var(--navy-dark);
            padding: 20px 22px;
            border-bottom: 3px solid var(--red);
        }

        .sidebar-price-header .lbl {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 6px;
        }

        .sidebar-price-header .price {
            font-size: 1.55rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px;
        }

        .sidebar-price-header .price-sub {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, .35);
            text-decoration: line-through;
        }

        .sidebar-body {
            padding: 20px 22px;
        }

        .btn-send {
            display: block;
            width: 100%;
            background: var(--red);
            color: #fff;
            border: 2px solid var(--red);
            padding: 13px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.84rem;
            letter-spacing: .07em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s, border-color .2s;
            font-family: inherit;
            margin-top: 8px;
        }

        .btn-send:hover {
            background: var(--red-hover);
            border-color: var(--red-hover);
        }

        .quick-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 12px;
        }

        .quick-btn {
            padding: 9px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: .04em;
            cursor: pointer;
            border: 1px solid var(--border-dark);
            transition: background .2s, color .2s, border-color .2s;
            font-family: inherit;
        }

        .quick-btn.call-btn {
            background: var(--navy-light);
            color: var(--navy);
            border-color: var(--border-dark);
        }

        .quick-btn.call-btn:hover {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
        }

        .quick-btn.wa-btn {
            background: #fff;
            color: #128c7e;
            border-color: #b2d8d4;
        }

        .quick-btn.wa-btn:hover {
            background: #128c7e;
            color: #fff;
            border-color: #128c7e;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .sidebar-card {
                position: static;
            }
        }

        @media (max-width: 575px) {
            .block-body {
                padding: 16px;
            }

            .block-head {
                padding: 13px 16px;
            }

            .sidebar-body {
                padding: 16px;
            }
        }

        /*  */
        /* ── SHARE & SAVE ── */
        .share-save-row {
            display: flex;
            gap: 12px;
            margin-top: 14px;
        }

        .ss-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 10px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            cursor: pointer;
            transition: border-color .22s, box-shadow .22s, transform .18s;
        }

        .ss-btn:hover {
            box-shadow: 0 4px 16px rgba(26, 43, 94, .10);
            transform: translateY(-2px);
        }

        .ss-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            transition: background .22s;
        }

        /* Share — blue */
        .share-icon {
            background: #e8f0fb;
            color: #1a2b5e;
        }

        .ss-btn:hover .share-icon {
            background: #1a2b5e;
            color: #fff;
        }

        /* Save — pink/red */
        .save-icon {
            background: #fdeef2;
            color: #c0394b;
        }

        .ss-btn:hover .save-icon {
            background: #c0394b;
            color: #fff;
        }

        /* saved/active state */
        .ss-btn.saved .save-icon {
            background: #c0394b;
            color: #fff;
        }

        .ss-btn.saved .save-icon i {
            font-weight: 900;
            /* solid heart */
        }

        .ss-label {
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: .04em;
            color: #4a5568;
            text-transform: uppercase;
        }

        /*  */

        /* ── RELATED PROPERTIES ── */
        .related-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-top: 14px;
            overflow: hidden;
        }

        .related-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 18px 14px;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
        }

        .related-header i {
            color: var(--red);
            font-size: 1rem;
        }

        .related-divider {
            height: 2px;
            background: linear-gradient(to right, var(--red) 40px, #e2e8f0 40px);
            margin: 0 0 6px;
        }

        .related-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 18px;
            text-decoration: none;
            border-bottom: 1px solid #f0f4fa;
            transition: background .2s, padding-left .2s;
        }

        .related-item:last-child {
            border-bottom: none;
        }

        .related-item:hover {
            background: #f5f7fc;
            padding-left: 22px;
        }

        .related-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: #fdeef2;
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            flex-shrink: 0;
            transition: background .2s, color .2s;
        }

        .related-item:hover .related-icon {
            background: var(--red);
            color: #fff;
        }

        .related-text {
            font-size: 0.84rem;
            font-weight: 500;
            color: #3c4a68;
            line-height: 1.4;
            transition: color .2s;
        }

        .related-item:hover .related-text {
            color: var(--navy);
        }



