/* =====================================================
   RELEVATE — Custom styles (layered on Bootstrap 5)
   ===================================================== */

:root {
  --red: #FF0000;
  --red-light: rgba(255, 0, 0, 0.15);
  --red-shadow: rgba(255, 0, 0, 0.4);
  --red-tint: rgba(255, 0, 0, 0.04);
  --red-border: rgba(255, 0, 0, 0.2);
  --black: #181818;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --bg-light: #F8F8F8;
  --bg-section: rgba(248, 248, 248, 1);
  --border-light: rgba(229, 57, 53, 0.15);
  --px: clamp(20px, 5vw, 72px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* * { box-sizing: border-box; } */
html,
body {
  font-family: 'Montserrat', sans-serif;
  background: rgba(248, 248, 248, 1);
  color: var(--black);
  overflow-x: hidden; 
  width:100%;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.font-display { font-family: 'Playfair Display', serif; }


.section-pad { padding: 72px 0 72px; }
.section-pads { padding: 0px 0 72px; }
.section-pads-sm { padding: 0px; }

/* Align all section containers to the same edges as the navbar */
.container { max-width: 100%; padding-left: var(--px); padding-right: var(--px); }
.containers { max-width: 100%; padding-left: var(--px); padding-right: var(--px);  background: #F3F3F3;
    padding-top: 63.99px; gap: 39.99px;}
/* ---------- NAVBAR ---------- */
.navbar.rv-nav {
  background: #FFFFFF;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  height: 80px;
  padding: 0 var(--px);
}
.rv-nav .navbar-nav .nav-link.active {
    color: var(--red);
}
.rv-nav .nav-logo svg { height: 44px; width: 139px; }
.rv-nav .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #181818;
  letter-spacing: -0.3px;
  margin: 0 20px;
  transition: color 0.2s;
  
}
.rv-nav .navbar-nav .nav-link:hover{ color: var(--red); }
.btn-rv {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: opacity 0.2s;
}

#navbar {
  width: 100%;
  transition: background 0.3s ease; /* Smooth transition fallback */
  z-index: 1000; /* Keeps nav above other elements */
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Prevents the content from abruptly shifting upward when nav changes to fixed position */
.sticky-padding {
  padding-top: 54px; /* Match this exactly to your navbar's total height */
}


.btn-rv:hover { background: var(--red); color: #fff; opacity: 0.88; }
.rv-nav .navbar-toggler { border: none; padding: 4px; box-shadow: none; }
.rv-nav .navbar-toggler-icon-bar {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px; margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- HERO ---------- */
.hero { padding: 150px 0 72px; background: var(--bg-section); position: relative; }
.hero-inner { position: relative; width: 100%; }
.hero-globe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: 820px; height: 800px;
  pointer-events: none; z-index: 0; opacity: 0.75;
}
.hero-globe-img {
  width: 100%; height: 100%;
  animation: heroGlobeRotate 80s linear infinite;
  transform-origin: center center;
}
@keyframes heroGlobeRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.breathe-icons { position: absolute; right: 2%; top: -70px; width: 240px; height: 140px; pointer-events: none; z-index: 1; }
.breathe-icon {
  position: absolute; width: 54px; height: 54px;
  background: rgba(255, 0, 0, 0.05); border: 1.24px solid var(--red-border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  animation: breathe 3s ease-in-out infinite;
}
.breathe-icon:nth-child(1) { right: 330px; top: 100px; animation-delay: 0.8s; }
.breathe-icon:nth-child(2) { right: 150px; top: 30px; animation-delay: 0.4s; }
.breathe-icon:nth-child(3) { right: 0; top: -50px; animation-delay: 0s; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.breathe-icon svg, .breathe-icon img { width: 32px; height: 32px; }
.hero-content { position: relative; z-index: 2; max-width: 100%; }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.5vw, 56px); font-weight: 500;
  line-height: 1.2; letter-spacing: -1.6px; color: var(--dark);
  max-width: 640px; margin-bottom: 24px;
}
.hero-heading .ir { font-style: italic; color: var(--red); text-decoration: underline; text-underline-offset: 5px; }
.hero-heading .ir-semi { font-style: italic; font-weight: 600; color: var(--red); text-decoration: underline; text-underline-offset: 5px; }
.search-wrap {
  background: #fff; border: 1.21px solid var(--red-border); border-radius: 4px;
  box-shadow: 0 4px 24px -8px var(--red-shadow);
  height: 62px; display: flex; align-items: center; position: relative; overflow: hidden;
}
.search-icon { position: absolute; left: 17px; width: 16px; height: 16px; flex-shrink: 0; }
.search-input {
  flex: 1; border: none; outline: none; font-family: 'Montserrat', sans-serif;
  font-size: 14px; color: rgba(17,17,17,0.55); padding: 0 16px 0 44px; height: 100%; background: transparent;
}
.search-input::placeholder { color: rgba(17,17,17,0.38); }
.search-filter-btn { width: 38px; height: 40px; border: 1.2px solid #E5E7EB; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 6px; flex-shrink: 0; background: #fff; }
.search-filter-btn svg { width: 15px; height: 15px; }
.search-btn { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; border-radius: 8px; padding: 0 22px; height: 40px; margin-right: 11px; flex-shrink: 0; border: none; }
.search-btn:hover { opacity: 0.9; }

/* Hide Buy Property button on tablet and mobile */
@media (max-width: 991.98px) {
    .buy-property-wrapper {
        display: none;
    }
}

/* ---------- SEARCH CONTAINER + FILTER PANEL ---------- */
.search-container { position: relative; }
.search-container.sfp-open .search-wrap {
  border-radius: 4px 4px 0 0;
  border-bottom-color: transparent;
  box-shadow: none;
}
.search-filter-panel {
  display: none;
  background: #fff;
  border: 1.21px solid var(--red-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 28px -6px rgba(255,0,0,0.18);
  padding: 20px 24px;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.search-filter-panel.sfp-open { display: flex; }
.search-filter-btn.active { background: rgba(255,0,0,0.06); border-color: var(--red-border); }
.search-filter-btn.active svg path { stroke: var(--red); }
.sfp-group { display: flex; flex-direction: column; gap: 10px; }
.sfp-label { font-size: 12px; font-weight: 500; letter-spacing: 0.2px; color: var(--gray); }
.sfp-range { -webkit-appearance: none; appearance: none; width: 110px; height: 3px; border-radius: 2px; background: linear-gradient(to right, var(--dark) 0%, var(--dark) 50%, #E5E7EB 50%); outline: none; cursor: pointer; }
.sfp-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--dark); cursor: pointer; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.sfp-range::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--dark); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2); cursor: pointer; }
.sfp-range-vals { display: flex; justify-content: space-between; font-size: 10px; color: var(--gray); width: 110px; }
.sfp-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sfp-chip { font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 6px; border: 1.2px solid #E5E7EB; background: #fff; color: var(--dark); cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.sfp-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.sfp-chip:hover:not(.active) { border-color: var(--dark); }
.sfp-actions { display: flex; flex-direction: column; gap: 10px; margin-left: auto; }
.sfp-clear { font-size: 13px; font-weight: 600; color: var(--dark); background: #fff; border: 1.2px solid #E5E7EB; border-radius: 8px; padding: 11px 24px; cursor: pointer; white-space: nowrap; transition: border-color 0.15s; text-align: center; }
.sfp-clear:hover { border-color: var(--dark); }
.sfp-apply { font-size: 13px; font-weight: 700; color: #fff; background: var(--red); border: none; border-radius: 8px; padding: 11px 24px; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; text-align: center; }
.sfp-apply:hover { opacity: 0.88; }

/* ---------- SECTION HEADER ---------- */
.section-headers { display: flex; align-items: left; justify-content: space-between; text-align: LEFT; margin-bottom: 48px; gap: 24px; }
.view-all-btns { width: 126px; height: 50px; border: 1.32px solid var(--red-light); border-radius: 8px; padding: 12px 25px; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--black); transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.view-all-btns:hover { border-color: var(--red); color: var(--red); }
.view-all-btns svg { width: 14px; height: 14px; }
.section-header { display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 48px; gap: 24px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; line-height: 17px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44.8px); font-weight: 500; line-height: 1.2; color: var(--dark); margin: 0; }
.view-all-btn { border: 1.32px solid var(--red-light); border-radius: 8px; padding: 12px 25px; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--black); transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.view-all-btn:hover { border-color: var(--red); color: var(--red); }
.view-all-btn svg { width: 14px; height: 14px; }

/* ---------- PROPERTY CARD ---------- */
.prop-card { background: var(--bg-light); border: 1.32px solid var(--red-light); border-radius: 10px; overflow: hidden; position: relative; transition: box-shadow 0.25s, transform 0.25s; height: 100%; }
.prop-card:hover { box-shadow: 0 8px 32px rgba(255,0,0,0.1); transform: translateY(-2px); }
.prop-img { width: 100%; height: 300px; position: relative; overflow: hidden; background: #d0d8e0; }
.prop-img .prop-img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-img-fill { transform: scale(1.04); }
.prop-img-fill { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 55%); pointer-events: none; }
.prop-status { position: absolute; top: 12px; left: 12px; height: 22px; border-radius: 100px; display: inline-flex; align-items: center; padding: 0 10px; font-size: 10.8px; font-weight: 700; letter-spacing: 0.65px; }
.prop-status.light { background: var(--bg-light); color: var(--black); border-radius: 4px; }
.prop-info { padding: 17px 20px 16px; }
.prop-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; line-height: 26px; color: var(--dark); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.prop-meta-item { display: flex; align-items: center; gap: 3px; font-size: 13px; color: var(--gray); line-height: 18px; }
.prop-meta-item svg { width: 11px; height: 11px; flex-shrink: 0; }
.prop-bottom { border-top: 1.32px solid var(--red-light); padding-top: 13px; display: flex; align-items: center; justify-content: space-between; }
.prop-price { font-size: 15px; font-weight: 700; color: var(--red); line-height: 22px; white-space: nowrap; }
.prop-view { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 600; color: var(--red); }
.prop-view svg { width: 12px; height: 12px; }

/* ---------- PAGINATION ---------- */
.rv-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 34px; }
.pag-btn { width: 40px; height: 40px; border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; background: #fff; }
.pag-btn.prev { border: 1.2px solid #E5E7EB; }
.pag-btn.next { border: 1.2px solid rgba(255,0,0,0.4); }
.pag-btn svg { width: 18px; height: 18px; }
.pag-info { font-size: 12px; color: var(--gray); }

/* ---------- TRUSTED DEVELOPERS ---------- */
.trusted-section { padding: 60px 0 0; }
.trusted-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 24px; }
.partner-btn { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: -0.3px; padding: 11px 36px; border-radius: 8px; display: inline-flex; align-items: center; gap: 25px; transition: opacity 0.2s; white-space: nowrap; }
.partner-btn:hover { opacity: 0.88; color: #fff; }
.partner-btn svg { width: 16px; height: 16px; }
.ticker-band { border-top: 1.32px solid var(--border-light); border-bottom: 1.32px solid var(--border-light); background: #F3F3F3; padding: 41px 0; overflow: hidden; height: 107px; }
.ticker-track { display: flex; width: max-content; animation: tickerScroll 30s linear infinite; }
.ticker-band:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 16px; padding: 0 24px; white-space: nowrap; font-size: 13.6px; font-weight: 600; letter-spacing: 1.36px; text-transform: uppercase; color: var(--black); opacity: 0.6; }
.ticker-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }
.ticker-sep { color: var(--red-light); font-size: 16px; opacity: 1; }

/* ---------- SLOTS CTA BANNER ---------- */
.slots-banner { border: 1.32px solid var(--red-light); border-radius: 16px; overflow: hidden; }
.slots-left { padding: 14px 56px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.slots-badge { display: inline-flex; align-items: center; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; padding: 5px 12px; border-radius: 6px; margin-bottom: 24px; width: fit-content; }
.slots-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 70px); font-weight: 600; line-height: 1.18; color: var(--dark); margin-bottom: 24px; }
.slots-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; max-width: 400px; }
.slots-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slots-btn-primary { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 8px; transition: opacity 0.2s; }
.slots-btn-primary:hover { opacity: 0.88; color: #fff; }
.slots-btn-secondary { border: 1.32px solid var(--red); color: var(--red); font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 8px; background: #fff; transition: background 0.2s; }
.slots-btn-secondary:hover { background: var(--red-tint); }
.slots-img { position: relative; overflow: hidden; min-height: 530px; height: 100%; }
.slots-img .slots-img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; padding: 10px; }

/* ---------- SLOTS CAROUSEL ---------- */
.slots-carousel { position: relative; }

/* Grid-stack: all slides occupy the same cell — tallest sets the height */
.slots-carousel-track {
  display: grid;
  grid-template-areas: "slide";
}
.slots-slide {
  grid-area: slide;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.slots-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- BLOG / LATEST TOPICS ---------- */
.blog-card { border: 1.32px solid var(--red-light); border-radius: 8px; overflow: hidden; background: #fff; transition: box-shadow 0.25s, transform 0.25s; height: 100%; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.08); transform: translateY(-2px); }
.blog-img { width: 100%; height: 300px; background: #dde4ec; position: relative; overflow: hidden; }
.blog-img .blog-img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-fill { transform: scale(1.04); }
.blog-category { position: absolute; top: 14px; left: 14px; border-radius: 4px; padding: 3px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.6px; }
.blog-category.red { background: var(--red); color: #fff; }
.blog-category.light { background: rgba(255,255,255,0.95); color: var(--black); }
.blog-body { padding: 20px 24px; }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 13px; }
.blog-readtime { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
.blog-readtime svg { width: 12px; height: 12px; }
.blog-date { font-size: 12px; color: var(--gray); margin-left: auto;}
.blog-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; line-height: 24px; color: var(--dark); margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 22px; display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1.32px solid var(--red-light); padding-top: 16px; }
.blog-author { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 6px;}
.blog-author svg { width: 13px; height: 13px; }
.blog-readmore { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--red); }
.blog-readmore svg { width: 12px; height: 12px; }

/* ---------- ABOUT SECTION ---------- */
.about-media { position: relative; }
.about-video { width: 100%; height: 700px; border-radius: 4px; overflow: hidden; position: relative; background: transparent; cursor: pointer; }
.about-video img, .about-video .about-video-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border: 1.5px solid rgba(255,255,255,0.9); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.about-video:hover .about-play { background: rgba(255,255,255,0.15); transform: translate(-50%, -50%) scale(1.08); }
.about-play svg { width: 20px; height: 20px; }
.about-years { position: absolute; right: -1px; bottom: -32px; background: #fff; border: 1.32px solid var(--red-light); border-radius: 8px; padding: 18px 28px; min-width: 155px; }
.about-years-label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.about-years-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; color: var(--dark); }
.about-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.about-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.2vw, 36px); font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.about-title-rule { width: 48px; height: 2px; background: var(--red); margin-bottom: 24px; }
.about-desc { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 40px; max-width: 540px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; margin-bottom: 36px; }
.about-stat { border-left: 2px solid var(--red-light); padding-left: 18px; }
.about-stat-icon { color: var(--red); margin-bottom: 10px; display: flex; align-items: center; }
.about-stat-icon svg { width: 20px; height: 20px; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gray); }
.about-services-btn { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 8px; display: inline-flex; align-items: center; gap: 32px; transition: opacity 0.2s; }
.about-services-btn:hover { opacity: 0.88; color: #fff; }
.about-services-btn svg { width: 16px; height: 16px; }

/* ---------- FOOTER ---------- */
.row.g-4.pb-4 { display: flex; justify-content: space-between; }
.row.g-4.pb-4 > div:nth-child(1) { flex: 0 0 360px;}
.row.g-4.pb-4 > div:nth-child(2) { flex: 0 0 220px;}
.row.g-4.pb-4 > div:nth-child(3) { flex: 0 0 320px;}
.rv-footer { background: rgba(243, 243, 243, 1); border-top: 1.32px solid var(--border-light); padding: 61px var(--px) 0; }
.footer-logo svg { height: 44px; width: 139px; }
.footer-tagline { font-size: 13.6px; color: var(--gray); line-height: 23px; margin-top: 12px; margin-bottom: 16px; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; border: 1.32px solid var(--border-light); border-radius: 2px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.social-icon:hover { border-color: var(--red); }
.social-icon svg { width: 15px; height: 15px; }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: var(--dark); letter-spacing: 0.8px; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: 13.6px; color: var(--gray); line-height: 20px; transition: color 0.2s; display: block; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.6px; color: var(--gray); line-height: 20px; margin-bottom: 14px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 10px; border-top: 1.32px solid var(--border-light); }
.footer-copy { font-size: 12.5px; color: var(--gray); margin: 0; }
.footer-designer { font-size: 12px; color: var(--gray); margin: 0; }
.footer-designer a { color: var(--red); }

/* ---------- IMAGE GRADIENTS (placeholders) ---------- */
.g1 { background: linear-gradient(135deg, #b8d4e8, #8aafcc); }
.g2 { background: linear-gradient(135deg, #c2d9c8, #8ab89e); }
.g3 { background: linear-gradient(135deg, #d4c2b8, #b89882); }
.g4 { background: linear-gradient(135deg, #c8c2d8, #a09ab8); }
.bg1 { background: linear-gradient(135deg, #c8d8c0, #94b884); }
.img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 13px; color: rgba(0,0,0,0.2); letter-spacing: 1px; font-style: italic; }

/* =================== RESPONSIVE =================== */
@media (max-width: 991.98px) {
  .hero { padding-top: 100px; }
  .hero-globe { opacity: 0.35; transform: translate(-50%, -46%);     width: 400px;
    height: 800px; }
  .breathe-icons { display: none; }
  .search-wrap { flex-wrap: wrap; height: auto; padding: 8px; gap: 8px; }
  .search-input { flex: 1 1 100%; order: 1; padding: 10px 8px 10px 40px; white-space: normal; }
  .search-icon { left: 14px; top: 22px; }
  .search-filter-btn { order: 2; }
  .search-btn { order: 3; flex: 1; margin-right: 0; }
  .trusted-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .slots-img { min-height: 280px; }
  .about-video { height: 450px; }
  .about-media { padding-bottom: 0px; }
  .about-stats { gap: 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rv-nav .navbar-collapse { background: #fff; padding: 16px 0; border-top: 1px solid var(--border-light); margin-top: 8px; }
  .rv-nav .navbar-nav .nav-link { margin: 6px 0; }
  .rv-nav .btn-rv { margin-top: 10px; display: inline-block; }
}
@media (max-width: 767.98px) {
  .hero { padding-top: 72px; }
  .section-pad { padding: 48px 0; }
  .about-video { height: 300px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-years { right: 50%; transform: translateX(50%); bottom: -28px; }
  .slots-left { padding: 32px 24px; }
  .ticker-item { font-size: 12px; padding: 0 16px; }
}

/* =====================================================
   SCROLL REVEAL & ENHANCED HOVER ANIMATIONS
   ===================================================== */

/* ── Hero entrance (plays on page load) ── */
@keyframes rvHeroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-heading    { animation: rvHeroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.search-container { animation: rvHeroIn 0.7s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ── Scroll reveal base states ── */
.rv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv-reveal.rv-from-left  { transform: translateX(-42px); }
.rv-reveal.rv-from-right { transform: translateX(42px); }
.rv-reveal.rv-visible    { opacity: 1; transform: translate(0, 0); }

/* ── Stagger transition delays ── */
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.18s; }
.rv-d3 { transition-delay: 0.28s; }
.rv-d4 { transition-delay: 0.38s; }

/* ─────────────────────────────────────────────────────
   ENHANCED HOVER ANIMATIONS
   ───────────────────────────────────────────────────── */
/* ── Nav link: underline slides in from left ── */
/* .rv-nav .navbar-nav .nav-link { position: relative; }
.rv-nav .navbar-nav .nav-link::after {
  content: '';
  position: absolute; left: 20px; bottom: 2px;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.25s ease;
} */
.rv-nav .navbar-nav .nav-link:hover::after { width: calc(100% - 40px); }
/* ── Buttons: lift + red glow ── */
.btn-rv, .slots-btn-primary, .about-services-btn, .partner-btn {
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-rv:hover, .slots-btn-primary:hover,
.about-services-btn:hover, .partner-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-shadow);
}
.slots-btn-secondary { transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.slots-btn-secondary:hover {
  background: var(--red-tint);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,0,0,0.1);
}

/* ── View-all button: arrow nudge ── */
.view-all-btn svg { transition: transform 0.25s ease; }
.view-all-btn:hover svg { transform: translateX(5px); }

/* ── Property cards: stronger lift ── */
.prop-card { transition: box-shadow 0.3s, transform 0.3s; }
.prop-card:hover { box-shadow: 0 14px 44px rgba(255,0,0,0.14); transform: translateY(-5px); }

/* ── Blog cards: stronger lift ── */
.blog-card { transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 12px 36px rgba(255,0,0,0.1); transform: translateY(-5px); }

/* ── Arrow nudges on hover ── */
.prop-view svg    { transition: transform 0.2s ease; }
.blog-readmore svg { transition: transform 0.2s ease; }
.prop-card:hover .prop-view svg  { transform: translateX(4px); }
.blog-readmore:hover svg         { transform: translateX(4px); }
.about-services-btn svg          { transition: transform 0.2s ease; }
.about-services-btn:hover svg    { transform: translateX(4px); }

/* ── Social icons: lift ── */
.social-icon { transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.social-icon:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ── Footer links: indent on hover ── */
.footer-links a { padding-left: 0; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--red); padding-left: 6px; }

/* ── About stats: border highlight on hover ── */
.about-stat { transition: border-left-color 0.25s; cursor: default; }
.about-stat:hover { border-left-color: var(--red); }

/* ── About play button: pulse ring ── */
@keyframes rvPlayPulse {
  0%   { box-shadow: 0 0 0 0    rgba(255,255,255,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(255,255,255,0);   }
  100% { box-shadow: 0 0 0 0    rgba(255,255,255,0);   }
}
.about-play { animation: rvPlayPulse 2.4s ease-out infinite; }

/* ── Slots banner: subtle hover glow ── */
.slots-banner { transition: box-shadow 0.35s; }
.slots-banner:hover { box-shadow: 0 10px 48px rgba(255,0,0,0.09); }

/* ── Search button: scale nudge ── */
.search-btn { transition: opacity 0.2s, transform 0.15s; }
.search-btn:hover { transform: scale(1.03); }

/* ── Video lightbox modal ── */
.rv-video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
.rv-video-modal.rv-modal-open { display: flex; }

.rv-video-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  animation: rvBackdropIn 0.3s ease both;
}
@keyframes rvBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.rv-video-wrap {
  position: relative; z-index: 1;
  width: min(920px, 90vw);
  animation: rvModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes rvModalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.rv-video-close {
  position: absolute; top: -46px; right: 0;
  width: 38px; height: 38px;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.75; transition: opacity 0.2s, transform 0.25s;
}
.rv-video-close:hover { opacity: 1; transform: rotate(90deg); }
.rv-video-close svg { width: 26px; height: 26px; }

.rv-video-frame {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: #000; border-radius: 6px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.rv-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .rv-reveal, .rv-reveal.rv-from-left, .rv-reveal.rv-from-right {
    transition: none; opacity: 1; transform: none;
  }
  .hero-heading, .search-container { animation: none; }
  .about-play { animation: none; }
}

/* =====================================================
   ABOUT PAGE COMPONENTS
   ===================================================== */

/* Active nav link */
.rv-nav .nav-link.active { color: var(--red); font-weight: 600; }
.rv-nav .nav-link.active::after { width: calc(100% - 40px); }

/* About page — centered header above 2-col layout */
.about-page-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin: 12px 0 0;
}
.about-page-title em {
  font-style: italic;
}
/* Reduce image height on the About page so it matches right-col content height */
.about-page-header ~ .row .about-video { height: 520px; }

/* Italic-red variant for section & page titles (no underline) */
.st-ir { font-style: italic; color: #181818; }
.au-ir  { font-style: italic; color: #111111;}

/* ---------- BUILT FOR PREMIUM CARDS ---------- */
.au-premium-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.au-premium-card {
  position: relative; border-radius: 10px; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.au-premium-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.28); }
.au-premium-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.au-premium-card:hover .au-premium-card-img { transform: scale(1.04); }
.au-premium-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1) 100%);
}
.au-premium-card-content { position: relative; z-index: 1; padding: 32px; color: #fff; }
.au-premium-card-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.au-premium-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.75;
  margin-bottom: 24px; max-width: 420px;
}
.au-premium-card-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.au-premium-card-social {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
  /*border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;*/
  padding: 6px 12px; transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.au-premium-card-social:hover { background: rgba(255,255,255,0.12); color: #fff; }
.au-premium-card-social svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ---------- HOW WE WORK — DARK SECTION ---------- */
.au-how-dark { background: var(--dark); padding: 80px 0; }
.au-how-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.3px;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 14px;
}
.au-how-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44.8px); font-weight: 500;
  color: #fff; line-height: 1.2; margin-bottom: 48px;
}

/* Media cards (Culture / Office) */
.au-media-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.au-media-card {
  position: relative; border-radius: 8px; overflow: hidden;
  height: 300px; cursor: pointer;
}
.au-media-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.au-media-card:hover .au-media-card-img { transform: scale(1.04); }
.au-media-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); }
.au-media-card-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border: 1.5px solid rgba(255,255,255,0.82); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  animation: rvPlayPulse 2.4s ease-out infinite;
  transition: background 0.2s;
}
.au-media-card:hover .au-media-card-play {
  background: rgba(255,255,255,0.15); animation: none;
  transform: translate(-50%, -50%) scale(1.08);
}
.au-media-card-play svg { width: 18px; height: 18px; }
.au-media-card-caption {
  position: absolute; bottom: 70px; left: 0; right: 0; padding: 0px 24px; text-align: center; background: linear-gradient(to top,rgba(0, 0, 0, 0.6) 0%,transparent 100%);
}
.au-media-card-title {
  font-family: 'Playfair Display', serif; font-size: 17px;
  color: #fff; font-weight: 500; margin-bottom: 4px;
}
.au-media-card-sub { font-size: 12px; color: rgba(255,255,255,0.58); }

/* 4-step process */
.au-process {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px;
}
.au-process-step { padding: 0; }
.au-process-step:first-child { padding-left: 0; }
.au-process-step:last-child  { padding-right: 0; }
.au-process-step:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 28px; }
.au-process-num { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--red); margin-bottom: 12px; }
.au-process-title { font-family: 'Playfair Display', serif; font-size: 19px; color: #fff; font-weight: 500; margin-bottom: 10px; }
.au-process-desc { font-size: 12.5px; color: rgba(255,255,255,0.44); line-height: 1.7; margin: 0; }

/* ---------- CAREERS ---------- */
.au-careers { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.au-careers-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 18px;
}
.au-careers-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 500;
  color: var(--dark); line-height: 1.2; margin-bottom: 20px;
}
.au-careers-desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; }
.au-view-roles-btn {
  background: var(--red); color: #fff; border: none;
  border-radius: 8px; padding: 13px 24px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.au-view-roles-btn:hover { opacity: 0.88; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px var(--red-shadow); }
.au-view-roles-btn svg { width: 14px; height: 14px; transition: transform 0.25s; }
.au-view-roles-btn:hover svg { transform: translateX(5px); }

.au-job-list { display: flex; flex-direction: column; gap: 12px; }
.au-job-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: #fff; border: 1.32px solid var(--red-light);
  border-radius: 10px; flex-wrap: wrap;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.au-job-row:hover { border-color: rgba(255,0,0,0.25); box-shadow: 0 4px 20px rgba(255,0,0,0.07); }
.au-job-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 500; color: var(--dark);  flex: 0 0 160px; min-width: 120px;
}
.au-job-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
  padding: 4px 12px; border-radius: 6px;
  border: 1.5px solid var(--red); color: var(--red);
  background: #fff; flex-shrink: 0;
}
.au-job-meta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.au-job-loc { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.au-job-loc svg { width: 11px; height: 11px; flex-shrink: 0; }
.au-job-exp { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.au-job-exp svg { width: 11px; height: 11px; flex-shrink: 0; }
.au-job-apply {
  font-size: 13px; font-weight: 700; color: var(--red); margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.au-job-apply svg { width: 11px; height: 11px; transition: transform 0.2s; }
.au-job-apply:hover svg { transform: translateX(4px); }
/* See all — dashed border card */
.au-see-all-card {
  border: 1.32px dashed rgba(229,57,53,0.3); border-radius: 10px;
  padding: 16px 24px; text-align: center;
}
.au-see-all-card a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.au-see-all-card a:hover { color: var(--red); }
.au-see-all-card svg { width: 12px; height: 12px; transition: transform 0.2s; }
.au-see-all-card a:hover svg { transform: translateX(4px); }

/* ---------- FOUNDER'S MESSAGE ---------- */
.au-founder { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.au-founder-img { border-radius: 8px 8px 0 0; overflow: hidden; height: 500px; }
.au-founder-img-wrap {
    position: relative;
    display: inline-block;
}
.au-founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.au-founder-img-caption {
  position: absolute; 
  padding: 18px 28px;
  min-width: 170px;
  right: 0px;
  bottom: -26px;
  border: 1.32px solid var(--red-light); border-top: none; border-radius: 8px;
  background: #fff;
  z-index: 10
}
.au-founder-img-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.8px;}
.au-founder-img-role { font-size: 11px; color: var(--gray); margin-top: 2px; }
.au-founder-content {
    border-left: 3.6px solid var(--red);
    padding-left: 24px;   /* Space between border and text */
    margin-left: 8px;
}
.au-founder-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 20px;
}
.au-founder-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 32px;
  line-height: 1; color: var(--red); margin-bottom: 16px; display: block;
}
/* Lead paragraph — large italic serif (the featured thesis statement) */
.au-founder-quote-lead {
  font-family: 'Playfair Display', serif; font-size: 17px;
  font-style: italic; color: var(--dark); line-height: 1.85; margin-bottom: 18px;
}
/* Body paragraphs — smaller regular text */
.au-founder-quote-body {
  font-size: 13.5px; color: var(--gray); line-height: 1.75; margin-bottom: 14px;
}
.au-founder-quote-body:last-of-type { margin-bottom: 36px; }
/* .au-founder-rule { width: 2px; height: 260px; background: var(--red); margin-bottom: 28px; } */
.au-founder-person { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.au-founder-person-info { display: flex; align-items: center; gap: 14px; }
.au-founder-avatar {
  width: 48px; height: 48px; border-radius: 8px; background: var(--red); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: #fff;
}
.au-founder-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.au-founder-role-label { font-size: 12px; color: var(--gray); margin-top: 2px; }
.au-founder-socials { display: flex; gap: 8px; }
.social-icons { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.social-icons:hover { border-color: var(--red); }
.social-icons svg { width: 15px; height: 15px; }

/* ---------- CTA BANNER ---------- */
.au-cta-banner { background: var(--dark); padding: 64px 0; }
.au-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.au-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 500; color: #fff; margin-bottom: 10px;
}
.au-cta-sub { font-size: 14px; color: rgba(255,255,255,0.45); margin: 0; }
.au-cta-btn { white-space: nowrap; flex-shrink: 0; background-color: #FFFFFF; color: #E53935;}

/* ---------- ABOUT PAGE RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .au-premium-cards   { grid-template-columns: 1fr; }
  .au-media-cards     { grid-template-columns: 1fr; }
  .au-process { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .au-process-step { padding: 0 24px; }
  .au-process-step:first-child { padding-left: 0; }
  .au-process-step:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.08); }
  .au-process-step:nth-child(3) { border-left: none; padding-left: 0; }
  .au-process-step:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.08); }
  .au-careers { grid-template-columns: 1fr; gap: 48px; }
  .au-founder { grid-template-columns: 1fr; gap: 48px; }
  .au-founder-img { height: 380px; }
  .au-how-dark { padding: 64px 0; }
}
@media (max-width: 767.98px) {
  .au-premium-card { min-height: 360px; }
  .au-media-card   { height: 240px; }
  .au-process { grid-template-columns: 1fr 1fr; }
  .au-cta-inner { flex-direction: column; align-items: flex-start; }
  .au-founder-img { height: 300px; }
}

/* =====================================================
   PAGE HEADER (shared: Careers / Insights listing)
   ===================================================== */
.page-header { padding: 56px 0 40px; }
.page-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.page-desc { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 640px; margin: 0; }

/* =====================================================
   CAREERS LISTING PAGE
   ===================================================== */
.crs-list { display: flex; flex-direction: column; gap: 20px; }
.crs-job-card { background: #fff; border: 1.32px solid #F3F4F6; border-radius: 12px; overflow: hidden; transition: box-shadow 0.25s, border-color 0.25s; }
.crs-job-card:hover { border-color: rgba(255,0,0,0.25); box-shadow: 0 4px 20px rgba(255,0,0,0.06); }
.crs-job-head { display: flex; align-items: center; gap: 20px; padding: 28px 32px; cursor: pointer; }
.crs-job-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--red-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.crs-job-icon svg { width: 22px; height: 22px; }
.crs-job-info { flex: 1; min-width: 0; }
.crs-job-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.crs-job-exp-pill { font-size: 11px; font-weight: 600; color: var(--red); background: var(--red-light); border-radius: 100px; padding: 3px 12px; white-space: nowrap; }
.crs-job-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.crs-job-meta-item { font-size: 12.5px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.crs-job-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.crs-job-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.crs-job-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.crs-job-tag svg { width: 12px; height: 12px; transition: transform 0.25s; }
.crs-job-card.is-open .crs-job-tag svg { transform: rotate(180deg); }
.crs-job-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.crs-job-card.is-open .crs-job-body { max-height: 2400px; }
.crs-job-body-inner { padding: 0 32px 36px; border-top: 1.32px solid var(--red-light); margin-top: 4px; padding-top: 28px; }
.crs-job-desc { font-size: 13.5px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; max-width: 900px; }
.crs-job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.crs-job-col-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.crs-job-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.crs-job-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray); line-height: 1.6; }
.crs-job-checklist svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.crs-apply-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }
.crs-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.crs-input, .crs-textarea, .crs-upload {
  width: 100%; border: 1.32px solid #E5E7EB; border-radius: 8px;
  padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-size: 13.5px;
  color: var(--dark); background: #fff; transition: border-color 0.2s;
}
.crs-input:focus, .crs-textarea:focus { outline: none; border-color: var(--red); }
.crs-textarea { resize: vertical; min-height: 90px; margin-bottom: 16px; }
.crs-upload { display: flex; align-items: center; gap: 10px; color: var(--gray); cursor: pointer; margin-bottom: 24px; }
.crs-upload svg { width: 15px; height: 15px; flex-shrink: 0; }
.crs-form-actions { display: flex; gap: 14px; flex-wrap: wrap;}
.crs-submit-btn { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; border: none; border-radius: 8px; padding: 13px 32px; transition: opacity 0.2s, transform 0.2s; }
.crs-submit-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.crs-cancel-btn { background: #fff; color: var(--dark); font-size: 14px; font-weight: 600; border: 1.32px solid #E5E7EB; border-radius: 8px; padding: 13px 28px; transition: border-color 0.2s; overflow: hidden;}
.crs-cancel-btn:hover { border-color: var(--dark); }

@media (max-width: 767.98px) {
  .crs-job-head { flex-wrap: wrap; padding: 22px 20px; }
  .crs-job-body-inner { padding: 24px 20px 28px; }
  .crs-job-cols { grid-template-columns: 1fr; gap: 24px; }
  .crs-form-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PROPERTY DETAIL PAGE
   ===================================================== */
.pd-hero { position: relative; height: 380px; overflow: hidden; }
.pd-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%); }
.pd-hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.pd-hero-badge { display: inline-flex; align-items: center; background: #00C950; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; width: fit-content; }
.pd-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 48px); font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.pd-hero-sub { font-size: 14px; color: rgba(255,255,255,0.82); margin: 0; max-width: 560px; }

.pd-back-bar { border-bottom: 1.32px solid var(--border-light); padding: 18px 0; }
.pd-back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #6B7280; transition: color 0.2s; }
.pd-back-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.pd-back-link:hover { color: var(--red); }
.pd-back-link:hover svg { transform: translateX(-3px); }

.pd-info-bar {max-width: 751px; width: 100%; min-height: 95px;background: #F3F3F3; border-radius: 10px; padding: 24px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px;}
.pd-info-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.pd-info-value { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--dark); }

.pd-sidebar-card { background: #fff; border: 1.32px solid var(--red-light); border-radius: 12px; padding: 28px;}
.pd-sidebar-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }
.pd-sidebar-btn-primary { display: block; text-align: center; background: var(--red); color: #fff; font-size: 14px; font-weight: 600; border-radius: 8px; padding: 13px; margin-bottom: 12px; transition: opacity 0.2s, transform 0.2s; }
.pd-sidebar-btn-primary:hover { opacity: 0.88; color: #fff; transform: translateY(-2px); }
.pd-sidebar-btn-outline { display: block; text-align: center; background: #fff; color: var(--red); border: 1.32px solid var(--red); font-size: 14px; font-weight: 600; border-radius: 8px; padding: 13px; transition: background 0.2s; }
.pd-sidebar-btn-outline:hover { background: var(--red-tint); }

.pd-price-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.pd-price { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 34px); font-weight: 600; color: var(--red); margin-bottom: 8px; }
.pd-rera { font-size: 12px; color: var(--gray); margin-bottom: 36px; }
.pd-section-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 18px; }
.pd-desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 44px; }

.pd-amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 44px; }
.pd-amenity-item { display: flex; align-items: center; gap: 10px; background: #F3F3F3; border-radius: 8px; padding: 14px 16px; font-size: 13.5px; color: var(--dark); font-weight: 500; }
.pd-amenity-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

.pd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; }
.pd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pd-gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 991.98px) {
  .pd-info-bar { grid-template-columns: repeat(2, 1fr); }
  .pd-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .pd-hero { height: 300px; }
  .pd-info-bar { grid-template-columns: 1fr 1fr; padding: 20px; }
  .pd-amenities-grid { grid-template-columns: 1fr; }
  .pd-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   INSIGHT ARTICLE (single blog post) PAGE
   ===================================================== */
.art-hero { position: relative; height: 320px; overflow: hidden; }
.art-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.art-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.15) 100%); }
.art-hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.art-hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.art-hero-category { border: 1.32px solid #E53935; color: #E53935; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 4px; }
.art-hero-readtime { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.8); }
.art-hero-readtime svg { width: 13px; height: 13px; }
.art-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; color: #fff; line-height: 1.25; max-width: 780px; margin: 0; }

.art-topbar { border-bottom: 1.32px solid var(--border-light); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.art-topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.art-back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 400; color: #6B7280; transition: color 0.2s; }
.art-back-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.art-back-link:hover { color: var(--red); }
.art-back-link:hover svg { transform: translateX(-3px); }
.art-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray); }
.art-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.art-details-btn { display: inline-flex; align-items: center; gap: 8px; border: 1.32px solid #E5E7EB; border-radius: 8px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #6B7280; transition: border-color 0.2s; }
.art-details-btn:hover { border-color: var(--dark); }
.art-details-btn svg { width: 14px; height: 14px; }

.art-body { width: 100%;}
.art-bodys-sm { max-width: 860px; width: 100%; margin: 0 auto;}
.art-quote { border-left: 3px solid var(--red); padding-left: 24px; margin: 40px 0 40px; }
.art-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: #111111; line-height: 1.7; margin: 0;font-weight: 400px; }
.art-body p { font-size: 14.5px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.art-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--dark); margin: 40px 0 16px; }
.art-body h3:first-of-type { margin-top: 0; }
.art-section-body { font-size: 14.5px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.art-section-body p { margin-bottom: 16px; }
.art-section-body ul,
.art-section-body ol { margin: 0 0 20px 1.25em; padding: 0; }
.art-section-body li { margin-bottom: 8px; }
.art-section-body a { color: var(--red); text-decoration: underline; }
.art-section-body strong,
.art-section-body b { color: var(--dark); font-weight: 600; }
.art-section-body h2,
.art-section-body h3,
.art-section-body h4 { font-family: 'Playfair Display', serif; color: var(--dark); margin: 24px 0 12px; }
.art-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.art-tags-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gray); margin-right: 4px; }
.art-tag { font-size: 12px; font-weight: 500; color: var(--dark); border: 1.32px solid #E5E7EB; border-radius: 4px; padding: 5px 16px; }

.art-author-card { background: #F3F3F3; border-radius: 12px; padding: 32px; display: flex; gap: 20px; align-items: flex-start; }
.art-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.art-author-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.art-author-role { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.art-author-bio { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.art-author-socials { display: flex; gap: 8px; }

.art-related  {background-color: #F3F3F3; }
.art-related-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--dark); margin-bottom: 28px; }
.art-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.art-related-card { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1.32px solid var(--border-light); transition: opacity 0.2s; }
.art-related-card:hover { opacity: 0.8; }
.art-related-img { width: 88px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; margin-bottom: 40px; }
.art-related-img img { width: 100%; height: 100%; object-fit: cover; }
.art-related-category { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: var(--red); margin-bottom: 6px; display: block; }
.art-related-headline { font-family: 'Playfair Display', serif; font-size: 14.5px; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.art-related-date { font-size: 11.5px; color: var(--gray); padding-bottom: 40px; }
.art-related-arrow { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.art-related-arrow svg { width: 13px; height: 13px; color: var(--red); }
/* .art-related-card:hover .art-related-arrow { background: var(--red); border-color: var(--red); } */
/* .art-related-card:hover .art-related-arrow svg { color: #fff; } */

@media (max-width: 767.98px) {
  .art-hero { height: 260px; }
  .art-author-card { flex-direction: column; }
  .art-related-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   INSIGHTS LISTING PAGE
   ===================================================== */
.isg-search-wrap { background: #fff; border: 1.32px solid var(--red-border); border-radius: 8px; box-shadow: 0 4px 24px -8px var(--red-shadow); height: 58px; display: flex; align-items: center; position: relative; overflow: hidden; margin-bottom: 20px; max-width: 720px; transition: all 0.3s ease;}
.isg-search-wrap:focus-within { border-color: var(--red); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15); transform: translateY(-2px);}
.isg-search-icon { position: absolute; left: 18px; width: 16px; height: 16px; }
.isg-search-input { flex: 1; border: none; outline: none; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--dark); padding: 0 8px 0 46px; height: 100%; background: transparent; min-width: 0;}
.isg-search-input::placeholder { color: rgba(17,17,17,0.4); }
.isg-search-btn { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; border-radius: 8px; padding: 0 26px; height: 42px; margin-right: 8px; border: none; transition: opacity 0.2s; }
.isg-search-btn:hover { opacity: 0.88; }

.isg-top-searches { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; max-width: 720px; }
.isg-top-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray); margin-right: 4px; }
.isg-search-chip { font-size: 12.5px; font-weight: 500; color: var(--dark); border: 1.32px solid #E5E7EB; border-radius: 4px; padding: 7px 16px; transition: border-color 0.2s, color 0.2s; }
.isg-search-chip:hover { border-color: var(--red); color: var(--red); }

.isg-tabs { display: flex; align-items: center; gap: 36px; border-bottom: 1.32px solid var(--border-light); margin-bottom: 44px; }
.isg-tab { font-size: 14px; font-weight: 600; color: var(--gray); padding: 16px 0; position: relative; transition: color 0.2s; }
.isg-tab::after { content: ''; position: absolute; left: 0; bottom: -1.32px; width: 0; height: 2px; background: var(--red); transition: width 0.25s; }
.isg-tab.active, .isg-tab:hover { color: var(--red); }
.isg-tab.active::after { width: 100%; }

@media (max-width: 767px) {
  .isg-tabs { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: none;  height:100px; }
  .isg-tab { text-align: center; padding: 8px 0;}
  .isg-tab::after { left: 50%; transform: translateX(-50%); }
  .isg-tab.active::after { width: 100%;}
}
@media (max-width: 767px) {
  .isg-tabs { overflow-y: hidden; }
}
.isg-featured { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1.32px solid var(--red-light); border-radius: 12px; overflow: hidden; margin-bottom: 44px; }
.isg-featured-img { position: relative; overflow: hidden; min-height: 320px; }
.isg-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.isg-featured-body { padding: 40px 40px 32px; display: flex; flex-direction: column; justify-content: center; }
.isg-featured-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.isg-featured-category { border: 1.32px solid var(--red); color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 4px; }
.isg-featured-readtime { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray); }
.isg-featured-readtime svg { width: 13px; height: 13px; }
.isg-featured-title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 14px; }
.isg-featured-excerpt { font-size: 13.5px; color: var(--gray); line-height: 1.75; margin-bottom: 22px; }
.isg-featured-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.isg-featured-author { font-size: 12.5px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.isg-featured-author svg { width: 13px; height: 13px; }
.isg-btn-primary { background: var(--red); color: #fff; font-size: 13px; font-weight: 600; border-radius: 8px; padding: 11px 22px; transition: opacity 0.2s; }
.isg-btn-primary:hover { opacity: 0.88; color: #fff; }
.isg-btn-outline { background: #fff; color: #6B7280; border: 1.32px solid #E5E7EB; font-size: 13px; font-weight: 600; border-radius: 8px; padding: 11px 18px; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s; }
.isg-btn-outline:hover { border-color: var(--dark); }
.isg-btn-outline svg { width: 13px; height: 13px; }
.isg-readmore { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--red); }
.isg-readmore svg { width: 12px; height: 12px; transition: transform 0.2s; }
.isg-readmore:hover svg { transform: translateX(4px); }

.isg-card-actions { display: flex; align-items: center; gap: 10px; margin-top: 4px; width: 100%;}
.isg-card-actions .isg-btn-primary {  flex: 1; height: 34px; min-width: 0; display: flex; align-items: center;justify-content: center; }
.isg-card-actions .isg-btn-outline { flex: 0 0 85px; height: 34px; display: flex; align-items: center; justify-content: center;}
.isg-card-category { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: var(--red); }

/* Mobile */
@media (max-width: 767px) {
  .isg-card-actions { display: flex; flex-direction: row; align-items: center; gap: 8px; width: 100%;}
  .isg-card-actions .isg-btn-primary { flex: 1; min-width: 0; height: 34px; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
  .isg-card-actions .isg-btn-outline { flex: 0 0 85px; height: 34px; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
}

.isg-newsletter { background: var(--bg-light); border-radius: 16px; padding: 64px 40px; text-align: center; margin: 8px 0 0; }
.isg-newsletter-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.isg-newsletter-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.4vw, 36px); font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 14px; }
.isg-newsletter-sub { font-size: 14px; color: var(--gray); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.isg-newsletter-form { display: flex; max-width: 440px; margin: 0 auto 16px; gap: 0; border: 1.32px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.isg-newsletter-form input { flex: 1; border: none; outline: none; padding: 0 18px; font-family: 'Montserrat', sans-serif; font-size: 13.5px; background: transparent; }
.isg-newsletter-form button { background: var(--red); color: #fff; font-size: 13.5px; font-weight: 600; border: none; padding: 14px 28px; transition: opacity 0.2s; white-space: nowrap; }
.isg-newsletter-form button:hover { opacity: 0.88; }
.isg-newsletter-note { font-size: 12px; color: var(--gray); margin: 0; }

@media (max-width: 991.98px) {
  .isg-featured { grid-template-columns: 1fr; }
  .isg-featured-img { min-height: 240px; }
}
@media (max-width: 767.98px) {
  .isg-tabs { gap: 22px; overflow-x: auto; white-space: nowrap; }
  .isg-featured-body { padding: 28px 24px; }
  .isg-newsletter { padding: 44px 24px; }
  .isg-newsletter-form { flex-direction: column; border: none; gap: 10px; }
  .isg-newsletter-form input { border: 1.32px solid #E5E7EB; border-radius: 8px; padding: 13px 16px; }
  .isg-newsletter-form button { border-radius: 8px; }
}
/* Show only first 3 Insight cards on mobile */
@media (max-width: 767.98px) {
 .insights-grid > div:nth-child(n+4) {display: none; }
}

/* =====================================================
   CONTACT SALES — POPUP MODAL
   ===================================================== */
.cs-modal { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; padding: 20px; }
.cs-modal.cs-modal-open { display: flex; }
.cs-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,0.6); animation: rvBackdropIn 0.25s ease both; }
.cs-card {
  position: relative; z-index: 1; width: 100%; max-width: 380px;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: rvModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-card::before { content: ''; display: block; height: 4px; background: var(--red); }
.cs-card-body { padding: 28px 28px 24px; }
.cs-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.cs-title { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; color: var(--dark); margin-bottom: 4px; text-align: left; }
.cs-sub { font-size: 12.5px; color: var(--gray); margin: 0; }
.cs-close { width: 28px; height: 28px; border: none; background: transparent; color: var(--gray); flex-shrink: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 6px; transition: background 0.2s, color 0.2s; margin-top: -2px; }
.cs-close:hover { background: var(--bg-light); color: var(--dark); }
.cs-close svg { width: 15px; height: 15px; }

.cs-tabs { display: flex; border-radius: 8px; gap: 4px; margin-bottom: 22px; border: 1.2px solid #E5E7EB;}
.cs-tab { flex: 1; border: none; background: transparent; font-size: 12.5px; font-weight: 600; color: var(--gray); padding: 10px 12px; border-radius: 6px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.cs-tab.active { background: var(--dark); color: #fff; }

.cs-field { margin-bottom: 18px; }
.cs-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.cs-input {
  width: 100%; border: 1.32px solid #E5E7EB; border-radius: 8px;
  padding: 12px 14px; font-family: 'Montserrat', sans-serif; font-size: 13.5px;
  color: var(--dark); background: #fff; transition: border-color 0.2s;
}
.cs-input:focus { outline: none; border-color: var(--red); }
.cs-input::placeholder { color: rgba(17,17,17,0.35); }

.cs-submit {
  width: 100%; background: var(--red); color: #fff; border: none;
  border-radius: 8px; padding: 14px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 14px;
}
.cs-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.cs-submit:disabled { opacity: 0.75; cursor: default; }
.cs-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; color: var(--gray); margin: 0; }
.cs-note svg { width: 11px; height: 11px; flex-shrink: 0; }

.cs-panel { display: none; }
.cs-panel.active { display: block; }

/* Success state */
.cs-success { display: none; text-align: center; padding: 12px 0 4px; }
.cs-success.active { display: block; animation: rvHeroIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cs-success-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #fff;
}
.cs-success-icon svg { width: 24px; height: 24px; }
.cs-success-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.cs-success-desc { font-size: 13px; color: var(--gray); line-height: 1.65; margin: 0 auto 24px; max-width: 280px; }
.cs-success-btn {
  width: 200px; height: 44px; background: var(--dark); color: #fff; border: none;
  border-radius: 8px; padding: 14px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s;
}
.cs-success-btn:hover { opacity: 0.88; }

/* =====================================================
   ALL PROPERTIES — LISTING PAGE
   ===================================================== */
.ap-search-row { display: flex; align-items: stretch; gap: 12px; }
.ap-search-box {max-width: 390px;min-height: 39px;
  flex: 1; background: #fff; border: 1.21px solid var(--red-border); border-radius: 8px;
  box-shadow: 0 4px 24px -8px var(--red-shadow); height: 58px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.ap-search-box:focus-within { border-color: var(--red); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15); transform: translateY(-2px);}
.ap-search-icon { position: absolute; left: 18px; width: 16px; height: 16px; flex-shrink: 0; }
.ap-search-input {
  flex: 1; border: none; outline: none; font-family: 'Montserrat', sans-serif;
  font-size: 14px; color: var(--dark); padding: 0 16px 0 46px; height: 100%; background: transparent;
}
.ap-search-input::placeholder { color: rgba(17,17,17,0.4); }
.ap-filters-toggle {
  display: flex; align-items: center; gap: 8px; height: 58px; padding: 0 22px;
  background: #fff; border: 1.2px solid #E5E7EB; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap;
  transition: border-color 0.2s, background 0.2s; flex-shrink: 0;
}
.ap-filters-toggle svg { width: 15px; height: 15px; flex-shrink: 0; }
.ap-filters-toggle.active { background: rgba(255,0,0,0.06); border-color: var(--red-border); color: var(--red); }
.ap-filters-toggle.active svg path { stroke: var(--red); }

.ap-filter-panel {
  display: none; align-items: center; gap: 32px; flex-wrap: wrap;
  background: #fff; border: 1.21px solid var(--red-border); border-radius: 8px;
  box-shadow: 0 8px 28px -6px rgba(255,0,0,0.18); padding: 20px 24px; margin-top: 16px;
}
.ap-filter-panel.sfp-open { display: flex; }

.ap-results-count { font-size: 13px; color: var(--gray); margin: 28px 0 24px; }
.ap-results-count strong { color: var(--dark); font-weight: 700; }

/* ---------- LISTING CARD ---------- */
.ap-card { background: #fff; border: 1.32px solid var(--red-light); border-radius: 10px; overflow: hidden; height: 100%; transition: box-shadow 0.25s, transform 0.25s; }
.ap-card:hover { box-shadow: 0 8px 32px rgba(255,0,0,0.1); transform: translateY(-2px); }
.ap-card-img { display: block; width: 100%; height: 230px; position: relative; overflow: hidden; background: #d0d8e0; }
.ap-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ap-card:hover .ap-card-img img { transform: scale(1.04); }
.ap-card-badge {
  position: absolute; top: 12px; left: 12px; height: 24px; border-radius: 4px;
  display: inline-flex; align-items: center; padding: 0 10px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.3px; color: #fff;
}
.ap-card-badge.ready { background: #16A34A; }
.ap-card-badge.construction { background: var(--red); }
.ap-card-body { padding: 18px 20px 20px; }
.ap-card-loc { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--gray); margin-bottom: 8px; }
.ap-card-loc svg { width: 11px; height: 11px; flex-shrink: 0; }
.ap-card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 500; color: var(--dark); margin-bottom: 10px; }
.ap-card-meta {
  display: flex; align-items: center; gap: 14px; padding-bottom: 14px;
  border-bottom: 1.32px solid var(--red-light); margin-bottom: 14px;
}
.ap-card-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.ap-card-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ap-card-price-label { font-size: 12px; color: var(--gray); margin-bottom: 2px; }
.ap-card-price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--red); margin-bottom: 16px; }
.ap-card-btn { display: block; text-align: center; background: var(--red); color: #fff; font-size: 14px; font-weight: 600; padding: 12px; border-radius: 8px; transition: opacity 0.2s; }
.ap-card-btn:hover { opacity: 0.88; color: #fff; }

@media (max-width: 767.98px) {
  .ap-search-row { flex-direction: column; height: auto; }
  .ap-filters-toggle { justify-content: center; }
}
.cs-form-wrap.is-hidden { display: none; }

@media (max-width: 768.98px) {
    .about-media {
        padding-bottom: 0px !important;
    }
}


.ap-filter-panel.sfp-open {
    display: flex !important;
}

.ap-search-box:focus-within { border-color: var(--red); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15); transform: translateY(-2px);}
 
.search-wrap:focus-within { border-color: var(--red); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15); transform: translateY(-2px);}
 /* ─── Define the red colour (if not already in :root) ─── */
:root {
    --red: #E53935;   /* or #FF0000 */
}

/* ─── Define the red colour (if not already) ─── */
:root {
    --red: #E53935;
}

.cs-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid #dc2626;
  display: none;
}
.cs-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid #dc2626;
  display: none;
}
.cs-input-error {
  border-color: #dc2626 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}
.cs-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid #dc2626;
  display: none;
}
.cs-input-error {
  border-color: #dc2626 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}