/* =====================================================
   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);
}

* { box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: rgba(248, 248, 248, 1);
  color: var(--black);
  overflow-x: hidden;
}

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; }

/* Align all section containers to the same edges as the navbar */
.container { max-width: 100%; padding-left: var(--px); padding-right: var(--px); }

/* ---------- NAVBAR ---------- */
.navbar.rv-nav {
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  height: 80px;
  padding: 0 var(--px);
}
.rv-nav .nav-logo svg { height: 44px; width: 139px; }
.rv-nav .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  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;
}
.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; }

/* ---------- 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-header { display: flex; align-items: flex-end; justify-content: space-between; 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-card:hover .prop-img-fill { transform: scale(1.04); }
.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.red { background: var(--red); color: #fff; }
.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; }
.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: 12px; 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: var(--bg-section); 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: 48px 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); }
.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); }
.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: linear-gradient(135deg, #9cb38a, #6a8454); cursor: pointer; }
.about-video img, .about-video .about-video-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-video-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-style: italic; color: rgba(255,255,255,0.6); font-size: 15px; }
.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 ---------- */
.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: center; 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-globe { opacity: 0.35; transform: translate(-30%, -46%); }
  .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-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) {
  .section-pad { padding: 48px 0; }
  .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; }
}
