:root{
  --bg:#f4f7fb;
  --bg2:#ffffff;

  --card:#ffffff;

  --brand-red:#b80f1d;
  --brand-red-dark:#8d0d18;

  --brand-blue:#3154a4;
  --brand-blue-dark:#223d78;

  --text:#0f172a;
  --muted:#64748b;

  --white:#ffffff;

  --glass:rgba(255,255,255,.75);

  --border:rgba(15,23,42,.08);

  --shadow:
    0 10px 40px rgba(15,23,42,.08);

  --gradient:
    linear-gradient(
      135deg,
      var(--brand-red),
      var(--brand-blue)
    );
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
}
.rop-page{
  background:
    radial-gradient(circle at top left,
      rgba(49,84,164,.08),
      transparent 30%),

    radial-gradient(circle at top right,
      rgba(184,15,29,.06),
      transparent 30%),

    #f8fbff;

  min-height:100vh;
}

.rop-nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:14px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(255,255,255,.82);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(15,23,42,.06);

  box-shadow:
    0 5px 30px rgba(15,23,42,.05);
}

.rop-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:white;
  font-weight:900;
  letter-spacing:-.04em;
  font-size:1.1rem;
}

.rop-brand img{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:cover;
}

.rop-links{
  display:flex;
  align-items:center;
  gap:22px;
}

.rop-links a{
  color:var(--text);
  font-weight:700;
  font-size:.9rem;
}

.rop-links a:hover{
  color:var(--brand-blue);
}

.rop-btn{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.rop-btn-primary{
  background:linear-gradient(135deg,var(--brand-red),var(--brand-blue));
  color:white;
  box-shadow:0 20px 45px rgba(184,15,29,.28);
}

.rop-btn-ghost{
  color: white;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(30, 94, 255, 0.92);
  backdrop-filter: blur(10px);
}

.rop-menu-btn{
  display:none;
  background:none;
  border:0;
  color:white;
  font-size:1.7rem;
}

.rop-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:130px 5% 70px;
  overflow:hidden;
}

.rop-hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.88),
      rgba(255,255,255,.35)
    ),

    url('../../images/slider/3.jpg')
    center/cover no-repeat;

  z-index:0;
}

.rop-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:170px;
  background:linear-gradient(transparent,var(--bg));
  z-index:1;
}

.rop-hero-content{
  position:relative;
  z-index:2;
  max-width:1180px;
  width:100%;
}

.rop-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.28);
  color:var(--brand-blue);
  font-weight:900;
  font-size:.82rem;
  margin-bottom:22px;
}

.rop-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2.7rem,7vw,6.8rem);
  line-height:.92;
  letter-spacing:-.07em;
  max-width:920px;
  margin:0;
  color:var(--text);
}

.rop-title span{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.rop-subtitle{
  background: rgba(0, 0, 0, 0.5);
  max-width:680px;
  color:#fff;
  font-size:clamp(1rem,2vw,1.25rem);
  line-height:1.75;
  margin:28px 0;
  padding: 0.2rem;
}

.rop-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.rop-search{
  background:rgba(255,255,255,.72);

  border:1px solid rgba(255,255,255,.8);

  backdrop-filter:blur(22px);

  border-radius:30px;

  padding:18px;

  max-width:1050px;

  box-shadow:
    0 20px 60px rgba(15,23,42,.10);
}

.rop-search-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr auto;
  gap:12px;
}

.rop-field{
  background:white;

  border:1px solid rgba(15,23,42,.08);

  border-radius:18px;

  padding:12px 14px;

  transition:.3s ease;
}
.rop-field:hover{
  border-color:rgba(49,84,164,.25);
}

.rop-field label{
  display:block;
  color:var(--muted);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}

.rop-field input,
.rop-field select{
  width:100%;
  background:transparent;
  border:0;
  outline:none;
  color:white;
  font-weight:800;
}

.rop-field select option{
  color:#111827;
}

.rop-popular{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}

.rop-popular a{
  color:#e2e8f0;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  padding:8px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
}

.rop-stats{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:-60px auto 80px;
  max-width:1180px;
  padding:0 5%;
}

.rop-stat{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:26px;
  padding:24px;
  backdrop-filter:blur(20px);
}

.rop-stat strong{
  display:block;
  color:var(--brand-blue);
  font-size:2rem;
  font-family:'Space Grotesk',sans-serif;
}

.rop-stat span{
  color:var(--muted);
  font-weight:800;
}

.rop-section{
  padding:40px 5% 80px;
  max-width:1320px;
  margin:auto;
}

.rop-section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:26px;
}

.rop-section-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2rem,4vw,3.8rem);
  letter-spacing:-.06em;
  margin:0;
}

.rop-section-text{
  color:var(--muted);
  max-width:560px;
  line-height:1.7;
}

.rop-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.rop-card{
  background:white;

  border:1px solid rgba(15,23,42,.06);

  border-radius:30px;

  overflow:hidden;

  color:var(--text);

  transition:.35s ease;

  box-shadow:
    0 10px 30px rgba(15,23,42,.06);
}

.rop-card:hover{
  transform:translateY(-10px);

  box-shadow:
    0 30px 80px rgba(15,23,42,.12);
}

.rop-card-img{
  height:240px;
  position:relative;
  overflow:hidden;
}

.rop-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.rop-card:hover img{
  transform:scale(1.08);
}

.rop-badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(5,8,22,.72);
  backdrop-filter:blur(12px);
  color:white;
  font-size:.75rem;
  font-weight:900;
}

.rop-price{
  position:absolute;
  right:14px;
  bottom:14px;

  padding:10px 14px;

  border-radius:999px;

  background:var(--gradient);

  color:white;

  font-weight:1000;

  box-shadow:
    0 10px 25px rgba(184,15,29,.25);
}

.rop-card-body{
  padding:18px;
}

.rop-card-body h3{
  margin:0 0 10px;
  font-size:1.05rem;
  line-height:1.35;
}

.rop-card-body h3 a{
  color:inherit;
  text-decoration:none;
}

.rop-card-body h3 a:hover{
  color:var(--primary);
}

.rop-card-meta{
  color:var(--muted);
  font-size:.88rem;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.rop-card-actions{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.rop-card-actions a{
  flex:1;
  font-size:.85rem;
}

.rop-lead{
  margin-top:40px;
  background:
    linear-gradient(135deg,rgba(212,175,55,.2),rgba(37,99,235,.16)),
    rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:36px;
  padding:36px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
}

.rop-lead h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.06em;
  margin:0 0 16px;
}

.rop-lead p{
  color:#cbd5e1;
  line-height:1.7;
}

.rop-lead-form{
  display:grid;
  gap:12px;
}

.rop-lead-form input,
.rop-lead-form select{
  width:100%;
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  color:white;
  border-radius:18px;
  padding:15px;
  outline:none;
}

.rop-lead-form select option{
  color:#111827;
}

.rop-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:998;
  background:#22c55e;
  color:white;
  border-radius:999px;
  padding:14px 18px;
  font-weight:1000;
  box-shadow:0 20px 50px rgba(34,197,94,.35);
}

.rop-footer{
  padding:40px 5%;
  border-top:1px solid var(--border);
  color:var(--muted);
  text-align:center;
}

@media(max-width:1050px){
  .rop-search-grid,
  .rop-grid,
  .rop-stats,
  .rop-lead{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .rop-links{
    position:fixed;
    inset:70px 14px auto;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(15,23,42,.96);
    border:1px solid var(--border);
    border-radius:24px;
    padding:18px;
  }

  .rop-links.active{
    display:flex;
  }

  .rop-menu-btn{
    display:block;
  }

  .rop-search-grid,
  .rop-grid,
  .rop-stats,
  .rop-lead{
    grid-template-columns:1fr;
  }

  .rop-section-head{
    display:block;
  }

  .rop-hero{
    padding-top:110px;
  }

  .rop-whatsapp{
    left:16px;
    right:16px;
    text-align:center;
    justify-content:center;
  }
}

/*
|--------------------------------------------------------------------------
| Dynamic Property Results
|--------------------------------------------------------------------------
*/
.rop-dynamic-results{
  padding-top:120px;
}

@media (max-width: 900px){
  .rop-dynamic-results{
    padding-top:100px;
  }
}

.rop-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
  margin-top:30px;
}

.rop-empty-state{
  background:#fff;
  border-radius:28px;
  padding:80px 30px;
  text-align:center;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 40px rgba(15,23,42,.05);
}

.rop-empty-state i{
  font-size:60px;
  color:rgba(30,94,255,.92);
  margin-bottom:20px;
}

.rop-empty-state h3{
  font-size:28px;
  margin-bottom:12px;
  color:#0f172a;
}

.rop-empty-state p{
  color:#64748b;
  max-width:500px;
  margin:auto;
  line-height:1.7;
}
/*
|--------------------------------------------------------------------------
| Listing Topbar
|--------------------------------------------------------------------------
*/

.rop-listing-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:28px 34px;
  margin-bottom:35px;

  background:#ffffff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:28px;

  box-shadow:
    0 10px 35px rgba(15,23,42,.05);

  position:relative;
  overflow:hidden;
}

.rop-listing-topbar::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(30,94,255,.05),
      transparent 40%
    );
  pointer-events:none;
}

.rop-listing-topbar-left{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.rop-listing-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;

  background:rgba(30,94,255,.08);
  color:rgba(30,94,255,.95);

  border-radius:999px;

  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.rop-listing-topbar h1{
  margin:0;

  font-size:clamp(24px,2vw,38px);
  line-height:1.1;

  font-weight:800;
  color:#0f172a;
}

.rop-listing-topbar-right{
  max-width:540px;
}

.rop-listing-topbar-right p{
  margin:0;

  font-size:15px;
  line-height:1.8;

  color:#64748b;
}

@media (max-width: 900px){

  .rop-listing-topbar{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }

  .rop-listing-topbar-right{
    max-width:100%;
  }

}
