:root {
  --navy: #10243f;
  --navy-2: #071525;
  --gold: #d8a94d;
  --gold-2: #f3d187;
  --green: #0f8f64;
  --soft: #f5f2ec;
  --muted: #6b7280;
  --dark: #101827;
  --white: #ffffff;
  --border: rgba(16, 36, 63, .10);
  --shadow: 0 22px 70px rgba(16, 36, 63, .12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.demo-ribbon {
  background: linear-gradient(90deg, var(--navy), #16395f);
  color: #fff;
  font-size: .92rem;
  padding: 10px 0;
}

.ribbon-link {
  color: var(--gold-2);
  font-weight: 800;
}

.ribbon-link:hover {
  color: #fff;
}

.glass-navbar {
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 36, 63, .08);
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy), #1e4c78);
  color: var(--gold-2);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(16, 36, 63, .2);
  font-size: 1.35rem;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 3px;
}

.nav-link {
  color: var(--navy);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: rgba(216, 169, 77, .18);
}

.btn {
  font-weight: 800;
  transition: .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border: 0;
  box-shadow: 0 14px 30px rgba(216, 169, 77, .25);
}

.btn-gold:hover {
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(216, 169, 77, .35);
}

.btn-outline-dark {
  border-color: rgba(16, 36, 63, .18);
  color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: 900px;
  padding: 90px 0 70px;
  background: radial-gradient(circle at top left, rgba(216, 169, 77, .18), transparent 35%),
              linear-gradient(135deg, #f8f4eb 0%, #ffffff 45%, #eef4f2 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .55), rgba(255, 255, 255, .55)),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2310243f' stroke-opacity='.06'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 169, 77, .18);
  color: var(--gold-2);
  border: 1px solid rgba(216, 169, 77, .22);
  font-weight: 900;
  font-size: .9rem;
  margin-bottom: 16px;
}

.eyebrow.dark {
  color: var(--navy);
  background: rgba(216, 169, 77, .16);
  border-color: rgba(216, 169, 77, .22);
}

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-copy .lead {
  color: #465260;
  font-size: 1.25rem;
  line-height: 2;
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
  max-width: 620px;
}

.trust-row > div {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(16, 36, 63, .07);
}

.trust-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 1000;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
}

.hero-panel {
  position: relative;
  min-height: 620px;
}

.hero-card-main {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(16, 36, 63, .2);
  border: 1px solid rgba(255, 255, 255, .5);
  transform: rotate(-1.3deg);
}

.hero-card-main img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.hero-card-content {
  padding: 28px;
  background: #fff;
}

.text-gold {
  color: #a77723;
  font-weight: 900;
}

.hero-card-content h2 {
  color: var(--navy);
  font-weight: 1000;
  margin: 7px 0 8px;
}

.hero-card-content p {
  color: var(--muted);
  font-weight: 700;
}

.property-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 1000;
  color: #fff;
  backdrop-filter: blur(12px);
}

.property-badge.sale {
  background: rgba(15, 143, 100, .92);
}

.property-badge.rent {
  background: rgba(16, 36, 63, .92);
}

.property-badge.hot {
  background: rgba(196, 68, 54, .92);
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-specs span {
  background: #f4f6f8;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: .88rem;
}

.price {
  color: var(--navy);
  font-size: 1.2rem;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 900;
}

.floating-stat i {
  color: var(--green);
  font-size: 1.3rem;
}

.stat-one {
  top: 70px;
  left: -8px;
}

.stat-two {
  bottom: 120px;
  right: -6px;
}

.search-shell {
  position: relative;
  z-index: 10;
  margin-top: 55px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 28px 80px rgba(16, 36, 63, .16);
  padding: 24px;
  border-radius: 30px;
}

.form-label {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(16, 36, 63, .13);
  color: var(--navy);
  font-weight: 700;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  z-index: 2;
}

.input-icon .form-control {
  padding-right: 44px;
}

.feature-strip {
  padding: 30px 0;
  margin-top: -35px;
  position: relative;
  z-index: 20;
}

.feature-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(16, 36, 63, .09);
}

.feature-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(216, 169, 77, .16);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  flex: 0 0 auto;
}

.feature-card h3,
.project-card h3,
.offer-card h3,
.seo-card h3 {
  color: var(--navy);
  font-weight: 1000;
  font-size: 1.12rem;
}

.feature-card p,
.project-card p,
.offer-card p,
.seo-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
}

.section-padding {
  padding: 95px 0;
}

.soft-bg {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2,
.detail-showcase h2,
.tool-card h2,
.about-section h2,
.final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 1000;
  line-height: 1.18;
  margin: 0;
}

.section-text {
  color: #526070;
  font-size: 1.08rem;
  line-height: 2;
  font-weight: 600;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(16, 36, 63, .14);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  transition: .25s ease;
}

.chip:hover,
.chip.active {
  background: var(--navy);
  color: #fff;
}

.property-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 45px rgba(16, 36, 63, .08);
  transition: .25s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(16, 36, 63, .14);
}

.property-image {
  height: 245px;
  position: relative;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.06);
}

.property-actions {
  position: absolute;
  left: 16px;
  top: 16px;
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.icon-btn:hover,
.icon-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.property-body {
  padding: 22px;
}

.property-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.property-meta span {
  background: #f4f6f8;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}

.property-title {
  color: var(--navy);
  font-weight: 1000;
  font-size: 1.28rem;
  line-height: 1.5;
  min-height: 60px;
}

.property-location {
  color: var(--muted);
  font-weight: 800;
  margin: 10px 0 16px;
}

.property-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.property-spec-grid > span {
  padding: 12px 8px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  background: #fff;
  border-left: 1px solid var(--border);
}

.property-spec-grid > span:last-child {
  border-left: 0;
}

.property-spec-grid small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  margin-top: 3px;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.property-footer .price {
  font-size: 1.1rem;
}

.detail-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f2e8, #eef4f2);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div,
.trust-checks div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--navy);
  font-weight: 900;
}

.detail-list i,
.trust-checks i {
  color: var(--green);
  font-size: 1.25rem;
}

.mock-detail-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
}

.mock-detail-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.mock-detail-body {
  padding: 26px;
}

.verified {
  color: var(--green);
  font-weight: 1000;
}

.mock-detail-body h3 {
  color: var(--navy);
  font-weight: 1000;
  margin-top: 8px;
}

.mock-detail-body strong {
  color: var(--navy);
  white-space: nowrap;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.info-grid span {
  background: #f4f6f8;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
}

.area-card {
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: #fff;
  box-shadow: var(--shadow);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(7, 21, 37, .88));
}

.area-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.area-card:hover img {
  transform: scale(1.08);
}

.area-card span,
.area-card small {
  position: relative;
  z-index: 2;
}

.area-card span {
  font-size: 1.8rem;
  font-weight: 1000;
}

.area-card small {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  margin-top: 6px;
}

.project-card {
  height: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(16, 36, 63, .08);
}

.project-card.featured {
  background: linear-gradient(145deg, var(--navy), #17395c);
  color: #fff;
}

.project-card.featured h3,
.project-card.featured p,
.project-card.featured li,
.project-card.featured a {
  color: #fff;
}

.project-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(216, 169, 77, .18);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.project-card ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.project-card li {
  color: var(--navy);
  font-weight: 800;
}

.project-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 1000;
  margin-left: 8px;
}

.project-card a {
  color: var(--navy);
  font-weight: 1000;
}

.offer-main {
  min-height: 100%;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy), #183d63);
  color: #fff;
  padding: 44px;
  box-shadow: var(--shadow);
}

.offer-main h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 1000;
  line-height: 1.2;
}

.offer-main p {
  color: rgba(255, 255, 255, .78);
  line-height: 2;
  font-weight: 700;
  margin: 18px 0 28px;
}

.offer-card,
.seo-card,
.tool-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(16, 36, 63, .07);
}

.offer-card i,
.seo-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(216, 169, 77, .18);
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.calc-result {
  background: rgba(15, 143, 100, .10);
  border: 1px solid rgba(15, 143, 100, .15);
  color: var(--green);
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 1000;
}

.dark-tool {
  background: linear-gradient(145deg, var(--navy), #17395c);
  color: #fff;
}

.dark-tool h2,
.dark-tool .eyebrow,
.dark-tool .admin-list span {
  color: #fff;
}

.admin-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.admin-list span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 14px;
  font-weight: 900;
}

.admin-list i {
  color: var(--gold-2);
  margin-left: 6px;
}

.keyword-box {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(135deg, #f7f2e8, #fff);
  border: 1px solid var(--border);
}

.keyword-box h3 {
  color: var(--navy);
  font-weight: 1000;
  margin-bottom: 16px;
}

.keyword-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.keyword-tags span {
  background: #fff;
  border: 1px solid rgba(16, 36, 63, .10);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.about-section {
  padding: 105px 0;
  background: #fff;
}

.about-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, .92);
  border-radius: 20px;
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 1000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.trust-checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.final-cta {
  padding: 90px 0;
  background: linear-gradient(145deg, #081625, #13375c);
  color: #fff;
  text-align: center;
}

.final-cta-inner {
  max-width: 920px;
  margin: auto;
}

.final-cta span {
  color: var(--gold-2);
  font-weight: 1000;
}

.final-cta h2 {
  color: #fff;
  margin: 12px 0 16px;
}

.final-cta p {
  color: rgba(255, 255, 255, .78);
  line-height: 2;
  font-weight: 700;
  margin-bottom: 26px;
}

.site-footer {
  background: #06111f;
  color: #c9d2dd;
  padding: 70px 0 24px;
}

.footer-brand {
  color: #fff;
}

.site-footer h3 {
  color: #fff;
  font-weight: 1000;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.site-footer a:not(.brand):not(.footer-whatsapp) {
  display: block;
  color: #c9d2dd;
  margin-bottom: 10px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--gold-2) !important;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  color: var(--gold-2);
  font-weight: 1000;
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.footer-note {
  display: block;
  margin-top: 12px;
  color: #8fa0b2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #8fa0b2;
  font-weight: 700;
}

.sticky-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 1000;
  background: #16a969;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 1000;
  box-shadow: 0 18px 45px rgba(22, 169, 105, .35);
}

.sticky-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

.compare-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 18px 45px rgba(216, 169, 77, .35);
  font-weight: 1000;
}

.compare-float span {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  display: grid;
  place-items: center;
}

.empty-state {
  text-align: center;
  border: 1px dashed rgba(16, 36, 63, .18);
  border-radius: 30px;
  padding: 60px 20px;
  background: #fff;
}

.empty-state i {
  color: var(--gold);
  font-size: 3rem;
}

.empty-state h3 {
  color: var(--navy);
  font-weight: 1000;
}

.property-modal {
  border: 0;
  border-radius: 32px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  z-index: 20;
  left: 18px;
  top: 18px;
  background-color: rgba(255, 255, 255, .95);
  border-radius: 50%;
  padding: 12px;
}

.modal-gallery img {
  height: 430px;
  object-fit: cover;
  width: 100%;
}

.modal-detail {
  padding: 30px;
}

.modal-detail h2 {
  color: var(--navy);
  font-weight: 1000;
}

.modal-detail .modal-price {
  color: var(--green);
  font-weight: 1000;
  font-size: 1.6rem;
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modal-features span {
  background: #f4f6f8;
  color: var(--navy);
  border-radius: 16px;
  padding: 12px;
  font-weight: 900;
}

.compare-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
}

.compare-item h4 {
  color: var(--navy);
  font-weight: 1000;
  font-size: 1rem;
}

@media (max-width: 1199px) {
  .nav-actions {
    margin-top: 14px;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-card-main {
    transform: none;
  }

  .floating-stat {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-list,
  .modal-features {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .demo-ribbon {
    text-align: center;
    font-size: .82rem;
  }

  .hero-section {
    padding: 42px 0 60px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .search-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .section-padding,
  .detail-showcase,
  .about-section {
    padding: 65px 0;
  }

  .property-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .property-footer .btn {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-main img,
  .mock-detail-card img,
  .modal-gallery img {
    height: 260px;
  }

  .area-card {
    height: 280px;
  }

  .sticky-whatsapp span {
    display: none;
  }

  .sticky-whatsapp {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 18px;
  }
}
