 @media (max-width: 991px) {
      .right-sidebar {
        display: none !important;
      }
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Open Sans", sans-serif;
      background: #fff;
      color: #222;
    }

    .top-strip {
      background: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      padding: 0;
    }

    .top-strip-site-visit {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #1a1a1a;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 20px;
      text-decoration: none;
      border-right: 1px solid #333;
      cursor: pointer;
      white-space: nowrap;
    }

    .top-strip-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #25d366;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 10px 20px;
      text-decoration: none;
      white-space: nowrap;
    }

    .top-strip-phone:hover {
      background: #1ebe5d;
    }

    /* ══════════════════════════════
           NAVBAR
        ══════════════════════════════ */
    nav {
      background: #fff;
      border-bottom: 1px solid #e0e0e0;
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-inner {
      display: flex;
      align-items: stretch;
      max-width: 100%;
    }

    .nav-logo {
      padding: 8px 16px;
      border-right: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
      min-width: 140px;
    }

    .nav-logo img {
      height: 55px;
      width: auto;
      display: block;
    }

    /* Fallback text logo */
    .m3m-text-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .m3m-text-logo .main {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -1px;
    }

    .m3m-text-logo .main .m {
      color: #4caf50;
    }

    .m3m-text-logo .main .three {
      color: #4caf50;
    }

    .m3m-text-logo .main .m2 {
      color: #e53935;
    }

    .m3m-text-logo .sub {
      font-size: 9px;
      color: #666;
      font-style: italic;
      margin-top: 2px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      flex: 1;
    }

    .nav-menu li a {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 18px;
      height: 100%;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
      border-right: 1px solid #f0f0f0;
      transition: background 0.2s;
    }

    .nav-menu li a:hover {
      background: #f5f5f5;
    }

    .nav-menu li a.active {
      background: #1a1a1a;
      color: #fff;
    }

    .nav-menu li:first-child a {
      padding: 0 16px;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px 16px;
      margin-left: auto;
      align-self: center;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #333;
      border-radius: 2px;
    }

    /* ══════════════════════════════
           PAGE WRAPPER
        ══════════════════════════════ */
    .page-wrapper {
      display: flex;
      min-height: 100vh;
    }

    /* ══════════════════════════════
           MAIN CONTENT
        ══════════════════════════════ */
    .main-content {
      flex: 1;
      min-width: 0;
    }

    /* ══════════════════════════════
           HERO SECTION
        ══════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: 90vh;
      min-height: 560px;
      overflow: hidden;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* Fallback gradient if no image */
    .hero-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          #1a0f30 0%,
          #2d1a4e 30%,
          #0d0820 60%,
          #1a0f30 100%);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
          rgba(0, 0, 0, 0.55) 0%,
          rgba(0, 0, 0, 0.2) 50%,
          rgba(0, 0, 0, 0.1) 100%);
    }

    /* ── HERO CARD ── */
    .hero-card {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 400px;
      background: #fff;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
      z-index: 10;
    }

    .hero-card-new-launch {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 11px 16px;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .hero-card-body {
      padding: 14px 16px 0;
    }

    .hero-card-title {
      font-size: 18px;
      font-weight: 800;
      color: #111;
      text-align: center;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .hero-card-location {
      font-size: 14px;
      font-weight: 600;
      color: #c8830a;
      text-align: center;
      margin-bottom: 12px;
    }

    .hero-card-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: #f5f5f5;
      border: 1px solid #e8e8e8;
      margin: 0 0 12px;
    }

    .hero-card-stat {
      text-align: center;
      padding: 10px 6px;
      border-right: 1px solid #e0e0e0;
    }

    .hero-card-stat:last-child {
      border-right: none;
    }

    .stat-label {
      font-size: 15px;
      color: #777;
      margin-bottom: 3px;
      font-weight: 500;
    }

    .stat-val {
      font-size: 13px;
      font-weight: 700;
      color: #111;
    }

    .hero-card-tagline {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 10px 12px;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin: 0 0 10px;
      /* font-style: italic; */
    }

    .hero-card-bhk {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
    }

    .hero-card-price {
      text-align: center;
      font-size: 22px;
      font-weight: 800;
      color: #111;
      margin-bottom: 10px;
    }

    .hero-card-enquire {
      display: block;
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 13px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      letter-spacing: 0.5px;
      transition: background 0.2s;
      margin-bottom: 0;
    }

    .hero-card-enquire:hover {
      background: #333;
    }

    /* ══════════════════════════════
           CONTENT SECTIONS
        ══════════════════════════════ */
    .content-section {
      padding: 32px 24px;
      border-bottom: 1px solid #e8e8e8;
    }

    .section-title-main {
      font-size: 26px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
      text-align: center;
    }

    .section-accent-heading {
      font-size: 17px;
      font-weight: 600;
      color: #8b5e1a;
      margin-bottom: 12px;
    }

    .section-body {
      font-size: 14px;
      color: #444;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    /* Feature icons */
    .features-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin: 20px 0;
    }

    .feature-icon-item {
      text-align: center;
      padding: 16px 8px;
    }

    .feature-icon-circle {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }

    .feature-icon-label {
      font-size: 11px;
      font-weight: 700;
      color: #111;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      line-height: 1.3;
    }

    .btn-download {
      display: inline-block;
      background: #111;
      color: #fff;
      padding: 11px 24px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      margin-top: 8px;
      transition: background 0.2s;
      letter-spacing: 0.5px;
    }

    .btn-download:hover {
      background: #333;
    }

    /* Price section */
    .price-section {
      padding: 32px 24px;
      border-bottom: 1px solid #e8e8e8;
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      border: 1px solid #e0e0e0;
    }

    .price-table th {
      background: #fff;
      color: #111;
      padding: 12px 16px;
      text-align: left;
      font-weight: 700;
      border-bottom: 1px solid #e0e0e0;
      border-right: 1px solid #e0e0e0;
    }

    .price-table th:last-child {
      border-right: none;
    }

    .price-table td {
      padding: 12px 16px;
      border-bottom: 1px solid #e0e0e0;
      border-right: 1px solid #e0e0e0;
      color: #333;
    }

    .price-table td:last-child {
      border-right: none;
    }

    .price-table tr:nth-child(even) td {
      background: #f9f9f9;
    }

    .btn-price-request {
      background: #1a1a1a;
      color: #fff;
      padding: 7px 16px;
      font-size: 11px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-price-request:hover {
      background: #333;
    }

    .price-map-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .price-map-img-fallback {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, #e8f0e8, #c8d8c8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: #666;
      font-weight: 600;
    }

    .btn-location {
      display: block;
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 12px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .btn-location:hover {
      background: #333;
    }

    /* Virtual Tour */
    .vt-heading {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 14px;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 2px;
    }

    .vt-wrapper {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      cursor: pointer;
    }

    .vt-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .vt-img-fallback {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a0f2e, #2d1550, #1a0f2e);
    }

    .vt-overlay-strip {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      gap: 16px;
    }

    .vt-play-btn {
      width: 52px;
      height: 52px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      padding-left: 4px;
      flex-shrink: 0;
    }

    .vt-strip-text {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
    }

    /* Floor plan */
    .plan-image-box {
      border: 1px solid #e0e0e0;
      padding: 16px;
      text-align: center;
      background: #fafafa;
      margin: 12px 0;
    }

    .plan-image-placeholder {
      width: 100%;
      max-width: 380px;
      height: 220px;
      background: linear-gradient(135deg, #f0ede8, #e8e4de);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      color: #888;
      letter-spacing: 2px;
      border: 1px solid #ddd;
    }

    .floorplan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 12px;
    }

    .fp-item {
      border: 1px solid #e0e0e0;
      padding: 10px;
      background: #fafafa;
    }

    .fp-thumb {
      background: #f0ece6;
      width: 100%;
      height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #777;
      font-weight: 700;
      text-align: center;
      line-height: 1.5;
    }

    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin: 12px 0;
    }

    .gallery-item {
      aspect-ratio: 4/3;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 500;
      transition: transform 0.3s;
      position: relative;
    }

    .gallery-item:hover .gallery-img-placeholder {
      transform: scale(1.05);
    }

    .es-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 255, 255, 0.9);
      padding: 3px 8px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #111;
    }

    .gal-1 {
      background: linear-gradient(135deg, #d4cec5, #c8c0b5);
      color: #555;
    }

    .gal-2 {
      background: linear-gradient(135deg, #7a9f6e, #3d6845);
      color: rgba(255, 255, 255, 0.8);
    }

    .gal-3 {
      background: linear-gradient(135deg, #4a7a5a, #2d5a3d);
      color: rgba(255, 255, 255, 0.8);
    }

    .gal-4 {
      background: linear-gradient(135deg, #8a6a9e, #4a2a6a);
      color: rgba(255, 255, 255, 0.8);
    }

    .gal-5 {
      background: linear-gradient(135deg, #5a7a9e, #3a5a8e);
      color: rgba(255, 255, 255, 0.8);
    }

    .gal-6 {
      background: linear-gradient(135deg, #c8a86e, #a08050);
      color: rgba(255, 255, 255, 0.8);
    }

    .gal-7 {
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      color: rgba(255, 255, 255, 0.5);
    }

    .gal-8 {
      background: linear-gradient(135deg, #e8d8b8, #d0c0a0);
      color: #555;
    }

    .gal-9 {
      background: linear-gradient(135deg, #c8c8c8, #b0b0b0);
      color: #555;
    }

    /* Amenities */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      margin: 12px 0;
    }

    .amenity-item {
      text-align: center;
      padding: 14px 6px;
      border: 1px solid #f0f0f0;
    }

    .amenity-emoji {
      font-size: 24px;
      display: block;
      margin-bottom: 6px;
    }

    .amenity-label {
      font-size: 10px;
      color: #555;
      font-weight: 600;
      line-height: 1.3;
    }

    /* Why section */
    .why-section {
      background: #1a1a1a;
      color: #fff;
      padding: 32px 24px;
    }

    .why-section h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .why-section p {
      font-size: 13.5px;
      line-height: 1.75;
      color: #ccc;
    }

    /* Sizes section */
    .sizes-section {
      background: #1a1a1a;
      color: #fff;
      padding: 32px 24px;
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .sizes-thumb {
      width: 180px;
      height: 120px;
      background: linear-gradient(135deg, #2a3a5e, #1a2a4e);
      flex-shrink: 0;
    }

    .sizes-text h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .sizes-text p {
      font-size: 13px;
      color: #bbb;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .btn-download-white {
      border: 1px solid #555;
      color: #fff;
      background: transparent;
      padding: 9px 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-download-white:hover {
      background: #fff;
      color: #111;
    }

    /* Location */
    .map-view-placeholder {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, #e8f0e8, #d0dcd0, #b8ccb8);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-info-box {
      position: absolute;
      top: 16px;
      left: 16px;
      background: #fff;
      padding: 10px 14px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      font-size: 11px;
      max-width: 200px;
    }

    .map-info-box h4 {
      font-size: 13px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }

    .map-info-box p {
      color: #555;
      line-height: 1.5;
    }

    .map-stars {
      color: #f4a900;
      font-size: 12px;
      margin-top: 4px;
    }

    .location-list {
      list-style: none;
      margin: 12px 0;
    }

    .location-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
    }

    .loc-name {
      color: #333;
      font-weight: 500;
    }

    .loc-dist {
      background: #1a1a1a;
      color: #fff;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 600;
    }

    /* RERA bar */
    .rera-bar {
      background: #f5f5f5;
      border-top: 1px solid #e0e0e0;
      padding: 10px 24px;
      text-align: center;
      font-size: 11.5px;
      color: #555;
      font-weight: 500;
    }

    /* Footer */
    footer {
      background: #1a1a1a;
      color: #ccc;
      padding: 24px;
      font-size: 12px;
      line-height: 1.7;
    }

    footer a {
      color: #aaa;
    }

    footer .footer-title {
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 8px;
    }

    /* Sub-section title */
    .sub-section-title {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 12px;
    }

    /* ══════════════════════════════
           RIGHT SIDEBAR
        ══════════════════════════════ */
    .right-sidebar {
      width: 300px;
      flex-shrink: 0;
      border-left: 1px solid #e0e0e0;
    }

    .sidebar-inner {
      position: fixed;
      top: 0;
      right: 0;
      width: 300px;
      background: #fff;
      height: 100vh;
      overflow-y: auto;
    }

    .sidebar-top-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #1a1a1a;
      color: #fff;
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .sidebar-top-btn:hover {
      background: #333;
    }

    .sidebar-form {
      padding: 16px;
    }

    .sidebar-form h3 {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #111;
    }

    .form-input {
      display: block;
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 10px 2px;
      font-size: 13px;
      color: #333;
      margin-bottom: 14px;
      outline: none;
      font-family: "Open Sans", sans-serif;
      background: transparent;
      transition: border-color 0.2s;
    }

    .form-input:focus {
      border-bottom-color: #111;
    }

    .form-input::placeholder {
      color: #aaa;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 70px;
    }

    .btn-book-slot {
      display: block;
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      border: none;
      padding: 13px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      transition: background 0.2s;
    }

    .btn-book-slot:hover {
      background: #333;
    }

    .sidebar-consent {
      font-size: 10.5px;
      color: #999;
      line-height: 1.6;
      text-align: center;
    }

    .sidebar-phone-cta {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 13px;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
    }

    /* We Promise */
    .we-promise {
      padding: 16px;
      border-top: 1px solid #e8e8e8;
    }

    .we-promise h4 {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 14px;
      text-align: center;
    }

    .promise-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 12.5px;
      font-weight: 600;
      color: #333;
    }

    .promise-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    /* ══════════════════════════════
           POPUP
        ══════════════════════════════ */
    .popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 999;
      align-items: center;
      justify-content: center;
    }

    .popup-overlay.show {
      display: flex;
    }

    .popup-box {
      background: #fff;
      width: 90%;
      max-width: 540px;
      display: flex;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    }

    .popup-close-btn {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 30px;
      height: 30px;
      background: #fff;
      border: none;
      border-radius: 50%;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .popup-left {
      background: #1a1a1a;
      color: #fff;
      width: 170px;
      flex-shrink: 0;
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
    }

    .popup-left h3 {
      font-size: 16px;
      font-weight: 700;
      text-align: center;
    }

    .popup-promise-item {
      text-align: center;
      font-size: 11px;
      color: #bbb;
    }

    .popup-promise-item .icon {
      font-size: 26px;
      margin-bottom: 6px;
    }

    .popup-right {
      flex: 1;
      padding: 20px;
    }

    .popup-right h4 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .popup-right h4 span {
      color: #e53935;
    }

    .popup-phone-bar {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 14px;
      font-weight: 700;
    }

    /* ══════════════════════════════
           MOBILE RESPONSIVE
        ══════════════════════════════ */
    @media (max-width: 768px) {
      .top-strip {
        display: none;
      }

      .nav-menu {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 999;
        padding: 60px 24px 24px;
        gap: 4px;
        overflow-y: auto;
      }

      .nav-menu.open li a {
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        border-right: none;
        font-size: 15px;
        height: auto;
      }

      /* HERO on mobile: image on top, card below */
      .hero {
        height: auto;
        min-height: unset;
        display: flex;
        flex-direction: column;
      }

      .hero-bg-img,
      .hero-bg-fallback {
        position: relative;
        width: 100%;
        height: 260px;
        flex-shrink: 0;
      }

      .hero-overlay {
        display: none;
      }

      /* Card below image on mobile */
      .hero-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        box-shadow: none;
        border-top: 1px solid #e0e0e0;
      }

      .page-wrapper {
        flex-direction: column;
      }

      .right-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e0e0e0;
      }

      .sidebar-inner {
        position: relative;
        height: auto;
      }

      .features-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .floorplan-grid {
        grid-template-columns: 1fr;
      }

      .sizes-section {
        flex-direction: column;
      }

      .sizes-thumb {
        width: 100%;
        height: 150px;
      }
    }

    @media (max-width: 480px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    #virtual-tour {
      width: 100%;
      padding: 60px 0;
      background: #f5f5f5;
      text-align: center;
    }

    /* Top Heading */
    .vt-heading h2 {
      font-size: 40px;
      font-weight: 500;
      letter-spacing: 3px;
      margin-bottom: 40px;
    }

    /* Wrapper */
    .virtual-tour-wrapper {
      width: 85%;
      margin: auto;
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    /* Image Auto Height */
    .vt-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Horizontal Strip */
    .overlay-strip {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 140px;
      /* thickness of horizontal strip */
      background: rgba(0, 0, 0, 0.45);
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Play Button */
    .play-button {
      width: 90px;
      height: 90px;
      background: #fff;
      color: #000;
      border-radius: 50%;
      font-size: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .play-button:hover {
      transform: scale(1.1);
    }

    /* --------------------price-section------------- */
    .price-section>div {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
    }

    /* On mobile (max-width 768px), switch to one column */
    @media (max-width: 768px) {
      .price-section>div {
        grid-template-columns: 1fr;
      }
    }

    .hero-card {
      background: #f3f3f3;
      /* light outer bg */
      padding: 15px;
      border-radius: 14px;
    }

    .hero-card-body {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
    }