  :root{
    --ink:#222222; --ink-soft:#5A5A5A; --ink-faint:#8A8A8A;
    --bg:#FFFFFF; --bg-soft:#F7F7F5; --line:#EBEBEB;
    --brand:#E15B3D; --brand-deep:#C4472C; --brand-tint:#FDEEE9;
    --teal:#0F7A6E; --gold:#D8A03D;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html,body{ background:var(--bg); }
  body{ font-family:'Cairo',sans-serif; color:var(--ink); -webkit-font-smoothing:antialiased; }
  .display-font{ font-family:'El Messiri',serif; }
  .hero h1, .section-head h2, .cta-banner h3, .testi p, .logo, footer .logo{ font-family:'El Messiri',serif; }

  /* ===== Reveal-on-scroll ===== */
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in-view{ opacity:1; transform:translateY(0); }
  .reveal-1{ transition-delay:.05s; } .reveal-2{ transition-delay:.12s; } .reveal-3{ transition-delay:.19s; } .reveal-4{ transition-delay:.26s; }
  a{ text-decoration:none; color:inherit; } button{ font-family:inherit; }
  img{ display:block; }
  .fallback{ transition:opacity .2s; }

  /* ===== Header ===== */
  header{ position:sticky; top:0; z-index:50; background:var(--bg); border-bottom:1px solid var(--line); }
  .nav-wrap{ max-width:1180px; margin:0 auto; padding:16px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
  .logo{ display:flex; align-items:center; gap:9px; font-weight:800; font-size:20px; color:var(--brand); }
  .logo svg{ width:26px; height:26px; }
  nav{ flex:1; display:flex; justify-content:center; }
  nav ul{ display:flex; gap:26px; list-style:none; }
  nav a{ font-size:14px; font-weight:700; color:var(--ink); transition:color .15s; }
  nav a:hover{ color:var(--brand); }
  nav a.active{ color:var(--brand); }
  @media (max-width:860px){ nav{ display:none; } }
  .nav-actions{ display:flex; align-items:center; gap:12px; }
  .hamburger{ display:none; background:none; border:1px solid var(--line); border-radius:100px; width:40px; height:40px; align-items:center; justify-content:center; cursor:pointer; }
  @media (max-width:860px){ .hamburger{ display:flex; } }
  .mobile-drawer{ position:fixed; inset:0; background:rgba(0,0,0,0.35); z-index:100; display:none; }
  .mobile-drawer.open{ display:block; }
  .mobile-drawer .panel{ position:absolute; top:0; left:0; width:78%; max-width:320px; height:100%; background:#fff; padding:22px; box-shadow:8px 0 30px rgba(0,0,0,0.12); }
  .mobile-drawer .panel .close-x{ background:none; border:none; margin-bottom:24px; cursor:pointer; }
  .mobile-drawer .panel ul{ list-style:none; display:flex; flex-direction:column; gap:4px; }
  .mobile-drawer .panel a{ display:block; padding:13px 6px; font-weight:700; font-size:15px; border-bottom:1px solid var(--line); }
  .mobile-drawer .panel .btn-brand{ width:100%; margin-top:20px; padding:13px; }
  .btn-ghost{ background:var(--brand-tint); border:none; padding:9px 16px; font-size:13px; font-weight:700; border-radius:100px; cursor:pointer; color:var(--brand); transition:background .18s; white-space:nowrap; }
  .btn-ghost:hover{ background:#FCE0D5; }
  .nav-divider{ width:1px; height:26px; background:var(--line); flex-shrink:0; }
  @media (max-width:860px){ .nav-divider{ display:none; } }
  .btn-brand{ background:var(--brand); color:#fff; border:none; padding:10px 20px; font-size:13.5px; font-weight:700; border-radius:100px; cursor:pointer; transition:transform .18s ease, background .18s ease; }
  .btn-brand:hover{ background:var(--brand-deep); transform:translateY(-1px) scale(1.02); }
  /* header search */
  .btn-search{ display:flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line); padding:6px; padding-inline-start:16px; border-radius:100px; font-family:inherit; font-size:13px; font-weight:600; color:var(--ink-soft); cursor:pointer; transition:box-shadow .18s ease, border-color .18s ease; }
  .btn-search .s-ic{ width:30px; height:30px; border-radius:50%; background:var(--brand); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .btn-search .s-ic svg{ width:15px; height:15px; color:#fff; }
  .btn-search:hover{ border-color:var(--brand); box-shadow:0 5px 16px rgba(225,91,61,0.14); }

  /* favorites icon button */
  .btn-fav{ position:relative; background:var(--bg-soft); border:1px solid var(--line); width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:border-color .18s, color .18s; color:var(--ink); }
  .btn-fav:hover{ border-color:var(--brand); color:var(--brand); }
  .btn-fav svg{ width:19px; height:19px; }
  .btn-fav .fav-count{ position:absolute; top:-4px; inset-inline-end:-4px; min-width:18px; height:18px; padding:0 4px; background:var(--brand); color:#fff; border-radius:100px; font-size:10.5px; font-weight:800; display:none; align-items:center; justify-content:center; }
  .btn-fav .fav-count.show{ display:flex; }

  /* whatsapp / contact button */
  .btn-wa{ width:40px; height:40px; border-radius:50%; background:#25D366; color:#fff; border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform .15s, filter .18s; text-decoration:none; flex-shrink:0; }
  .btn-wa svg{ width:20px; height:20px; }
  .btn-wa:hover{ transform:translateY(-1px); filter:brightness(1.06); }

  /* account menu */
  .account-wrap{ position:relative; }
  .account-btn{ display:flex; align-items:center; gap:8px; background:var(--bg-soft); border:1px solid var(--line); padding:5px 12px 5px 6px; border-radius:100px; cursor:pointer; font-family:inherit; transition:border-color .18s; }
  .account-btn:hover{ border-color:var(--brand); }
  .account-avatar{ width:30px; height:30px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; }
  .account-name{ font-size:13px; font-weight:700; color:var(--ink); }
  .account-btn .chev{ width:14px; height:14px; color:var(--ink-faint); transition:transform .2s; }
  .account-wrap.open .chev{ transform:rotate(180deg); }
  .account-dropdown{ position:absolute; top:calc(100% + 8px); inset-inline-start:0; min-width:200px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 12px 32px rgba(20,20,20,0.14); padding:8px; display:none; z-index:120; }
  .account-wrap.open .account-dropdown{ display:block; }
  .account-dropdown a, .account-dropdown button{ display:flex; align-items:center; gap:10px; width:100%; text-align:right; padding:10px 12px; border:none; background:none; font-family:inherit; font-size:13.5px; font-weight:600; color:var(--ink); border-radius:9px; cursor:pointer; }
  .account-dropdown a:hover, .account-dropdown button:hover{ background:var(--bg-soft); }
  .account-dropdown svg{ width:17px; height:17px; color:var(--ink-soft); }
  .account-dropdown .dd-divider{ height:1px; background:var(--line); margin:6px 4px; }
  .account-dropdown .dd-logout{ color:var(--brand); }
  .account-dropdown .dd-logout svg{ color:var(--brand); }
  .account-dropdown .dd-count{ margin-inline-start:auto; background:var(--brand-tint); color:var(--brand); font-size:11px; font-weight:800; padding:1px 8px; border-radius:100px; }

  @media (max-width:860px){ .nav-actions .btn-ghost{ display:none; } .btn-search span{ display:none; } .btn-search{ padding:6px; padding-inline-start:6px; } .account-name{ display:none; } }

  /* ===== Filter / sort bar ===== */
  .filter-bar{ max-width:1180px; margin:0 auto; padding:18px 24px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
  .results-count{ font-size:13.5px; color:var(--ink-faint); }
  .results-count b{ color:var(--ink); }
  .filter-controls{ display:flex; gap:10px; align-items:center; }
  .select-pill{ position:relative; }
  .select-pill select{ appearance:none; border:1px solid var(--line); border-radius:100px; padding:9px 32px 9px 14px; font-family:inherit; font-size:12.5px; font-weight:600; background:#fff; cursor:pointer; color:var(--ink); }
  .select-pill svg{ position:absolute; left:12px; top:50%; transform:translateY(-50%); width:12px; height:12px; pointer-events:none; color:var(--ink-faint); }
  .view-toggle{ display:flex; border:1px solid var(--line); border-radius:100px; overflow:hidden; }
  .view-toggle button{ background:#fff; border:none; padding:9px 14px; font-size:12.5px; font-weight:600; cursor:pointer; display:flex; align-items:center; gap:6px; color:var(--ink-faint); }
  .view-toggle button.active{ background:var(--ink); color:#fff; }
  .view-toggle svg{ width:14px; height:14px; }

  /* ===== Carousel controls on listing photo ===== */
  .listing-photo{ position:relative; aspect-ratio:1/1; border-radius:16px; overflow:hidden; }
  .listing-photo img{ width:100%; height:100%; object-fit:cover; transition:opacity .25s ease, transform .35s ease; position:absolute; inset:0; opacity:0; }
  .listing-photo img.show{ opacity:1; }
  .listing-card:hover .listing-photo img.show{ transform:scale(1.05); }
  .carousel-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,0.9); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; transition:opacity .15s; z-index:3; }
  .listing-card:hover .carousel-arrow{ opacity:1; }
  .carousel-arrow.prev{ right:8px; } .carousel-arrow.next{ left:8px; }
  .carousel-arrow svg{ width:13px; height:13px; }
  .carousel-dots{ position:absolute; bottom:9px; right:0; left:0; display:flex; justify-content:center; gap:4px; z-index:3; }
  .carousel-dots span{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.6); }
  .carousel-dots span.active{ background:#fff; width:6px; height:6px; }

  .heart-btn svg.filled{ display:none; } .heart-btn.active svg.outline{ display:none; } .heart-btn.active svg.filled{ display:block; color:var(--brand); }

  .load-more-wrap{ text-align:center; margin-top:34px; }
  .btn-outline-round{ border:1px solid var(--ink); background:#fff; padding:12px 28px; border-radius:100px; font-weight:700; font-size:13.5px; cursor:pointer; }
  .btn-outline-round:hover{ background:var(--ink); color:#fff; }
  .hidden-listing{ display:none; }

  /* ===== Newsletter ===== */
  .newsletter{ margin-top:18px; }
  .newsletter-row{ display:flex; gap:8px; margin-top:10px; max-width:280px; }
  .newsletter-row input{ flex:1; border:1px solid var(--line); border-radius:100px; padding:9px 14px; font-family:inherit; font-size:12.5px; outline:none; }
  .newsletter-row button{ background:var(--ink); color:#fff; border:none; border-radius:100px; padding:9px 16px; font-size:12.5px; font-weight:700; cursor:pointer; white-space:nowrap; }
  .social-row{ display:flex; gap:10px; margin-top:16px; }
  .social-row a{ width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }
  .social-row svg{ width:15px; height:15px; }

  /* ===== Hero + search ===== */
  .hero{ position:relative; overflow:hidden; padding:66px 24px 40px; text-align:center; box-shadow:0 22px 40px -26px rgba(225,91,61,0.26); }
  .hero::before{
    content:''; position:absolute; inset:0; z-index:0;
    background-color:var(--brand-tint);
    background-image:linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,1) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
    background-size:cover, cover; background-position:center, center; background-repeat:no-repeat, no-repeat;
  }
  .hero > *{ position:relative; z-index:1; }
  .hero h1{ font-size:38px; font-weight:800; line-height:1.35; max-width:640px; margin:0 auto; }
  .hero h1 span{ color:var(--brand); }
  .hero p{ color:var(--ink-soft); font-size:15.5px; margin-top:14px; max-width:480px; margin-inline:auto; line-height:1.8; }

  /* trust strip */
  .trust-strip{ display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:12px 24px; width:fit-content; max-width:100%; margin:22px auto 0; background:rgba(255,255,255,0.72); border:1px solid var(--line); border-radius:20px; padding:14px 26px; backdrop-filter:blur(6px); box-shadow:0 8px 22px rgba(20,20,20,0.05); }
  .trust-strip .ts-item{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--ink-soft); }
  .trust-strip .ts-item svg{ width:18px; height:18px; color:var(--brand); flex-shrink:0; }
  .trust-strip .ts-num{ color:var(--ink); font-weight:800; }
  @media (max-width:560px){ .trust-strip{ gap:10px 16px; font-size:12px; padding:12px 16px; border-radius:16px; } .trust-strip .ts-item{ font-size:12px; } }

  .search-bar{
    max-width:720px; margin:32px auto 0; background:#fff; border:1px solid var(--line); border-radius:24px;
    box-shadow:0 14px 40px rgba(20,20,20,0.09); display:flex; align-items:stretch; padding:8px;
    transition:all .25s ease;
  }
  .search-seg{ flex:1; padding:12px 20px; text-align:right; cursor:pointer; border-radius:18px; display:flex; align-items:center; gap:12px; }
  .search-seg:hover{ background:var(--bg-soft); }
  .search-seg .seg-icon{ width:34px; height:34px; border-radius:50%; background:var(--brand-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .search-seg .seg-icon svg{ width:16px; height:16px; color:var(--brand); }
  .search-seg .seg-text{ text-align:right; }
  .search-seg .lbl{ font-size:11.5px; font-weight:800; color:var(--ink); }
  .search-seg .val{ font-size:12.5px; color:var(--ink-faint); margin-top:2px; }
  .search-divider{ width:1px; background:var(--line); margin:10px 2px; }
  .search-btn{ background:var(--brand); color:#fff; border:none; height:48px; padding:0 24px; border-radius:100px; display:flex; align-items:center; justify-content:center; gap:8px; font-family:inherit; font-size:14.5px; font-weight:800; cursor:pointer; align-self:center; margin-inline-start:4px; flex-shrink:0; box-shadow:0 6px 16px rgba(225,91,61,0.35); transition:transform .15s, background .18s; }
  .search-btn:hover{ transform:scale(1.04); background:var(--brand-deep); }
  @media (max-width:700px){ .search-bar{ flex-direction:column; border-radius:22px; } .search-divider{ display:none; } .search-seg{ text-align:right; } .search-btn{ width:100%; margin:4px 0 0; } }


  /* ===== Section shell ===== */
  .section{ max-width:1180px; margin:0 auto; padding:44px 24px; }
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:24px; }
  .section-head h2{ font-size:22px; font-weight:800; }
  .section-head p.sub{ font-size:13px; color:var(--ink-faint); margin-top:4px; }
  .see-all{ font-size:13.5px; font-weight:700; text-decoration:underline; color:var(--ink); white-space:nowrap; }

  /* ===== Neighborhood scroll ===== */
  .nbhd-row{ display:flex; gap:16px; overflow-x:auto; padding-bottom:6px; }
  .nbhd-card{ flex:0 0 auto; width:150px; cursor:pointer; transition:transform .25s ease; }
  .nbhd-card:hover{ transform:translateY(-4px); }
  .nbhd-card:hover .nbhd-photo img{ transform:scale(1.08); }
  .nbhd-photo{ height:150px; border-radius:16px; overflow:hidden; position:relative; }
  .nbhd-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
  .nbhd-name{ font-weight:700; font-size:14px; margin-top:10px; }
  .nbhd-count{ font-size:12px; color:var(--ink-faint); }

  /* ===== Explore tabs ===== */
  .explore-tabs{ display:flex; gap:8px; overflow-x:auto; padding-bottom:14px; margin-bottom:20px; border-bottom:1px solid var(--line); scrollbar-width:none; }
  .explore-tabs::-webkit-scrollbar{ display:none; }
  .explore-tab{ flex:0 0 auto; display:flex; align-items:center; gap:8px; padding:9px 16px; border:1px solid var(--line); background:var(--bg); border-radius:100px; font-family:inherit; font-size:13.5px; font-weight:700; color:var(--ink-soft); cursor:pointer; transition:all .2s ease; }
  .explore-tab svg{ width:16px; height:16px; }
  .explore-tab:hover{ border-color:var(--brand); color:var(--brand); }
  .explore-tab.active{ background:var(--brand); border-color:var(--brand); color:#fff; box-shadow:0 6px 16px rgba(225,91,61,0.28); }
  .explore-tab .tab-badge{ font-size:11px; font-weight:800; background:var(--brand-tint); color:var(--brand); padding:1px 8px; border-radius:100px; }
  .explore-tab.active .tab-badge{ background:rgba(255,255,255,0.22); color:#fff; }
  .explore-panel{ display:none; }
  .explore-panel.active{ display:block; animation:fadePanel .35s ease; }
  @keyframes fadePanel{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
  .nbhd-tag{ position:absolute; top:10px; inset-inline-start:10px; background:rgba(255,255,255,0.92); backdrop-filter:blur(6px); font-size:10.5px; font-weight:800; color:var(--ink); padding:4px 10px; border-radius:100px; }
  .nbhd-seeall{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; height:150px; border:1.5px dashed var(--brand); border-radius:16px; background:var(--brand-tint); color:var(--brand); font-weight:800; font-size:13.5px; text-align:center; padding:0 12px; transition:background .2s ease; }
  .nbhd-card:hover .nbhd-seeall{ background:#FCE3DA; }
  .nbhd-seeall svg{ width:26px; height:26px; }
  .nbhd-seeall .seeall-sub{ font-size:11px; font-weight:700; color:var(--brand-deep); }

  /* ===== Listing grid ===== */
  .listing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px 20px; }
  @media (max-width:980px){ .listing-grid{ grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .listing-grid{ grid-template-columns:1fr;} }

  .listing-card{ cursor:pointer; }
  .heart-btn{ position:absolute; top:10px; left:10px; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,0.9); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:3; }
  .heart-btn svg{ width:16px; height:16px; color:var(--ink); }
  .badge-status{ position:absolute; top:10px; right:10px; background:#fff; font-size:11px; font-weight:700; padding:5px 11px; border-radius:100px; }
  .featured-badge{ position:absolute; bottom:10px; right:10px; background:var(--brand,#E15B3D); color:#fff; font-size:11px; font-weight:700; padding:5px 11px; border-radius:100px; z-index:3; }
  .badge-status.verified{ color:var(--teal); }
  .badge-status.rent{ color:var(--brand); }

  /* trusted mediator section */
  .trusted-mediator{ max-width:1180px; margin:0 auto; padding:70px 24px; }
  .tm-header{ text-align:center; margin-bottom:50px; }
  .tm-header h2{ font-size:32px; font-weight:800; margin-bottom:14px; line-height:1.4; }
  .tm-header h2 .brand{ color:var(--brand); }
  .tm-header p{ font-size:15px; color:var(--ink-soft); max-width:600px; margin-inline:auto; line-height:1.8; }
  .tm-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; perspective:1200px; }
  .tm-card{ background:#fff; border:2.5px solid var(--line); border-radius:16px; padding:32px 24px; text-align:center; transition:all .4s cubic-bezier(0.23, 1, 0.320, 1); transform:rotateY(0deg) rotateX(0deg) scale(1); }
  .tm-card:nth-child(1){ transform:rotateY(8deg) rotateX(2deg) scale(0.95); opacity:0.85; }
  .tm-card:nth-child(2){ transform:rotateY(0deg) rotateX(0deg) scale(1.05); z-index:10; box-shadow:0 24px 64px rgba(225,91,61,0.2); border-color:var(--brand); }
  .tm-card:nth-child(3){ transform:rotateY(-8deg) rotateX(2deg) scale(0.95); opacity:0.85; }
  .tm-card:hover{ border-color:var(--brand); background:var(--brand); color:#fff; box-shadow:0 24px 70px rgba(225,91,61,0.3); }
  .tm-card:nth-child(1):hover{ transform:rotateY(4deg) rotateX(-3deg) scale(1.02); opacity:1; }
  .tm-card:nth-child(2):hover{ transform:rotateY(0deg) rotateX(-5deg) scale(1.08); }
  .tm-card:nth-child(3):hover{ transform:rotateY(-4deg) rotateX(-3deg) scale(1.02); opacity:1; }
  .tm-card:hover h3{ color:#fff; }
  .tm-card:hover p{ color:rgba(255,255,255,0.9); }
  .tm-card:hover .tm-icon{ background:rgba(255,255,255,0.2); }
  .tm-card:hover .tm-icon svg{ color:#fff; }
  .tm-icon{ width:60px; height:60px; border-radius:50%; background:var(--brand-tint); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
  .tm-icon svg{ width:28px; height:28px; color:var(--brand); }
  .tm-card h3{ font-size:16px; font-weight:800; margin-bottom:10px; color:var(--ink); }
  .tm-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.7; }
  .tm-cta{ margin-top:44px; text-align:center; }
  .tm-cta-text{ font-size:14px; color:var(--ink-soft); margin-bottom:16px; }
  @media (max-width:768px){ .tm-grid{ grid-template-columns:1fr; perspective:none; } .tm-card:nth-child(1), .tm-card:nth-child(2), .tm-card:nth-child(3){ transform:none; opacity:1; } .tm-header h2{ font-size:26px; } }

  .float-wa{ position:fixed; bottom:24px; left:24px; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:99; box-shadow:0 8px 24px rgba(37,211,102,0.35); transition:transform .15s, filter .18s; text-decoration:none; }
  .float-wa svg{ width:26px; height:26px; }
  .float-wa:hover{ transform:scale(1.08); filter:brightness(1.06); }
  @media (max-width:640px){ .float-wa{ bottom:20px; left:20px; width:50px; height:50px; } .float-wa svg{ width:24px; height:24px; } }



  .listing-info{ padding-top:11px; }
  .listing-top{ display:flex; justify-content:space-between; align-items:baseline; gap:6px; }
  .listing-title{ font-weight:700; font-size:14.5px; }
  .listing-rating{ display:flex; align-items:center; gap:3px; font-size:12.5px; font-weight:600; flex-shrink:0; }
  .listing-rating svg{ width:12px; height:12px; }
  .listing-loc{ font-size:13px; color:var(--ink-faint); margin-top:2px; }
  .listing-specs{ font-size:12.5px; color:var(--ink-faint); margin-top:2px; }
  .listing-price{ margin-top:6px; font-size:14.5px; }
  .listing-price b{ font-weight:800; }

  /* ===== Trust strip ===== */
  .trust-strip{ background:var(--bg-soft); }
  .trust-grid{ max-width:1180px; margin:0 auto; padding:46px 24px; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
  @media (max-width:760px){ .trust-grid{ grid-template-columns:repeat(2,1fr);} }
  .trust-item svg{ width:30px; height:30px; color:var(--brand); margin-bottom:10px; }
  .trust-item b{ display:block; font-size:20px; font-weight:800; }
  .trust-item span{ font-size:12.5px; color:var(--ink-faint); }

  /* ===== Testimonial ===== */
  .testi{ max-width:640px; margin:0 auto; padding:60px 24px; text-align:center; }
  .testi svg{ width:28px; height:28px; color:var(--brand); margin-bottom:16px; }
  .testi p{ font-size:19px; font-weight:600; line-height:1.7; }
  .testi .who{ margin-top:16px; font-size:13px; color:var(--ink-faint); }

  /* ===== CTA banner ===== */
  .cta-banner{ max-width:1180px; margin:0 24px 60px; margin-inline:auto; background:var(--brand); border-radius:24px; padding:50px 40px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; color:#fff; }
  .cta-banner h3{ font-size:26px; font-weight:800; max-width:400px; }
  .cta-banner p{ font-size:14px; opacity:0.9; margin-top:8px; max-width:400px; }
  .btn-white{ background:#fff; color:var(--brand); border:none; padding:13px 26px; border-radius:100px; font-weight:800; font-size:14.5px; cursor:pointer; white-space:nowrap; }

  /* ===== Footer ===== */
  
  /* FAQ Section */
  .faq-section{ max-width:1000px; margin:0 auto; padding:60px 24px; }
  .faq-section h2{ font-size:28px; font-weight:800; text-align:center; margin-bottom:12px; }
  .faq-section .sub{ text-align:center; color:var(--ink-soft); font-size:14px; margin-bottom:40px; }
  .faq-list{ display:flex; flex-direction:column; gap:12px; }
  .faq-item{ background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; transition:all .25s ease; }
  .faq-item.open{ border-color:var(--brand); box-shadow:0 8px 20px rgba(225,91,61,0.12); }
  .faq-q{ padding:16px 20px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:12px; font-weight:700; color:var(--ink); user-select:none; }
  .faq-q:hover{ background:var(--bg-soft); }
  .faq-q svg{ width:20px; height:20px; color:var(--brand); transition:transform .25s ease; flex-shrink:0; }
  .faq-item.open .faq-q svg{ transform:rotate(180deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease; color:var(--ink-soft); font-size:14px; line-height:1.8; }
  .faq-item.open .faq-a{ max-height:200px; padding:0 20px 16px; }
  @media (max-width:640px){ .faq-section h2{ font-size:22px; } .faq-q{ font-size:14px; padding:14px 16px; } }

  footer{ border-top:1px solid var(--line); background:var(--bg-soft); }
  .footer-grid{ max-width:1180px; margin:0 auto; padding:44px 24px 24px; display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:32px; }
  @media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
  .footer-brand .logo{ margin-bottom:12px; }
  .footer-brand p{ font-size:13px; color:var(--ink-faint); line-height:1.8; max-width:260px; }
  .footer-col h4{ font-size:13px; font-weight:800; margin-bottom:14px; }
  .footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
  .footer-col a{ font-size:13px; color:var(--ink-soft); }
  .footer-col a:hover{ color:var(--brand); }
  .footer-bottom{ max-width:1180px; margin:0 auto; padding:18px 24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; color:var(--ink-faint); }

  /* ===== Hero location autocomplete + active search ===== */
  .site-loc-results{ position:absolute; top:calc(100% + 6px); inset-inline-start:0; inset-inline-end:0; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 16px 40px rgba(20,20,20,0.14); max-height:280px; overflow-y:auto; z-index:60; display:none; text-align:right; }
  .site-loc-results.show{ display:block; }
  .site-loc-group{ padding:8px 14px 4px; font-size:11px; font-weight:800; color:var(--brand); background:var(--bg-soft); }
  .site-loc-item{ padding:10px 14px; cursor:pointer; border-bottom:1px solid var(--line); }
  .site-loc-item:hover{ background:var(--brand-tint); }
  .site-loc-item .n{ font-size:13px; font-weight:700; color:var(--ink); }
  .site-loc-item .d{ font-size:11.5px; color:var(--ink-faint); margin-top:2px; }
  .site-loc-empty{ padding:14px; text-align:center; font-size:12.5px; color:var(--ink-faint); }

  .search-active-bar{ max-width:1180px; margin:0 auto; padding:0 24px; display:none; }
  .search-active-bar.show{ display:block; }
  .search-active-inner{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; background:var(--brand-tint); border:1px solid #F5CFC4; border-radius:14px; padding:12px 16px; font-size:13.5px; }
  .search-active-inner b{ color:var(--brand-deep); }
  .search-clear{ margin-inline-start:auto; background:#fff; border:1px solid var(--line); border-radius:100px; padding:6px 14px; font-family:inherit; font-size:12.5px; font-weight:700; cursor:pointer; color:var(--ink); }
  .search-clear:hover{ border-color:var(--brand); color:var(--brand); }
