/* ============================================================
   ROOM20 HOUSING — STYLESHEET v3
   Brand: Navy #172B4C · Olive #607741
   Font: DM Sans (headings) + Inter (body)
============================================================ */

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --navy:         #172B4C;
  --navy-dark:    #10213F;
  --olive:        #607741;
  --olive-mid:    #7C925F;
  --olive-light:  #EEF2E8;
  --white:        #FFFFFF;
  --off-white:    #F7F8F6;
  --light-grey:   #F2F4F7;
  --border:       #E2E8F0;
  --text-dark:    #0E1C2E;
  --text-body:    #4A5568;
  --text-muted:   #8A9BB0;
  --font-head:    'DM Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --r:            6px;
  --r-lg:         12px;
  --r-xl:         20px;
  --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 12px rgba(23,43,76,.08);
  --shadow:       0 6px 32px rgba(23,43,76,.10);
  --shadow-lg:    0 16px 56px rgba(23,43,76,.14);
  --ease:         all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-olive   { color: var(--olive)  !important; }
.text-navy    { color: var(--navy)   !important; }
.text-white   { color: var(--white)  !important; }
.sec          { padding: 88px 0; }
.sec-sm       { padding: 56px 0; }
.ls-wide      { letter-spacing: .1em; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.r20-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-xs);
}
.r20-navbar .container {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.r20-logo-img { height: 54px; width: auto; }

.r20-navbar .nav-link {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--r);
  transition: var(--ease);
}
.r20-navbar .nav-link:hover,
.r20-navbar .nav-link.active {
  color: var(--olive) !important;
  background: var(--olive-light);
}
/* kill the underline pseudo from older CSS if present */
.r20-navbar .nav-link::after { display: none !important; }

.r20-dropdown {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 6px;
  margin-top: 6px !important;
  min-width: 260px;
}
.r20-dropdown .dropdown-item {
  border-radius: var(--r);
  color: var(--text-body);
  font-size: .875rem;
  padding: 10px 14px;
  transition: var(--ease);
}
.r20-dropdown .dropdown-item:hover  { background: var(--olive-light); color: var(--navy); }
.r20-dropdown .dropdown-item.active { background: var(--olive-light); color: var(--olive); font-weight: 600; }

.r20-toggler {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.r20-toggler span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

.r20-nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--r) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  font-size: .84rem !important;
  white-space: nowrap;
  transition: var(--ease) !important;
  box-shadow: 0 2px 8px rgba(23,43,76,.25);
}
.r20-nav-cta:hover { background: var(--navy-dark) !important; transform: translateY(-1px); }
/* higher specificity needed to beat .r20-navbar .nav-link color !important */
.r20-navbar .nav-link.r20-nav-cta { color: var(--white) !important; }

/* Mobile collapse panel */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 12px;
    margin-top: 8px;
    box-shadow: var(--shadow);
  }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.r20-btn-navy,
.r20-btn-olive,
.r20-btn-outline,
.r20-btn-outline-navy,
.r20-btn-outline-olive,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  border: none;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.r20-btn-navy        { background: var(--navy);  color: var(--white); box-shadow: 0 3px 14px rgba(23,43,76,.25); }
.r20-btn-navy:hover  { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); }
.r20-btn-olive       { background: var(--olive); color: var(--white); box-shadow: 0 3px 14px rgba(96,119,65,.25); }
.r20-btn-olive:hover { background: var(--olive-mid); color: var(--white); transform: translateY(-2px); }

.r20-btn-outline       { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.r20-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); transform: translateY(-2px); }

.r20-btn-outline-navy       { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.r20-btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.r20-btn-outline-olive       { background: transparent; color: var(--olive); border: 2px solid var(--olive); }
.r20-btn-outline-olive:hover { background: var(--olive); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp       { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1db954; color: #fff; transform: translateY(-2px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80') center/cover no-repeat;
  opacity: .18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(16,33,63,.92) 0%,
    rgba(16,33,63,.65) 55%,
    rgba(23,43,76,.3)  100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent, transparent 40px,
    rgba(255,255,255,.018) 40px,
    rgba(255,255,255,.018) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(96,119,65,.2);
  border: 1px solid rgba(168,190,138,.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b8d49a;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-title .accent-olive { color: #8FBB65; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas  { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  width: fit-content;
  backdrop-filter: blur(12px);
}
.stat-item        { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat-num         { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num .accent-olive { color: #8FBB65; }
.stat-label       { font-size: .68rem; letter-spacing: .1em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-top: 4px; }
.stat-divider     { width: 1px; height: 36px; background: rgba(255,255,255,.15); align-self: center; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  color: rgba(255,255,255,.35);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(96,119,65,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%     { opacity: 1;  transform: scaleY(1.15); }
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-strip { background: var(--olive); overflow: hidden; padding: 13px 0; }
.marquee-inner {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gold-dot { font-size: .45rem; opacity: .55; }

/* ── SECTION LABELS & TITLES ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-body { font-size: 1rem; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.section-body.light { color: rgba(255,255,255,.68); }

/* ── IMAGE STACK ─────────────────────────────────────────── */
.onestop-img-grid { position: relative; padding: 0 40px 56px 0; }
.img-main {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.img-main img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.img-main:hover img { transform: scale(1.04); }
.img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%;
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  border: 4px solid var(--white); box-shadow: var(--shadow);
}
.img-accent img { width:100%; height:100%; object-fit:cover; }
.gold-badge-box {
  position: absolute; top: 20px; right: -12px;
  background: var(--navy); color: var(--white);
  padding: 14px 18px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-weight: 700; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase;
  box-shadow: var(--shadow); z-index: 3;
}
.gold-badge-box i { font-size: 1.4rem; color: #8FBB65; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 16px;
  font-size: .82rem; color: var(--text-body);
  display: flex; align-items: center; transition: var(--ease);
}
.pill i { color: var(--olive); margin-right: 6px; }
.pill:hover { border-color: var(--olive); color: var(--navy); background: var(--olive-light); }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  display: block; background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px; height: 100%;
  transition: var(--ease); position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
  color: inherit;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--olive); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(96,119,65,.25);
  color: inherit;
}
.service-card.featured { background: var(--navy); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card.featured::after { background: #8FBB65; transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--olive-light); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--olive); margin-bottom: 20px;
  transition: var(--ease);
}
.service-card.featured .service-icon { background: rgba(255,255,255,.1); color: #8FBB65; }
.service-card:hover .service-icon    { background: var(--olive); color: var(--white); }

.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card.featured h3 { color: var(--white); }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-link {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive); display: flex; align-items: center; gap: 6px; transition: var(--ease);
}
.service-card.featured .service-link { color: #8FBB65; }
.service-card:hover .service-link { gap: 12px; }

/* ── LANDLORD CTA BOX ────────────────────────────────────── */
.landlord-cta-box {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--r-xl); padding: 52px 52px 44px;
  position: relative; overflow: hidden; color: var(--white);
}
.landlord-cta-box::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(96,119,65,.22) 0%, transparent 70%);
}
.cta-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r); padding: 9px 16px;
  font-size: .8rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 8px;
}
.cta-badge i { color: #8FBB65; }

/* ── ROOM CARDS ──────────────────────────────────────────── */
.room-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: var(--ease); box-shadow: var(--shadow-xs);
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(96,119,65,.25); }
.room-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.room-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.room-badge.available { background: var(--olive); color: var(--white); }
.room-badge.soon      { background: var(--navy);  color: var(--white); }

.room-info   { padding: 22px; }
.room-type   { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 5px; }
.room-title  { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.room-features span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.room-features i { color: var(--olive); }
.room-price-row { display: flex; align-items: center; justify-content: space-between; }
.room-price { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--navy); }
.room-price span { font-family: var(--font-body); font-size: .75rem; color: var(--text-muted); font-weight: 400; }

/* ── COMPLIANCE ──────────────────────────────────────────── */
.compliance-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.comp-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-body); padding: 9px 0; border-bottom: 1px solid var(--border); }
.comp-item i { flex-shrink: 0; color: var(--olive); }

.compliance-img-stack { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.comp-img-main { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--r-xl); }
.napit-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(255,255,255,.96); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
}
.napit-badge i    { font-size: 1.6rem; color: var(--olive); }
.napit-badge span { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); line-height: 1.3; }

/* ── COMPLIANCE CERT CARDS ───────────────────────────────── */
.compliance-cert-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px; text-align: center;
  transition: var(--ease); box-shadow: var(--shadow-xs);
}
.compliance-cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(96,119,65,.25); }
.compliance-cert-card i    { font-size: 2.2rem; color: var(--olive); margin-bottom: 12px; display: block; }
.compliance-cert-card h5   { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.compliance-cert-card p    { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── AREAS ───────────────────────────────────────────────── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 24px;
  font-size: .875rem; font-weight: 500; color: var(--text-body);
  transition: var(--ease); box-shadow: var(--shadow-xs);
}
.area-tag:hover              { border-color: var(--olive); color: var(--navy); background: var(--olive-light); }
.area-tag.featured-area      { background: var(--olive-light); border-color: var(--olive); color: var(--olive); font-weight: 600; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px; height: 100%;
  transition: var(--ease); box-shadow: var(--shadow-xs);
}
.testi-card:hover              { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(96,119,65,.25); }
.testi-card.featured-testi     { background: var(--navy); border-color: transparent; }
.testi-card.featured-testi p                        { color: rgba(255,255,255,.82); }
.testi-card.featured-testi .testi-author strong     { color: var(--white); }
.testi-card.featured-testi .testi-author span       { color: rgba(255,255,255,.5); }

.testi-stars  { color: #F5A623; font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: .93rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--olive), var(--olive-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; color: var(--white); flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--navy); font-size: .88rem; font-weight: 700; }
.testi-author span   { display: block; color: var(--text-muted); font-size: .76rem; }

/* ── CONSTRUCTION ────────────────────────────────────────── */
.construct-img-wrap { position: relative; border-radius: var(--r-xl); overflow: visible; }
.construct-img-wrap > img { border-radius: var(--r-xl); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.construct-badge {
  position: absolute; bottom: -18px; right: 24px;
  background: var(--olive); color: var(--white);
  padding: 12px 18px; border-radius: var(--r-lg);
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(96,119,65,.35);
}
.construct-badge i { font-size: 1.1rem; }
.construct-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--text-body);
}
.construct-feature i { flex-shrink: 0; color: var(--olive); }

/* ── INFO CARDS ──────────────────────────────────────────── */
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px;
  transition: var(--ease); box-shadow: var(--shadow-xs);
}
.info-card:hover { border-color: rgba(96,119,65,.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card .info-icon {
  width: 48px; height: 48px; background: var(--olive-light); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--olive); margin-bottom: 14px; transition: var(--ease);
}
.info-card:hover .info-icon { background: var(--olive); color: var(--white); }
.info-card h4 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card p  { font-size: .87rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ── SERVICE DETAIL LIST ─────────────────────────────────── */
.service-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--text-body);
  padding: 11px 14px; background: var(--off-white);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: var(--ease);
}
.service-detail-list li:hover { border-color: var(--olive); background: var(--olive-light); color: var(--navy); }
.service-detail-list li i { color: var(--olive); flex-shrink: 0; }

/* ── LANDLORD POINTS ─────────────────────────────────────── */
.landlord-point {
  background: var(--olive-light); border: 1px solid rgba(96,119,65,.2);
  border-left: 4px solid var(--olive);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 15px 20px; font-size: .95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.landlord-point i { color: var(--olive); margin-right: 10px; }

/* ── CTA BLOCK ───────────────────────────────────────────── */
.r20-cta-block {
  background: linear-gradient(120deg, var(--navy) 0%, #0e2240 100%);
  border-radius: var(--r-xl); padding: 64px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.r20-cta-block::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(96,119,65,.14) 0%, transparent 65%);
  pointer-events: none;
}

/* ── CONTACT BAR ─────────────────────────────────────────── */
.contact-bar { background: var(--navy); padding: 52px 0; }
.contact-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-bar-left h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-bar-left p  { font-size: .9rem; color: rgba(255,255,255,.58); margin: 0; }
.contact-bar-right   { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  min-height: 340px;
  background: var(--navy-dark);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden; padding-bottom: 52px;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .1;
}
.page-header-about::before        { background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&q=80'); }
.page-header-pm::before           { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=80'); }
.page-header-hmo::before          { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1200&q=80'); }
.page-header-landlord::before     { background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80'); }
.page-header-compliance::before   { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&q=80'); }
.page-header-rooms::before        { background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1200&q=80'); }
.page-header-construction::before { background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1200&q=80'); }
.page-header-contact::before      { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=80'); }

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,28,46,.95) 0%, rgba(14,28,46,.5) 100%);
  z-index: 1;
}
.page-header-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 40px,
    rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px
  );
}
.page-header-content { position: relative; z-index: 2; padding-top: 100px; }

.breadcrumb-r20 { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.breadcrumb-r20 a      { color: rgba(255,255,255,.42); transition: color .2s; }
.breadcrumb-r20 a:hover { color: #8FBB65; }
.breadcrumb-r20 span   { color: #8FBB65; }
.breadcrumb-r20 i      { font-size: .55rem; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.page-header p  { font-size: .97rem; color: rgba(255,255,255,.62); max-width: 560px; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px; background: var(--olive-light); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--olive); flex-shrink: 0;
}
.contact-info-item h5 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin-bottom: 3px; }
.contact-info-item p  { font-size: .88rem; color: var(--text-body); margin: 0; }
.contact-info-item a  { color: var(--text-body); transition: color .2s; }
.contact-info-item a:hover { color: var(--navy); }

/* ── FORM INPUTS ─────────────────────────────────────────── */
.r20-input {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: var(--r) !important;
  color: var(--white) !important;
  font-size: .875rem !important;
  padding: 11px 14px !important;
  transition: var(--ease) !important;
}
.r20-input:focus {
  box-shadow: 0 0 0 3px rgba(96,119,65,.25) !important;
  border-color: rgba(96,119,65,.5) !important;
  outline: none !important;
}
.r20-input::placeholder { color: rgba(255,255,255,.32) !important; }
.r20-input option       { background: #0f1d30; color: var(--white); }

.r20-input-light {
  background: var(--off-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r) !important;
  color: var(--text-dark) !important;
  font-size: .875rem !important;
  padding: 12px 14px !important;
  transition: var(--ease) !important;
}
.r20-input-light:focus {
  box-shadow: 0 0 0 3px rgba(96,119,65,.15) !important;
  border-color: var(--olive) !important;
  outline: none !important;
}
.r20-input-light::placeholder { color: var(--text-muted) !important; }

/* ── ROOM FILTER BAR ─────────────────────────────────────── */
.filter-bar  { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-btn {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 20px;
  font-size: .82rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: var(--ease); text-decoration: none;
  display: inline-block; box-shadow: var(--shadow-xs);
}
.filter-btn:hover,
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0, 0); }

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

/* ── FOOTER ──────────────────────────────────────────────── */
.r20-footer { background: #0B1929; padding-top: 72px; }
.footer-top { padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 4px; }
.footer-about { font-size: .87rem; color: rgba(255,255,255,.48); line-height: 1.8; }

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-contact-item  { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.48); }
.footer-contact-item i   { margin-top: 2px; flex-shrink: 0; color: var(--olive-mid); }
.footer-contact-item a   { color: rgba(255,255,255,.48); transition: color .2s; }
.footer-contact-item a:hover { color: #8FBB65; }

.footer-heading { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 18px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.48); transition: var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,.9); padding-left: 5px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: .77rem; color: rgba(255,255,255,.26);
  flex-wrap: wrap; gap: 8px;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366; color: #fff !important;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--ease);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%     { box-shadow: 0 6px 24px rgba(37,211,102,.6), 0 0 0 7px rgba(37,211,102,.1); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .sec                 { padding: 60px 0; }
  .hero-stats          { flex-wrap: wrap; }
  .stat-item           { padding: 0 14px; }
  .landlord-cta-box    { padding: 36px 28px; }
  .r20-cta-block       { padding: 40px 24px; }
  .contact-bar-inner   { flex-direction: column; align-items: flex-start; }
  .compliance-list     { grid-template-columns: 1fr; }
  .onestop-img-grid    { padding-right: 0; padding-bottom: 72px; }
  .gold-badge-box      { right: 6px; }
}
@media (max-width: 576px) {
  .hero-title          { font-size: 1.9rem; }
  .hero-ctas           { flex-direction: column; align-items: flex-start; }
  .hero-stats          { display: none; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .contact-bar-right   { flex-direction: column; width: 100%; }
  .contact-bar-right .btn { width: 100%; text-align: center; }
  .r20-logo-img        { height: 44px; }
  .r20-cta-block       { padding: 32px 20px; }
}