 :root {
      --orange: #FF5200;
      --orange-dark: #FF5200;
      --orange-light: #fff5ec;
      --dark: #1a1a2e;
      --mid: #2d2d44;
      --text: #333;
      --muted: #777;
      --border: #e8e8e8;
      --white: #fff;
      --bg: #f8f8f8;
      --green: #27ae60;
      --blue: #2980b9;
    }
    
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff;}

    /* ── TOP BAR ── */
    .top-bar { background: var(--dark); color: #ccc; font-size: 12px; padding: 5px 0; }
    .top-bar a { color: #ccc; text-decoration: none; }
    .top-bar a:hover { color: var(--orange); }

    /* ── NAVBAR ── */
    .main-nav { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; }
    .navbar-brand img { height: 36px; }
    .brand-text { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--orange); font-weight: 700; }
    .brand-text span { color: var(--dark); }
    .nav-search { flex: 1; max-width: 650px; }
    .nav-search .input-group { border: 2px solid var(--orange); border-radius: 8px; overflow: hidden; }
    .nav-search select { border: none; background: #f5f5f5; border-right: 1px solid #ddd; font-size: 13px; max-width: 110px; }
    .nav-search input { border: none; font-size: 13px; }
    .nav-search input:focus { box-shadow: none; }
    .nav-search .btn { background: var(--orange); border: none; color: #fff; px: 14px; }
    .nav-link { font-size: 13px; font-weight: 500; color: var(--text) !important; padding: 8px 10px !important; }
    .nav-link:hover { color: var(--orange) !important; }
    .nav-icon { font-size: 22px; color: var(--dark); position: relative; }
    .badge-notif { position: absolute; top: -4px; right: -6px; background: var(--orange); color: #fff; font-size: 9px; border-radius: 50%; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }
    .btn-list-prop { background: var(--orange); color: #fff !important; border-radius: 6px; font-size: 12px; font-weight: 600; padding: 6px 12px; margin: 0px 12px;}
    .btn-list-mat { background: #fff; color: var(--orange) !important; border: 2px solid var(--orange); border-radius: 6px; font-size: 12px; font-weight: 600; padding: 6px 12px; }
    .btn-list-prop:hover { background: var(--orange-dark); }
    .btn-list-mat:hover { background: var(--orange-light); }

    /* ── SUB NAV ── */
    .sub-nav { background: #ffffff; }
    .sub-nav .navbar-nav .nav-link { color: #fff !important; font-size: 13px; font-weight: 500; padding: 8px 14px !important; }
    .sub-nav .navbar-nav .nav-link:hover { background: rgba(255,255,255,.15); border-radius: 4px; }
    .all-cats-btn { background: rgb(244 121 32); color: #fff; border: none; font-size: 13px; font-weight: 600; padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
    .all-cats-btn:hover { background: rgba(0,0,0,.3); }

    /* ── HERO ── */
    .hero { position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); min-height: 420px; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80') center/cover; opacity: .25; }
    .hero-content { position: relative; z-index: 2; padding: 60px 0 40px; }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 48px); color: #fff; line-height: 1.15; font-weight: 700; }
    .hero h1 span { color: var(--orange); }
    .hero p.tagline { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 8px; }
    .hero-search-box { background: rgba(255,255,255,.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 20px 24px; margin-top: 28px; }
    .hero-search-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .hero-search-row select, .hero-search-row input { border: 1px solid #ddd; border-radius: 8px; padding: 10px 14px; font-size: 13px; background: #fff; }
    .hero-search-row input { flex: 1; min-width: 200px; }
    .btn-search-hero { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 10px 24px; font-weight: 600; font-size: 14px; white-space: nowrap; }
    .btn-search-hero:hover { background: var(--orange-dark); }
    .popular-tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
    .popular-tags span { color: rgba(255,255,255,.6); font-size: 12px; }
    .tag-pill { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 3px 12px; font-size: 12px; cursor: pointer; transition: .2s; }
    .tag-pill:hover { background: var(--orange); border-color: var(--orange); }

    /* Premium supplier card */
    .premium-box { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
    .premium-box .head { background: var(--orange); color: #fff; font-size: 12px; font-weight: 600; padding: 8px 14px; display: flex; justify-content: space-between; align-items: center; }
    .premium-box .body { padding: 16px; text-align: center; }
    .premium-box img { max-height: 80px; object-fit: contain; margin-bottom: 10px; }
    .premium-box p { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .btn-shop { background: var(--orange); color: #fff; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; padding: 6px 16px; }
    .carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
    .carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; }
    .carousel-dots span.active { background: var(--orange); }

    /* ── VALUE STRIP ── */
    .value-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 20px 0; }
    .value-card { display: flex; gap: 12px; align-items: flex-start; }
    .value-icon { width: 44px; height: 44px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .value-icon i { color: var(--orange); font-size: 18px; }
    .value-card h6 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
    .value-card p { font-size: 11px; color: var(--muted); margin: 0; }
    .list-cta-box { border: 2px solid var(--orange); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
    .list-cta-box .icon-wrap { font-size: 32px; color: var(--orange); }
    .list-cta-box h6 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
    .list-cta-box p { font-size: 12px; color: var(--muted); margin: 0; padding: 7px;}
    .btn-orange { background: var(--orange); color: #fff; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; padding: 7px 16px; text-decoration: none;}
    .btn-orange:hover { background: var(--orange-dark); color: #fff; }

    /* ── CATEGORIES ── */
    .section-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 0; }
    .view-all { color: var(--orange); font-size: 13px; font-weight: 600; text-decoration: none; }
    .view-all:hover { text-decoration: underline; }
    .cat-card { text-align: center; cursor: pointer; transition: transform .2s; }
    .cat-card:hover { transform: translateY(-4px); }
    .cat-icon-wrap { width: 70px; height: 70px; border-radius: 14px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; border: 2px solid transparent; transition: .2s; }
    .cat-card:hover .cat-icon-wrap { border-color: var(--orange); background: #fff; box-shadow: 0 4px 16px rgba(244,121,32,.2); }
    .cat-icon-wrap img { width: 38px; height: 38px; object-fit: contain; }
    .cat-icon-wrap i { font-size: 28px; color: var(--orange); }
    .cat-card span { font-size: 11px; font-weight: 600; color: var(--text); }
    a.cat-card { text-decoration: none; }

    /* ── FEATURED PROPERTY ── */
    .section-bg { background: var(--bg); }
    .prop-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
    .prop-badge .badge { font-size: 10px; font-weight: 700; border-radius: 4px; }
    .prop-main-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
    .prop-img-wrap { position: relative; overflow: hidden; height: 260px; }
    .prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .photos-count { position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; border-radius: 6px; padding: 4px 10px; }
    .prop-info { padding: 20px; }
    .prop-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
    .prop-type { background: var(--orange-light); color: var(--orange); font-size: 10px; font-weight: 700; border-radius: 4px; padding: 2px 8px; }
    .prop-location { color: var(--muted); font-size: 12px; margin: 6px 0 12px; }
    .prop-location i { color: var(--orange); }
    .prop-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
    .stat-box { text-align: center; border: 1px solid var(--border); border-radius: 8px; padding: 8px 4px; }
    .stat-box i { color: var(--orange); font-size: 16px; margin-bottom: 3px; display: block; }
    .stat-box .val { font-size: 12px; font-weight: 700; display: block; }
    .stat-box .lbl { font-size: 10px; color: var(--muted); display: block; }
    .prop-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
    .btn-explore { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 600; }
    .btn-explore:hover { background: var(--orange-dark); color: #fff; }
    .btn-details { background: #fff; color: var(--dark); border: 2px solid var(--border); border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 600; }
    .btn-details:hover { border-color: var(--orange); color: var(--orange); }
    .prop-thumb-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.07); height: 100%; }
    .prop-thumb-card img { width: 100%; height: 160px; object-fit: cover; }
    .prop-thumb-info { padding: 12px; }
    .prop-thumb-info h6 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }

    /* ── PLOT CARDS ── */
    .plot-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s; }
    .plot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
    .plot-card-img { position: relative; overflow: hidden; height: 150px; }
    .plot-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
    .plot-card:hover .plot-card-img img { transform: scale(1.06); }
    .plot-tag { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 700; border-radius: 4px; padding: 2px 7px; text-transform: uppercase; }
    .plot-card-body { padding: 12px; }
    .plot-card-body h6 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
    .plot-card-body .loc { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
    .plot-card-body .size { font-size: 11px; color: var(--text); margin-bottom: 6px; }
    .plot-card-body .price { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
    .btn-sm-explore { background: var(--orange); color: #fff; border: none; border-radius: 6px; font-size: 11px; font-weight: 600; padding: 5px 12px; width: 100%; text-decoration: none; }
    .btn-sm-explore:hover { background: var(--orange-dark); color: #fff; }

    /* ── WHY INVEST ── */
    .why-card { background: #fff; border-radius: 12px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; box-shadow: 0 2px 10px rgba(0,0,0,.06); height: 100%; }
    .why-icon { width: 46px; height: 46px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .why-icon i { color: var(--orange); font-size: 20px; }
    .why-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
    .why-card p { font-size: 12px; color: var(--muted); margin: 0; }
    .sell-cta { background: linear-gradient(135deg, var(--orange), #f7941e); border-radius: 16px; padding: 28px; color: #fff; height: 100%; display: flex; flex-direction: column; justify-content: center; }
    .sell-cta h4 { font-weight: 700; margin-bottom: 8px; }
    .sell-cta p { font-size: 13px; opacity: .9; margin-bottom: 16px; }
    .btn-white { background: #fff; color: var(--orange); border: none; border-radius: 8px; padding: 9px 20px; font-weight: 700; font-size: 13px; text-decoration: none; }
    .btn-white:hover { background: var(--orange-light); }

    /* ── BRANDS ── */
    .brand-logo-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; transition: box-shadow .2s; }
    .brand-logo-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
    .brand-logo-card img { height: 50px; object-fit: contain; margin-bottom: 8px; }
    .brand-logo-card .name { font-size: 12px; font-weight: 700; display: block; }
    .brand-logo-card .rating { font-size: 11px; color: #f0c040; }
    .brand-logo-card .stores { font-size: 10px; color: var(--muted); }

    /* ── DEALS ── */
    .deal-card { border-radius: 14px; overflow: hidden; position: relative; padding: 20px; color: #fff; min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; }
    .deal-card .off { font-size: 22px; font-weight: 800; display: block; line-height: 1; }
    .deal-card .on { font-size: 12px; opacity: .9; margin-bottom: 6px; }
    .deal-card .valid { font-size: 10px; opacity: .75; }
    .btn-deal { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 6px; font-size: 11px; font-weight: 600; padding: 4px 12px; text-decoration: none; display: inline-block; margin-top: 8px; }
    .btn-deal:hover { background: rgba(255,255,255,.35); color: #fff; }
    .deal1 { background: linear-gradient(135deg, #f47920, #e55a00); }
    .deal2 { background: linear-gradient(135deg, #2ecc71, #27ae60); }
    .deal3 { background: linear-gradient(135deg, #3498db, #2980b9); }
    .deal-img { position: absolute; right: 12px; bottom: 12px; opacity: .25; font-size: 60px; }

    /* ── CONTRACTORS ── */
    .contractor-card { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 2px 10px rgba(0,0,0,.07); display: flex; gap: 14px; align-items: center; transition: box-shadow .2s; }
    .contractor-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
    .contractor-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--orange-light); }
    .contractor-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .contractor-info h6 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
    .contractor-info .role { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
    .contractor-info .stars { color: #f0c040; font-size: 11px; }
    .contractor-info .projects { font-size: 10px; color: var(--muted); }

    /* ── BLOG ── */
    .blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.07); transition: transform .2s; }
    .blog-card:hover { transform: translateY(-4px); }
    .blog-card img { width: 100%; height: 140px; object-fit: cover; }
    .blog-card-body { padding: 14px; }
    .blog-card-body h6 { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
    .blog-meta { font-size: 10px; color: var(--muted); }

    /* ── APP STRIP ── */
    .app-strip { background: linear-gradient(135deg, var(--dark), var(--mid)); border-radius: 16px; padding: 32px; color: #fff; }
    .app-strip h4 { font-weight: 700; margin-bottom: 6px; }
    .app-strip p { font-size: 13px; opacity: .8; margin-bottom: 16px; }
    .store-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 8px; padding: 8px 16px; font-size: 12px; font-weight: 600; text-decoration: none; transition: .2s; }
    .store-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
    .store-btn i { font-size: 20px; }
    .newsletter-box { background: rgba(255,255,255,.07); border-radius: 12px; padding: 24px; }
    .newsletter-box h5 { font-weight: 700; margin-bottom: 6px; }
    .newsletter-box p { font-size: 12px; opacity: .8; margin-bottom: 14px; }
    .newsletter-input { display: flex; gap: 8px; }
    .newsletter-input input { flex: 1; border: none; border-radius: 8px; padding: 9px 14px; font-size: 13px; }
    .newsletter-input .btn { background: var(--orange); color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: 13px; white-space: nowrap; }

    /* ── FOOTER ── */
    footer { background: var(--dark); color: rgba(255,255,255,.75); }
    footer .brand-text { color: var(--orange); font-size: 20px; }
    footer .brand-text span { color: #fff; }
    footer p { font-size: 12px; line-height: 1.7; }
    footer h6 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 7px; }
    footer ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 12px; transition: .2s; }
    footer ul li a:hover { color: var(--orange); }
    .footer-bottom { background: rgba(0,0,0,.3); font-size: 11px; color: rgba(255,255,255,.5); }
    .social-icons a { color: rgba(255,255,255,.6); font-size: 16px; margin-right: 12px; transition: .2s; }
    .social-icons a:hover { color: var(--orange); }
    .contact-info { font-size: 12px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 8px; }
    .contact-info i { color: var(--orange); }

    /* ── SCROLL TOP ── */
    #scrollTop { position: fixed; bottom: 24px; right: 24px; background: var(--orange); color: #fff; border: none; border-radius: 50%; width: 42px; height: 42px; font-size: 18px; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(244,121,32,.4); cursor: pointer; z-index: 999; transition: .2s; }
    #scrollTop:hover { background: var(--orange-dark); transform: translateY(-2px); }

    /* ── PLOT HORIZONTAL SCROLLER ── */
    .plot-scroller-wrap { position: relative; }
    .plot-scroller { display: flex; gap: 16px; overflow-x: auto;overflow-y: hidden; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; -ms-overflow-style: none; }
    .plot-scroller::-webkit-scrollbar { display: none; }
    .plot-scroller .plot-card { min-width: 200px; max-width: 200px; flex-shrink: 0; }
    .scroll-btn { position: absolute; top: 50%; transform: translateY(-60%); z-index: 10; width: 36px; height: 36px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 3px 12px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; font-size: 15px; color: var(--dark); }
    .scroll-btn:hover { background: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(244,121,32,.35); }
    .scroll-btn.left { left: 0px; }
    .scroll-btn.right { right: 0px; }
    .scroll-btn.hidden { opacity: 0; pointer-events: none; }

    /* ── CATEGORIES SIDEBAR ── */
    .cat-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .cat-overlay.open { opacity: 1; pointer-events: all; }
    .cat-sidebar { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: #fff; z-index: 1200; box-shadow: 4px 0 24px rgba(0,0,0,.15); transition: left .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; display: flex; flex-direction: column; }
    .cat-sidebar.open { left: 0; }
    .cat-sidebar-head { background: var(--orange); color: #fff; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 2; }
    .cat-sidebar-head h5 { margin: 0; font-size: 15px; font-weight: 700; }
    .cat-sidebar-close { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; line-height: 1; }
    .cat-sidebar-search { padding: 12px 16px; border-bottom: 1px solid var(--border); position: sticky; top: 56px; background: #fff; z-index: 1; }
    .cat-sidebar-search input { width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 8px 12px; font-size: 13px; outline: none; }
    .cat-sidebar-search input:focus { border-color: var(--orange); }
    .cat-group { padding: 0 0 8px; }
    .cat-group-title { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; padding: 12px 20px 6px; }
    .cat-sidebar-item { display: flex; align-items: center; gap: 12px; padding: 10px 20px; cursor: pointer; transition: background .15s; border-left: 3px solid transparent; text-decoration: none; color: var(--text); }
    .cat-sidebar-item:hover { background: var(--orange-light); border-left-color: var(--orange); color: var(--orange); }
    .cat-sidebar-item.active { background: var(--orange-light); border-left-color: var(--orange); color: var(--orange); font-weight: 600; }
    .cat-sidebar-item .icon { width: 34px; height: 34px; border-radius: 8px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--orange); }
    .cat-sidebar-item:hover .icon { background: var(--orange); color: #fff; }
    .cat-sidebar-item.active .icon { background: var(--orange); color: #fff; }
    .cat-sidebar-item .label { font-size: 13px; flex: 1; }
    .cat-sidebar-item .count { font-size: 10px; background: #eee; border-radius: 10px; padding: 1px 7px; color: var(--muted); }
    .cat-sidebar-item:hover .count { background: rgba(244,121,32,.15); color: var(--orange); }
    .cat-sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--border); margin-top: auto; }
    .cat-sidebar-footer a { display: block; text-align: center; background: var(--orange); color: #fff; border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 600; text-decoration: none; }
    .cat-sidebar-footer a:hover { background: var(--orange-dark); }

    /* ── NAV ICON BUTTONS (reference image style) ── */
    .nav-icon-btn {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      text-decoration: none; color: var(--dark); cursor: pointer;
      background: none; border: none; padding: 4px 6px; border-radius: 8px;
      transition: color .2s, background .2s; position: relative;
    }
    .nav-icon-btn:hover { color: var(--orange); background: var(--orange-light); }
    .nav-icon-btn .nav-icon-symbol { font-size: 21px; position: relative; line-height: 1; }
    .nav-icon-btn .nav-icon-label { font-size: 10px; font-weight: 600; white-space: nowrap; letter-spacing: .2px; }
    .nav-icon-btn .badge-notif {
      position: absolute; top: -5px; right: -7px;
      background: #e53e3e; color: #fff; font-size: 9px; font-weight: 700;
      border-radius: 50%; width: 17px; height: 17px;
      display: flex; align-items: center; justify-content: center;
      border: 1.5px solid #fff; line-height: 1;
    }

    /* Account button — avatar circle + text */
    .nav-acc-btn {
      display: flex; align-items: center; gap: 9px;
      background: none; border: none; cursor: pointer;
      padding: 5px 10px; border-radius: 10px;
      transition: background .2s; text-decoration: none;
    }
    .nav-acc-btn:hover { background: var(--orange-light); }
    .nav-acc-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: #f0f0f0; border: 2px solid #ddd;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; color: #555; flex-shrink: 0;
      transition: border-color .2s;
    }
    .nav-acc-btn:hover .nav-acc-avatar { border-color: var(--orange); color: var(--orange); }
    .nav-acc-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
    .nav-acc-text .hello { font-size: 10px; color: var(--muted); font-weight: 500; }
    .nav-acc-text .signin { font-size: 12px; font-weight: 700; color: var(--dark); white-space: nowrap; }
    .nav-acc-chevron { font-size: 10px; color: var(--muted); margin-left: 2px; transition: transform .2s; }
    .account-dropdown-wrap:hover .nav-acc-chevron { transform: rotate(180deg); color: var(--orange); }
    .account-dropdown-wrap:hover .nav-acc-text .signin { color: var(--orange); }

    /* ── ACCOUNT DROPDOWN ── */
    .account-dropdown-wrap { position: relative; }
    .account-dropdown-menu {
      display: none; position: absolute; top: calc(100% + 0px); right: 0;
      background: #fff; border: 1px solid var(--border); border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.14); min-width: 230px; z-index: 2000;
      padding: 6px 0; animation: dropIn .18s ease;
    }
    .account-dropdown-wrap:hover .account-dropdown-menu { display: block; }
    @keyframes dropIn { from { opacity:0; transform:translateY(-8px);} to {opacity:1;transform:translateY(0);} }
    .account-dropdown-menu::before {
      content:''; position:absolute; top:-7px; right:20px;
      border-left:7px solid transparent; border-right:7px solid transparent;
      border-bottom:7px solid var(--border);
    }
    .account-dropdown-menu::after {
      content:''; position:absolute; top:-6px; right:21px;
      border-left:6px solid transparent; border-right:6px solid transparent;
      border-bottom:6px solid #fff;
    }
    .acc-drop-header { padding:14px 16px 12px; border-bottom:1px solid var(--border); margin-bottom:4px; display:flex; align-items:center; gap:10px; }
    .acc-drop-header .acc-avatar-lg { width:40px; height:40px; border-radius:50%; background:#f0f0f0; border:2px solid #ddd; display:flex; align-items:center; justify-content:center; font-size:19px; color:#888; flex-shrink:0; }
    .acc-drop-header .acc-info .name { font-size:13px; font-weight:700; color:var(--dark); }
    .acc-drop-header .acc-info .email { font-size:11px; color:var(--muted); margin-top:1px; }
    .acc-drop-item { display:flex; align-items:center; gap:10px; padding:9px 16px; font-size:13px; color:var(--text); text-decoration:none; transition:.15s; cursor:pointer; }
    .acc-drop-item:hover { background:var(--orange-light); color:var(--orange); }
    .acc-drop-item i { width:18px; color:var(--orange); font-size:13px; text-align:center; }
    .acc-drop-item .acc-badge { margin-left:auto; background:var(--orange); color:#fff; font-size:10px; font-weight:700; border-radius:10px; padding:1px 7px; }
    .acc-drop-divider { height:1px; background:var(--border); margin:4px 0; }
    .acc-drop-item.logout { color:#e74c3c; }
    .acc-drop-item.logout:hover { background:#fff5f5; color:#e74c3c; }
    .acc-drop-item.logout i { color:#e74c3c; }

    /* ── BOTTOM-FIXED BUTTONS ── */
    .bottom-action-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
      background: #fff; border-top: 1px solid var(--border);
      box-shadow: 0 -4px 16px rgba(0,0,0,.1);
      display: flex; gap: 10px; padding: 10px 16px;
      justify-content: flex-end; align-items: center;
    }
    .bottom-action-bar .btn-list-prop, .bottom-action-bar .btn-list-mat {
      font-size: 13px; padding: 9px 18px;
    }
    body { padding-bottom: 0px; }

    /* ── SUB-NAV SCROLL MENU ── */
    .sub-nav { position: relative; z-index: 900; }
    .sub-nav-inner { display:flex; align-items:center; width:100%; position:relative; }
    .sub-nav-scroller {
      display:flex; align-items:center; overflow-x:auto; scroll-behavior:smooth;
      scrollbar-width:none; -ms-overflow-style:none; gap:0; flex:1;
      overflow-y: visible;
    }
    .sub-nav-scroller::-webkit-scrollbar { display:none; }
    .sub-nav-scroll-btn {
      width:30px; height:30px; border-radius:50%; border:none;
      background:rgba(255,255,255,.25); color:#fff; display:flex; align-items:center;
      justify-content:center; cursor:pointer; flex-shrink:0; font-size:13px;
      transition:.2s; z-index:2;
    }
    .sub-nav-scroll-btn:hover { background:rgba(255,255,255,.45); }
    .sub-nav-scroll-btn.hidden { opacity:0; pointer-events:none; width:0; overflow:hidden; padding:0; margin:0; }
    .sub-nav-scroller .nav-link { white-space:nowrap; }

    /* ── SECTION HORIZONTAL SCROLL ── */
    .section-scroll-wrap { position:relative; }
    .section-scroller {
      display:flex; gap:16px; overflow-x:auto; overflow-y: hidden; scroll-behavior:smooth;
      scrollbar-width:none; -ms-overflow-style:none; padding-bottom:4px;
    }
    .section-scroller::-webkit-scrollbar { display:none; }
    .section-scroller .brand-logo-card,
    .section-scroller .contractor-card,
    .section-scroller .blog-card { min-width:200px; flex-shrink:0; }
    .section-scroller .contractor-card { min-width:280px; }
    .section-scroller .blog-card { min-width:220px; }
    .sec-scroll-btn {
      position:absolute; top:50%; transform:translateY(-60%); z-index:10;
      width:36px; height:36px; border-radius:50%; border:none;
      background:#fff; box-shadow:0 3px 12px rgba(0,0,0,.2);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:.2s; font-size:15px; color:var(--dark);
    }
    .sec-scroll-btn:hover { background:var(--orange); color:#fff; box-shadow:0 4px 16px rgba(244,121,32,.35); }
    .sec-scroll-btn.left { left:0px; }
    .sec-scroll-btn.right { right:0px; }
    .sec-scroll-btn.hidden { opacity:0; pointer-events:none; }

    /* ── SHOP BY CATEGORY SINGLE ROW SCROLL ── */
    .cat-scroll-wrap { position:relative; }
    .cat-scroller {
      display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth;
      scrollbar-width:none; -ms-overflow-style:none; padding:4px 2px 8px;
    }
    .cat-scroller::-webkit-scrollbar { display:none; }
    .cat-scroller .cat-card { min-width:80px; flex-shrink:0; }
    .cat-scroll-btn {
      position:absolute; top:50%; transform:translateY(-60%); z-index:10;
      width:36px; height:36px; border-radius:50%; border:none;
      background:#fff; box-shadow:0 3px 12px rgba(0,0,0,.15);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:.2s; font-size:15px; color:var(--dark);
    }
    .cat-scroll-btn:hover { background:var(--orange); color:#fff; }
    .cat-scroll-btn.left { left:0px; }
    .cat-scroll-btn.right { right:0px; }
    .cat-scroll-btn.hidden { opacity:0; pointer-events:none; }

    /* ── SUB-NAV DROPDOWNS ── */
    .sub-nav-dropdown-wrap {
      position: static;   /* intentionally static so menu uses fixed positioning via JS */
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }
    .sub-nav-dropdown-wrap > .nav-link {
      cursor: pointer;
      user-select: none;
      display: flex; align-items: center; gap: 4px;
    }
    /* The menu: hidden by default, shown on hover via class */
    .sub-nav-dropdown-menu {
      display: none;
      position: fixed;   /* fixed so it escapes all overflow:hidden parents */
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.16);
      min-width: 240px;
      z-index: 9999;
      padding: 6px 0;
      animation: dropIn .18s ease;
      top: 23%;
      /* top: calc(100% + 30%); */
    }
    .sub-nav-dropdown-wrap.open .sub-nav-dropdown-menu { display: block; }
    .sub-nav-drop-section { padding: 4px 0 2px; }
    .sub-nav-drop-section-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      letter-spacing: 1px; text-transform: uppercase;
      padding: 6px 16px 4px;
    }
    .sub-nav-drop-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 16px; font-size: 13px; color: var(--text);
      text-decoration: none; transition: .15s; white-space: nowrap;
      border-left: 3px solid transparent;
    }
    .sub-nav-drop-item:hover { background: var(--orange-light); color: var(--orange); border-left-color: var(--orange); }
    .sub-nav-drop-item i { width: 16px; color: var(--orange); font-size: 13px; flex-shrink:0; }
    .sub-nav-drop-divider { height: 1px; background: var(--border); margin: 4px 0; }
    .sub-nav-drop-item .badge-new {
      margin-left: auto; font-size: 9px; background: var(--orange);
      color: #fff; border-radius: 4px; padding: 1px 5px; font-weight: 700;
    }
    .sub-nav-drop-item .badge-hot {
      margin-left: auto; font-size: 9px; background: #e74c3c;
      color: #fff; border-radius: 4px; padding: 1px 5px; font-weight: 700;
    }
    /* Active nav link indicator */
    .sub-nav-dropdown-wrap.open > .nav-link,
    .sub-nav-dropdown-wrap > .nav-link:hover {
      color: var(--orange) !important;
    }

    /* ══════════════════════════════════════════
       MOBILE NAVBAR (shown only on mobile)
    ══════════════════════════════════════════ */
    .mob-nav {
      display: none;
      position: sticky; top: 0; z-index: 1050;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
      padding: 10px 16px;
      align-items: center;
      justify-content: space-between;
    }
    .mob-nav-left { display: flex; align-items: center; gap: 14px; }
    .mob-nav-hamburger { font-size: 20px; color: var(--dark); cursor: pointer; background:none; border:none; }
    .mob-brand { font-family: 'Poppins', sans-serif; font-size: 22px; color: var(--orange); font-weight:700; line-height:1; }
    .mob-brand span { color: var(--dark); }
    .mob-brand-icon { color: var(--orange); font-size:20px; }
    .mob-nav-right { display: flex; align-items: center; gap: 14px; }
    .mob-nav-bell { position: relative; font-size:22px; color:var(--dark); }
    .mob-nav-bell .badge-notif { position:absolute; top:-4px; right:-5px; background:var(--orange); color:#fff; font-size:9px; border-radius:50%; width:16px; height:16px; display:flex; align-items:center; justify-content:center; }
    .mob-nav-user { font-size:22px; color:var(--dark); }

    /* ── MOBILE LOCATION DROPDOWN ── */
    .mob-loc-wrap { position: relative; display: flex; align-items: center; }
    .mob-loc-btn {
      display: flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 600; color: var(--dark);
      white-space: nowrap; border-left: 1px solid #ddd;
      padding-left: 10px; cursor: pointer; background: none; border-top: none;
      border-right: none; border-bottom: none; outline: none;
    }
    .mob-loc-btn i.fa-location-dot { color: var(--orange); font-size: 12px; }
    .mob-loc-btn i.fa-chevron-down {
      font-size: 9px; color: var(--muted);
      transition: transform .2s;
    }
    .mob-loc-wrap.open .mob-loc-btn i.fa-chevron-down { transform: rotate(180deg); }
    .mob-loc-dropdown {
      display: none;
      position: absolute; top: calc(100% + 14px); right: -12px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.14);
      min-width: 220px; z-index: 4000; padding: 8px 0;
      animation: dropIn .18s ease;
    }
    .mob-loc-wrap.open .mob-loc-dropdown { display: block; }
    .mob-loc-dropdown::before {
      content:''; position:absolute; top:-7px; right:20px;
      border-left:7px solid transparent; border-right:7px solid transparent;
      border-bottom:7px solid var(--border);
    }
    .mob-loc-dropdown::after {
      content:''; position:absolute; top:-6px; right:21px;
      border-left:6px solid transparent; border-right:6px solid transparent;
      border-bottom:6px solid #fff;
    }
    .mob-loc-search {
      padding: 8px 12px 10px;
      border-bottom: 1px solid var(--border);
    }
    .mob-loc-search input {
      width: 100%; border: 1.5px solid #ddd; border-radius: 8px;
      padding: 7px 10px; font-size: 12px; outline: none;
    }
    .mob-loc-search input:focus { border-color: var(--orange); }
    .mob-loc-section-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      letter-spacing: .8px; text-transform: uppercase;
      padding: 8px 14px 4px;
    }
    .mob-loc-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 14px; font-size: 13px; color: var(--text);
      cursor: pointer; transition: .15s;
    }
    .mob-loc-item:hover { background: var(--orange-light); color: var(--orange); }
    .mob-loc-item i { width: 16px; color: var(--orange); font-size: 13px; flex-shrink: 0; }
    .mob-loc-item.selected { color: var(--orange); font-weight: 600; }
    .mob-loc-item.selected::after { content: '✓'; margin-left: auto; font-size: 13px; color: var(--orange); }
    .mob-loc-divider { height: 1px; background: var(--border); margin: 4px 0; }

    /* ── MOBILE ACCOUNT DROPDOWN ── */
    .mob-acc-wrap { position: relative; display: flex; align-items: center; }
    .mob-acc-btn { font-size: 22px; color: var(--dark); background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
    .mob-acc-dropdown {
      display: none;
      position: fixed; top: 0; right: 0; bottom: 0;
      width: 280px; background: #fff;
      box-shadow: -4px 0 32px rgba(0,0,0,.18);
      z-index: 5000; flex-direction: column;
      animation: slideInRight .25s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mob-acc-wrap.open .mob-acc-dropdown { display: flex; }
    .mob-acc-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.45); z-index: 4999;
    }
    .mob-acc-wrap.open .mob-acc-overlay { display: block; }
    @keyframes slideInRight {
      from { transform: translateX(100%); opacity: 0; }
      to   { transform: translateX(0);    opacity: 1; }
    }
    .mob-acc-head {
      background: linear-gradient(135deg, var(--orange), #f7941e);
      padding: 20px 18px 16px; color: #fff;
      display: flex; align-items: center; gap: 12px;
      position: relative; flex-shrink: 0;
    }
    .mob-acc-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(255,255,255,.25); border: 2px solid rgba(255,255,255,.5);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; color: #fff; flex-shrink: 0;
    }
    .mob-acc-head-info .name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
    .mob-acc-head-info .sub { font-size: 11px; opacity: .85; }
    .mob-acc-close {
      position: absolute; top: 14px; right: 14px;
      background: rgba(255,255,255,.2); border: none; color: #fff;
      width: 28px; height: 28px; border-radius: 50%; font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
    }
    .mob-acc-body { flex: 1; padding: 8px 0; }
    .mob-acc-section-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      letter-spacing: .8px; text-transform: uppercase;
      padding: 10px 18px 4px;
    }
    .mob-acc-item {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 18px; font-size: 13px; color: var(--text);
      text-decoration: none; cursor: pointer; transition: .15s;
      border-left: 3px solid transparent;
    }
    .mob-acc-item:hover { background: var(--orange-light); color: var(--orange); border-left-color: var(--orange); }
    .mob-acc-item i { width: 18px; color: var(--orange); font-size: 14px; flex-shrink: 0; }
    .mob-acc-item .badge-count { margin-left: auto; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; border-radius: 10px; padding: 1px 7px; }
    .mob-acc-divider { height: 1px; background: var(--border); margin: 6px 18px; }
    .mob-acc-item.logout { color: #e74c3c; }
    .mob-acc-item.logout:hover { background: #fff5f5; color: #e74c3c; border-left-color: #e74c3c; }
    .mob-acc-item.logout i { color: #e74c3c; }
    .mob-acc-footer { padding: 14px 18px; border-top: 1px solid var(--border); flex-shrink: 0; }
    .mob-acc-login-btn {
      width: 100%; background: var(--orange); color: #fff; border: none;
      border-radius: 10px; padding: 12px; font-size: 14px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      cursor: pointer;
    }
    .mob-acc-login-btn:hover { background: var(--orange-dark); }

    /* ── MOBILE SEARCH BAR ── */
    .mob-search-bar {
      display: none;
      padding: 8px 16px 10px;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
    .mob-search-inner {
      display: flex; align-items: center;
      border: 1.5px solid #ddd; border-radius: 10px;
      padding: 0 12px; gap: 8px; background: #f8f8f8;
      overflow: hidden;
    }
    .mob-search-inner i { color: var(--muted); font-size: 15px; flex-shrink:0; }
    .mob-search-inner input { border:none; background:transparent; font-size:13px; flex:1; padding:10px 0; outline:none; color:var(--text); }
    .mob-search-loc { display:flex; align-items:center; gap:4px; font-size:12px; font-weight:600; color:var(--dark); white-space:nowrap; border-left:1px solid #ddd; padding-left:10px; }
    .mob-search-loc i { color:var(--orange); font-size:12px; }

    /* ── MOBILE HERO BANNER ── */
    .mob-hero {
      display: none;
      margin: 12px 16px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      min-height: 190px;
    }
    .mob-hero-bg {
      position: absolute; inset:0;
      background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80') right center/cover;
      opacity: .35;
    }
    .mob-hero-content { position:relative; z-index:2; padding: 22px 20px 20px; }
    .mob-hero h2 { font-family: 'Poppins', sans-serif; font-size: 20px; color:#fff; font-weight:700; line-height:1.25; margin-bottom:4px; }
    .mob-hero h2 span { color: var(--orange); }
    .mob-hero p { font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 14px; }
    .mob-hero-btns { display: flex; gap: 8px; flex-wrap: wrap; }
    .mob-btn-primary { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 9px 14px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
    .mob-btn-secondary { background: #fff; color: var(--orange); border: 2px solid var(--orange); border-radius: 8px; padding: 9px 14px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

    /* ── MOBILE QUICK CATEGORIES GRID ── */
    .mob-quick-cats {
      display: none;
      padding: 16px 16px 0;
    }
    .mob-quick-cats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }
    .mob-qcat {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      cursor: pointer;
    }
    .mob-qcat-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: #fff; border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .mob-qcat-icon.active { border-color: var(--orange); background: var(--orange-light); }
    .mob-qcat span { font-size: 10px; font-weight: 600; color: var(--text); text-align: center; line-height: 1.2; }

    /* ── MOBILE TRUST STRIP ── */
    .mob-trust {
      display: none;
      margin: 14px 16px 0;
      background: #f8f8f8;
      border-radius: 12px;
      padding: 12px 10px;
    }
    .mob-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
    .mob-trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
    .mob-trust-item .ti-icon { font-size: 18px; color: var(--orange); }
    .mob-trust-item h6 { font-size: 9.5px; font-weight: 700; margin:0; line-height:1.2; color:var(--dark); }
    .mob-trust-item p { font-size: 8.5px; color: var(--muted); margin:0; line-height:1.2; }

    /* ── MOBILE POPULAR SEARCHES ── */
    .mob-popular {
      display: none;
      padding: 14px 16px 0;
    }
    .mob-popular h6 { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
    .mob-popular-pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width:none; padding-bottom:4px; }
    .mob-popular-pills::-webkit-scrollbar { display:none; }
    .mob-pop-pill { white-space: nowrap; border: 1.5px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 500; color: var(--text); background: #fff; flex-shrink: 0; cursor: pointer; }
    .mob-pop-pill:hover { border-color: var(--orange); color: var(--orange); }

    /* ── MOBILE SECTION HEADER ── */
    .mob-section-header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 16px 16px 10px;
    }
    .mob-section-header h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin:0; }
    .mob-section-header a { font-size: 12px; font-weight: 600; color: var(--orange); text-decoration: none; }

    /* ── MOBILE FEATURED PROPERTY CARDS ── */
    .mob-prop-scroll { display: none; overflow-x: auto; gap: 12px; padding: 0 16px 4px; scrollbar-width: none; }
    .mob-prop-scroll::-webkit-scrollbar { display: none; }
    .mob-prop-card { flex-shrink: 0; width: 200px; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.09); }
    .mob-prop-img { position: relative; height: 130px; }
    .mob-prop-img img { width:100%; height:100%; object-fit:cover; }
    .mob-prop-tag { position: absolute; top:8px; left:8px; font-size: 9px; font-weight:700; border-radius:4px; padding: 2px 7px; text-transform: uppercase; }
    .mob-prop-fav { position: absolute; top:8px; right:8px; width:26px; height:26px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; color:#e74c3c; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
    .mob-prop-info { padding: 10px 12px; }
    .mob-prop-info h6 { font-size: 12px; font-weight:700; margin-bottom:3px; }
    .mob-prop-loc { font-size: 10px; color: var(--muted); margin-bottom: 5px; display:flex; align-items:center; gap:3px; }
    .mob-prop-price { font-size: 13px; font-weight:700; color: var(--orange); }
    .mob-prop-size { font-size: 10px; color: var(--muted); float: right; }

    /* ── MOBILE POPULAR MATERIALS ── */
    .mob-materials-scroll { display: none; overflow-x: auto; gap: 12px; padding: 0 16px 4px; scrollbar-width: none; }
    .mob-materials-scroll::-webkit-scrollbar { display: none; }
    .mob-mat-card { flex-shrink: 0; width: 90px; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); text-align: center; }
    .mob-mat-card img { width: 100%; height: 75px; object-fit: cover; }
    .mob-mat-card span { display: block; font-size: 11px; font-weight: 600; padding: 6px 4px; color: var(--text); }

    /* ── MOBILE BOTTOM TAB BAR ── */
    .mob-bottom-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
      background: #fff; border-top: 1px solid var(--border);
      box-shadow: 0 -4px 16px rgba(0,0,0,.08);
      padding: 6px 0 env(safe-area-inset-bottom, 6px);
    }
    .mob-bottom-tabs { display: flex; justify-content: space-around; align-items: center; }
    .mob-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; text-decoration: none; padding: 4px 8px; min-width: 52px; }
    .mob-tab i { font-size: 20px; color: var(--muted); }
    .mob-tab span { font-size: 10px; font-weight: 600; color: var(--muted); }
    .mob-tab.active i, .mob-tab.active span { color: var(--orange); }
    .mob-tab-post { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(244,121,32,.4); margin-top: -18px; }
    .mob-tab-post i { color: #fff; font-size: 22px; }

    /* ══════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════ */
    @media(max-width:991px){
      /* sub-nav: hide list+mat buttons on tablet */
      .sub-nav .btn-list-mat { display:none !important; }
    }

    @media(max-width:767px){
      /* Hide desktop-only elements */
      .top-bar { display: none !important; }
      .main-nav { display: none !important; }
      .sub-nav { display: none !important; }
      .hero { display: none !important; }
      .value-strip { display: none !important; }
      .bottom-action-bar { display: none !important; }

      /* Show mobile elements */
      .mob-nav { display: flex !important; }
      .mob-search-bar { display: block !important; }
      .mob-hero { display: block !important; }
      .mob-quick-cats { display: block !important; }
      .mob-trust { display: block !important; }
      .mob-popular { display: block !important; }
      .mob-prop-scroll { display: flex !important; }
      .mob-materials-scroll { display: flex !important; }
      .mob-section-header { display: flex !important; }
      .mob-bottom-bar { display: block !important; }

      /* Body padding for bottom bar */
      body { padding-bottom: 70px; }

      /* Section containers full width on mobile */
      .container-fluid { padding-left: 0 !important; padding-right: 0 !important; }

      /* Section padding */
      section.py-4 { padding-top: 0 !important; padding-bottom: 0 !important; }
      section.section-bg { padding-top: 0 !important; padding-bottom: 0 !important; }

      /* Hide desktop section headers and replace with mob-section-header */
      section .d-flex.justify-content-between.mb-3 { padding: 16px 16px 0 !important; margin-bottom: 0 !important; }

      /* Scrollers: add side padding */
      .cat-scroll-wrap, .plot-scroller-wrap, .section-scroll-wrap { padding: 0 !important; }
      .cat-scroller, .plot-scroller, .section-scroller { padding: 4px 16px 8px !important; }

      /* Property stats: 2 col on mobile */
      .prop-stats { grid-template-columns: repeat(2,1fr); }

      /* Featured property section hidden on mobile (replaced by mob-prop-scroll) */
      .feat-prop-desktop { display: none !important; }

      /* Why invest section padding */
      .why-card { padding: 14px; }
      .sell-cta { padding: 20px; }
      .sell-cta h4 { font-size: 18px; }

      /* Deal cards: single column */
      .deal-card { min-height: 100px; }

      /* Blog section: set spacing  */
      .section-scroller .blog-card { min-width: 200px !important; }

      /* App strip: stack */
      .app-strip { border-radius: 0; padding: 20px 16px; }
      .newsletter-box { padding: 16px; }
      .newsletter-input { flex-direction: column; }

      /* Footer spacing */
      footer .container-fluid { padding: 0 16px !important; }

      /* Section title sizing */
      .section-title { font-size: 16px; }
      .view-all { font-size: 12px; }
    }

    @media(max-width:576px){
      .cat-icon-wrap { width: 56px; height: 56px; }
      .plot-scroller .plot-card { min-width: 170px; max-width: 170px; }
      .mob-quick-cats-grid { grid-template-columns: repeat(6, 1fr); }
      .mob-qcat-icon { width: 46px; height: 46px; font-size: 19px; }
    }

    /* ══ SECTION WRAPPER ══ */
    .promo-section {
      width: 100%;
      max-width: 1200px;
    }

    /* ══ BANNER GRID ══ */
    .banner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1.35fr;
      gap: 14px;
      align-items: stretch;
    }

    /* ══ SHARED CARD BASE ══ */
    .banner-card {
      border-radius: 16px;
      padding: 28px 28px 26px;
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease;
      cursor: pointer;
    }
    .banner-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0,0,0,.13);
    }

    /* ══ CARD 1 — POST PROPERTY ══ */
    .card-property {
      background: var(--orange-light);
      border: 1.5px solid rgba(244,121,32,.18);
    }
    .card-property::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      background: rgba(244,121,32,.08);
      border-radius: 50%;
    }
    .card-property::after {
      content: '';
      position: absolute;
      bottom: -20px; right: 20px;
      width: 70px; height: 70px;
      background: rgba(244,121,32,.06);
      border-radius: 50%;
    }

    /* ══ CARD 2 — BECOME SUPPLIER ══ */
    .card-supplier {
      background: var(--blue-light);
      border: 1.5px solid rgba(26,86,196,.15);
    }
    .card-supplier::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      background: rgba(26,86,196,.06);
      border-radius: 50%;
    }
    .card-supplier::after {
      content: '';
      position: absolute;
      bottom: -20px; right: 20px;
      width: 70px; height: 70px;
      background: rgba(26,86,196,.05);
      border-radius: 50%;
    }

    /* ══ CARD 3 — MATERIALS PROMO ══ */
    .card-materials {
      background: linear-gradient(130deg, #3d1f0a 0%, #7a3a10 45%, #5c2d0e 100%);
      border: none;
      padding: 16px 25px 16px;
      gap: 0;
    }
    .card-materials::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* ══ ICON WRAPPERS ══ */
    .card-icon {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .card-icon img,
    .card-icon .emoji-icon {
      width: 72px;
      height: 72px;
      object-fit: contain;
      font-size: 64px;
      line-height: 1;
      display: block;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
      transition: transform .3s ease;
    }
    .banner-card:hover .card-icon img,
    .banner-card:hover .card-icon .emoji-icon {
      transform: scale(1.08) rotate(-3deg);
    }

    /* ══ CARD TEXT ══ */
    .card-body-text {
      flex: 1;
      position: relative;
      z-index: 1;
    }
    .card-body-text .card-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 5px;
    }
    .card-body-text .card-title .accent-orange { color: var(--orange); }
    .card-body-text .card-title .accent-blue   { color: var(--blue); }
    .card-body-text .card-sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 18px;
      line-height: 1.5;
    }

    /* ══ BUTTONS ══ */
    .btn-promo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all .22s ease;
      white-space: nowrap;
    }
    .btn-promo-orange {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 4px 14px rgba(244,121,32,.35);
    }
    .btn-promo-orange:hover {
      background: var(--orange-dark);
      box-shadow: 0 6px 20px rgba(244,121,32,.5);
      transform: translateX(2px);
      color: #fff;
    }
    .btn-promo-blue {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 4px 14px rgba(26,86,196,.3);
    }
    .btn-promo-blue:hover {
      background: #1344a0;
      box-shadow: 0 6px 20px rgba(26,86,196,.45);
      transform: translateX(2px);
      color: #fff;
    }

    /* ══ MATERIALS CARD INNER ══ */
    .materials-inner {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .materials-img {
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      height: 115%;
      width: 48%;
      object-fit: cover;
      object-position: left center;
      mask-image: linear-gradient(to left, rgba(0,0,0,.9) 40%, transparent 100%);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.9) 40%, transparent 100%);
      transition: transform .3s ease;
    }
    .card-materials:hover .materials-img {
      transform: translateY(-50%) scale(1.04);
    }
    .materials-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,.55);
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .materials-title {
      font-size: 12px;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: .3px;
    }
    .materials-title .accent-gold {
      color: #f5c842;
    }
    .materials-btns {
      display: flex;
      gap: 10px;
      margin-top: 18px;
      flex-wrap: wrap;
    }
    .btn-gold {
      background: #f5c842;
      color: #3d1f0a;
      font-size: 12px;
      font-weight: 800;
      padding: 9px 18px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .22s;
      text-transform: uppercase;
      letter-spacing: .5px;
      box-shadow: 0 4px 14px rgba(245,200,66,.4);
      text-decoration: none;
    }
    .btn-gold:hover {
      background: #e8b930;
      transform: translateX(2px);
      box-shadow: 0 6px 20px rgba(245,200,66,.55);
    }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,.45);
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .22s;
      text-transform: uppercase;
      letter-spacing: .5px;
      text-decoration: none;
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.8);
      transform: translateX(2px);
    }

    /* ══ BADGE ══ */
    .new-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--orange);
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 20px;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 8px;
      vertical-align: middle;
    }

    /* ══ FADE-IN ON LOAD ══ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
    .banner-card {
      animation: fadeUp .5s ease both;
    }
    .banner-grid .banner-card:nth-child(1) { animation-delay: .05s; }
    .banner-grid .banner-card:nth-child(2) { animation-delay: .15s; }
    .banner-grid .banner-card:nth-child(3) { animation-delay: .25s; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 900px) {
      .banner-grid {
        grid-template-columns: 1fr 1fr;
      }
      .card-materials {
        grid-column: 1 / -1;
      }
    }
    @media (max-width: 560px) {
      .banner-grid {
        grid-template-columns: 1fr;
      }
      .card-materials {
        grid-column: auto;
      }
      .materials-img {
        opacity: .35;
      }
      .card-icon img,
      .card-icon .emoji-icon {
        width: 56px;
        height: 56px;
        font-size: 52px;
      }
    }

    .mob-logo{
      height: 40px;
    }