/* RealEstate Landing Builder - Frontend Styles */
.rlp-landing-wrap {
	--rlp-primary: #ea723d;
	--rlp-accent: #2bb3a3;
	--rlp-price: #2e8b47;
	--rlp-dark: #1c1c1c;
	--rlp-light: #f7f7f7;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #2b2b2b;
	line-height: 1.5;
	width: 100%;
	overflow-x: hidden;
	position: relative;
}

/* NAV BAR */
.rlp-navbar { width: 100%; z-index: 500; box-sizing: border-box; }
.rlp-nav-inner {
	max-width: 1300px; margin: 0 auto; padding: 18px 30px;
	display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.rlp-nav-logo { justify-self: start; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; letter-spacing: .5px; }
.rlp-nav-logo img { height: 34px; width: auto; }
.rlp-nav-menu { justify-self: center; }
.rlp-nav-actions { justify-self: end; display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.rlp-navbar.rlp-nav-transparent { position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 70%, rgba(0,0,0,0) 100%); color: #fff; }
.rlp-navbar.rlp-nav-transparent .rlp-nav-logo { color: #fff; }
.rlp-navbar.rlp-nav-transparent .rlp-nav-list a { color: #fff; }
.rlp-navbar.rlp-nav-transparent .rlp-nav-phone,
.rlp-navbar.rlp-nav-transparent .rlp-nav-account { color: #fff; }

.rlp-navbar.rlp-nav-solid { position: relative; background: #fff; color: #222; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.rlp-navbar.rlp-nav-solid .rlp-nav-list a { color: #222; }
.rlp-navbar.rlp-nav-solid .rlp-nav-phone,
.rlp-navbar.rlp-nav-solid .rlp-nav-account { color: #222; }

.rlp-nav-list { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; flex-wrap: wrap; }
.rlp-nav-list li a { display: block; padding: 10px 16px; text-decoration: none; font-weight: 600; font-size: .92rem; border-radius: 4px; transition: background .2s ease; white-space: nowrap; }
.rlp-nav-list li a:hover { background: rgba(255,255,255,.15); }
.rlp-nav-solid .rlp-nav-list li a:hover { background: rgba(0,0,0,.05); }
.rlp-nav-list li.rlp-nav-highlight a { background: var(--rlp-primary); color: #fff !important; }
.rlp-nav-list li.rlp-nav-highlight a:hover { background: #d15f2c; }

.rlp-nav-phone { text-decoration: none; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.rlp-nav-account { text-decoration: none; font-size: 1.2rem; line-height: 1; }
.rlp-nav-submit { padding: 11px 22px; font-size: .9rem; }

.rlp-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.rlp-nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; }

/* Sticky-on-scroll: once past the hero, transparent nav becomes a fixed solid bar */
.rlp-navbar.rlp-nav-fixed {
	position: fixed !important; top: 0; left: 0; right: 0;
	background: #fff !important; color: #222 !important;
	box-shadow: 0 2px 12px rgba(0,0,0,.12);
	animation: rlpNavSlideDown .25s ease;
}
.rlp-navbar.rlp-nav-fixed .rlp-nav-logo,
.rlp-navbar.rlp-nav-fixed .rlp-nav-list a,
.rlp-navbar.rlp-nav-fixed .rlp-nav-phone,
.rlp-navbar.rlp-nav-fixed .rlp-nav-account { color: #222 !important; }
@keyframes rlpNavSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.rlp-landing-wrap * { box-sizing: border-box; }
.rlp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.rlp-section { padding: 70px 0; }
.rlp-section h2 { font-size: 2rem; margin: 0 0 10px; text-align: center; font-weight: 700; }
.rlp-section-subtitle { text-align: center; color: #777; margin: 0 0 40px; }
.rlp-section-label { text-align: center; color: var(--rlp-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; margin-bottom: 6px; }

/* Diagonal section dividers (RealHomes-style): the "Recent Properties" and
   "For Sale" grids get a light background with a slanted bottom edge that
   transitions into the plain white section that follows. Toggle off via the
   Colors tab, which adds .rlp-no-diagonal to the wrapper. */
.rlp-section-recent,
.rlp-section-forsale {
	background: var(--rlp-light);
	position: relative;
	padding-bottom: 130px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}
.rlp-no-diagonal .rlp-section-recent,
.rlp-no-diagonal .rlp-section-forsale {
	background: transparent;
	clip-path: none;
	padding-bottom: 70px;
}

.rlp-btn { display: inline-block; padding: 13px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; cursor: pointer; border: none; transition: all .2s ease; }
.rlp-btn-primary { background: var(--rlp-primary); color: #fff; }
.rlp-btn-primary:hover { background: #d15f2c; color: #fff; }
.rlp-btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.rlp-btn-outline:hover { background: #fff; color: var(--rlp-dark); }

/* HERO */
.rlp-hero { position: relative; min-height: 650px; display: flex; align-items: center; justify-content: center; background: var(--rlp-dark) center/cover no-repeat; text-align: center; }
.rlp-hero-overlay { position: absolute; inset: 0; }
.rlp-hero-inner { position: relative; z-index: 2; color: #fff; padding: 0 20px; max-width: 800px; }
.rlp-hero-inner h1 { font-size: 3rem; margin: 0 0 15px; font-weight: 800; }
.rlp-hero-inner p { font-size: 1.2rem; opacity: .9; }

/* LET US CALL YOU WIDGET */
.rlp-call-widget {
	position: absolute; top: 90px; right: 6%; z-index: 25; display: flex; align-items: flex-start;
	max-width: 380px;
}
.rlp-call-widget-tab {
	background: var(--rlp-primary); color: #fff; width: 46px; height: 46px; flex: 0 0 46px;
	display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
	clip-path: polygon(0 0, 100% 0, 100% 65%, 60% 100%, 0 100%);
	margin-top: 22px; margin-right: -4px;
}
.rlp-call-widget-body { background: #fff; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,.25); padding: 26px 28px; width: 340px; }
.rlp-call-widget-body h3 { margin: 0 0 4px; font-size: 1.35rem; color: #222; }
.rlp-call-widget-subtitle { color: #888; font-size: .88rem; margin: 0 0 16px; }
.rlp-call-widget-form { display: flex; flex-direction: column; gap: 12px; }
.rlp-call-widget-form input,
.rlp-call-widget-form textarea {
	width: 100%; border: 1px solid #ddd; border-radius: 4px; padding: 12px 14px; font-size: .92rem; font-family: inherit; resize: vertical;
}
.rlp-call-widget-consent { display: flex; gap: 8px; align-items: flex-start; font-size: .8rem; color: #555; }
.rlp-call-widget-consent input { width: auto; margin-top: 3px; }
.rlp-call-widget-submit { width: 100%; text-align: center; background: var(--rlp-accent); }
.rlp-call-widget-submit:hover { filter: brightness(0.9); }
.rlp-call-widget-submit:disabled { opacity: .6; cursor: not-allowed; }
.rlp-call-widget-message { font-size: .85rem; text-align: center; }
.rlp-call-widget-message.rlp-cw-success { color: #2e8b47; }
.rlp-call-widget-message.rlp-cw-error { color: #e0303d; }

/* SEARCH - overlapping card style */
.rlp-search-section { padding: 0; }
.rlp-search-style-overlap { margin-top: -55px; position: relative; z-index: 30; padding-bottom: 60px; }
.rlp-search-style-inline { background: var(--rlp-light); padding: 40px 0; }

.rlp-search-card { background: #fff; border-radius: 6px; box-shadow: 0 15px 40px rgba(0,0,0,.15); display: flex; flex-direction: column; overflow: visible; }
.rlp-search-main-row { display: flex; align-items: stretch; }
.rlp-search-main-row .rlp-search-group {
	flex: 1 1 0; padding: 18px 26px; display: flex; flex-direction: column; gap: 4px;
	border-right: 1px solid #eee;
}
.rlp-search-main-row .rlp-search-group label { font-size: .75rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.rlp-search-main-row .rlp-search-group select,
.rlp-search-main-row .rlp-search-group input {
	border: none; padding: 0; font-size: 1rem; font-weight: 600; color: #222; background: transparent; appearance: none;
}
.rlp-search-adv-toggle {
	flex: 0 0 70px; background: var(--rlp-accent); color: #fff; border: none; font-size: 1.2rem; cursor: pointer;
	filter: brightness(1); transition: filter .2s ease;
}
.rlp-search-adv-toggle:hover { filter: brightness(0.9); }
.rlp-search-submit-btn {
	flex: 0 0 auto; background: var(--rlp-accent); color: #fff; border: none; padding: 0 34px; font-weight: 700; font-size: 1rem;
	cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; filter: brightness(0.92);
}
.rlp-search-submit-btn:hover { filter: brightness(0.82); }

.rlp-search-advanced-panel {
	display: none; flex-wrap: wrap; gap: 20px; padding: 20px 26px; border-top: 1px solid #eee; background: var(--rlp-light);
}
.rlp-search-advanced-panel.rlp-panel-open { display: flex; }
.rlp-search-advanced-panel .rlp-search-group { flex: 1 1 180px; display: flex; flex-direction: column; gap: 4px; }
.rlp-search-advanced-panel label { font-size: .8rem; font-weight: 600; color: #555; }
.rlp-search-advanced-panel input, .rlp-search-advanced-panel select { padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: .95rem; background: #fff; }

.rlp-search-adv-label { text-align: right; margin-top: 8px; font-size: .85rem; font-weight: 700; color: #444; }

/* PROPERTY GRID */
.rlp-property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.rlp-property-grid.rlp-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rlp-property-grid.rlp-cols-4 { grid-template-columns: repeat(4, 1fr); }
.rlp-property-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,.08); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.rlp-property-card:hover, .rlp-property-card:focus { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.14); outline: none; }
.rlp-card-img { height: 240px; background-size: cover; background-position: center; position: relative; }
.rlp-card-counters { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 3; }
.rlp-count-badge { background: rgba(0,0,0,.55); color: #fff; font-size: .72rem; font-weight: 600; padding: 3px 8px; border-radius: 3px; }

.rlp-card-ribbons { position: absolute; top: 0; right: 14px; display: flex; gap: 6px; z-index: 3; }
.rlp-ribbon {
	width: 34px; height: 42px; display: flex; align-items: flex-start; justify-content: center;
	padding-top: 8px; color: #fff; font-size: .85rem;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}
.rlp-ribbon-featured { background: #35b96d; }
.rlp-ribbon-hot { background: #e0303d; }

.rlp-card-agent-overlay {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; align-items: center; gap: 10px;
	padding: 14px; background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
}
.rlp-card-agent-photo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; display: block; }
.rlp-card-agent-text { display: flex; flex-direction: column; line-height: 1.3; }
.rlp-card-agent-text strong { color: #fff; font-size: .9rem; }
.rlp-card-agent-text em { color: #ddd; font-size: .78rem; font-style: normal; }

.rlp-card-body { padding: 20px; }
.rlp-card-body h3 { margin: 0 0 8px; font-size: 1.25rem; }
.rlp-card-address { margin: 0 0 10px; font-size: .88rem; }
.rlp-card-address a { color: #2f6fed; text-decoration: underline; }

.rlp-card-stars { margin-bottom: 10px; font-size: .95rem; letter-spacing: 1px; }
.rlp-star-filled { color: var(--rlp-primary); }
.rlp-star-empty { color: #ddd; }

.rlp-card-added { color: #999; font-size: .8rem; margin: 0 0 14px; }

.rlp-card-meta-labels { display: flex; gap: 34px; font-size: .75rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 6px; }
.rlp-card-meta-values { display: flex; gap: 34px; font-size: 1rem; font-weight: 600; color: #333; margin-bottom: 16px; }
.rlp-card-meta-values span { display: flex; align-items: center; gap: 8px; }
.rlp-icon { display: inline-block; width: 20px; height: 20px; filter: grayscale(1) opacity(.65); }
.rlp-icon-bed::before { content: "🛏️"; }
.rlp-icon-bath::before { content: "🛁"; }
.rlp-icon-area::before { content: "📐"; }

.rlp-card-footer-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 14px; }
.rlp-card-price { font-weight: 800; color: var(--rlp-price); font-size: 1.3rem; }
.rlp-card-actions { display: flex; gap: 8px; }
.rlp-card-fav, .rlp-card-compare {
	width: 36px; height: 36px; border-radius: 50%; border: 1px solid #eee; background: #fafafa;
	display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: #999;
	transition: all .2s ease;
}
.rlp-card-fav:hover, .rlp-card-compare:hover { background: #f0f0f0; }
.rlp-card-fav.rlp-active { color: #e0303d; border-color: #e0303d; background: #fdeceec; }
.rlp-card-compare.rlp-active { color: var(--rlp-accent); border-color: var(--rlp-accent); background: #eafbf9; }

/* CTA */
.rlp-cta-section { background: var(--rlp-dark) center/cover no-repeat; color: #fff; text-align: center; }
.rlp-cta-inner h2 { color: #fff; max-width: 700px; margin: 0 auto 25px; }
.rlp-cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* AGENTS */
.rlp-agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.rlp-agent-card { background: #fff; text-align: center; padding: 25px 15px; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,.06); cursor: pointer; transition: transform .2s ease; }
.rlp-agent-card:hover, .rlp-agent-card:focus { transform: translateY(-4px); outline: none; }
.rlp-agent-photo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.rlp-agent-card h3 { margin: 0 0 5px; font-size: 1.05rem; }
.rlp-agent-card p { margin: 2px 0; font-size: .85rem; color: #666; }
.rlp-agent-count { margin-top: 10px !important; color: var(--rlp-primary) !important; }

/* TESTIMONIAL */
.rlp-testimonial-section { background: var(--rlp-light); text-align: center; }
.rlp-testimonial-section blockquote { font-size: 1.4rem; font-style: italic; max-width: 750px; margin: 0 auto 15px; color: #333; }
.rlp-testimonial-section cite { color: var(--rlp-primary); font-weight: 700; font-style: normal; }

/* BLOG */
.rlp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.rlp-blog-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,.06); text-decoration: none; color: inherit; display: block; }
.rlp-blog-img { height: 180px; background-size: cover; background-position: center; }
.rlp-blog-body { padding: 18px; }
.rlp-blog-body h3 { margin: 0 0 8px; font-size: 1.05rem; color: #222; }
.rlp-blog-body p { font-size: .9rem; color: #777; margin: 0; }

/* FEATURES */
.rlp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.rlp-feature-item { text-align: center; padding: 20px; }
.rlp-feature-item .dashicons { font-size: 2.5rem; width: 2.5rem; height: 2.5rem; color: var(--rlp-primary); margin-bottom: 12px; }
.rlp-feature-item h4 { margin: 0 0 8px; }
.rlp-feature-item p { color: #777; font-size: .9rem; margin: 0; }

/* PARTNERS */
.rlp-partners-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.rlp-partner-logo img { max-height: 60px; width: auto; filter: grayscale(100%); opacity: .7; transition: all .2s ease; }
.rlp-partner-logo img:hover { filter: none; opacity: 1; }

/* FOOTER CTA */
.rlp-footercta-section { background: var(--rlp-primary); color: #fff; }
.rlp-footercta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.rlp-footercta-inner h2, .rlp-footercta-inner p { color: #fff; text-align: left; margin: 0 0 6px; }
.rlp-footercta-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.rlp-footercta-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.rlp-footercta-contact .rlp-btn-primary { background: var(--rlp-dark); }

/* MODAL */
.rlp-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); display: none; align-items: center; justify-content: center; z-index: 999999; padding: 20px; }
.rlp-modal-overlay.active { display: flex; }
.rlp-modal-box { background: #fff; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; border-radius: 8px; position: relative; padding: 30px; }
.rlp-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: #888; z-index: 2; }
.rlp-modal-close:hover { color: #000; }
.rlp-modal-property { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.rlp-modal-main-img { height: 300px; background-size: cover; background-position: center; border-radius: 6px; margin-bottom: 10px; }
.rlp-modal-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.rlp-modal-thumbs img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .7; }
.rlp-modal-thumbs img:hover { opacity: 1; }
.rlp-modal-info h2 { margin: 0 0 8px; }
.rlp-modal-address, .rlp-modal-ref { color: #888; margin: 2px 0; font-size: .9rem; }
.rlp-modal-price { font-size: 1.6rem; font-weight: 800; color: var(--rlp-primary); margin: 10px 0; }
.rlp-modal-meta-grid { display: flex; flex-wrap: wrap; gap: 20px; margin: 15px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.rlp-modal-meta-grid div { text-align: center; }
.rlp-modal-meta-grid strong { display: block; font-size: 1.1rem; }
.rlp-modal-meta-grid span { font-size: .75rem; color: #888; }
.rlp-amenities-list { display: grid; grid-template-columns: 1fr 1fr; padding-left: 18px; }
.rlp-modal-video iframe { width: 100%; height: 220px; border-radius: 6px; }
.rlp-modal-agent { display: flex; gap: 12px; align-items: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid #eee; }
.rlp-modal-agent img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; }

.rlp-modal-agent-full { display: flex; gap: 25px; }
.rlp-modal-agent-photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; }
.rlp-agent-position { color: var(--rlp-primary); font-weight: 600; margin: 4px 0 10px; }
.rlp-agent-socials { display: flex; gap: 12px; margin-top: 12px; }
.rlp-agent-socials a { color: var(--rlp-primary); text-decoration: none; font-weight: 600; font-size: .85rem; }

/* COMPARE BAR + MODAL */
.rlp-compare-bar {
	position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 999998;
	background: #222; color: #fff; padding: 14px 20px; border-radius: 40px; display: flex; align-items: center; gap: 16px;
	box-shadow: 0 8px 25px rgba(0,0,0,.3); font-size: .9rem;
}
.rlp-compare-bar .rlp-btn-primary { padding: 8px 20px; font-size: .85rem; }
.rlp-compare-clear-btn { background: none; border: none; color: #ccc; font-size: 1.3rem; cursor: pointer; line-height: 1; }
.rlp-compare-modal h2 { text-align: center; margin: 0 0 20px; }
.rlp-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.rlp-compare-col { border: 1px solid #eee; border-radius: 8px; padding: 12px; text-align: center; }
.rlp-compare-col img { width: 100%; height: 110px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; }
.rlp-compare-col h4 { margin: 0 0 6px; font-size: .95rem; }
.rlp-compare-price { color: var(--rlp-price); font-weight: 700; margin: 0 0 10px; }
.rlp-compare-col ul { list-style: none; padding: 0; margin: 0; text-align: left; font-size: .82rem; color: #555; }
.rlp-compare-col ul li { padding: 4px 0; border-top: 1px solid #f2f2f2; }
@media (max-width: 1200px) {
	.rlp-call-widget { position: static; margin: 30px auto 0; max-width: 400px; }
	.rlp-hero { flex-direction: column; padding: 40px 20px; min-height: auto !important; }
	.rlp-hero-inner { margin-bottom: 10px; }
}
@media (max-width: 992px) {
	.rlp-property-grid, .rlp-property-grid.rlp-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.rlp-agents-grid { grid-template-columns: repeat(2, 1fr); }
	.rlp-blog-grid, .rlp-features-grid { grid-template-columns: repeat(2, 1fr); }
	.rlp-modal-property, .rlp-modal-agent-full { grid-template-columns: 1fr; display: block; }
	.rlp-modal-agent-full { flex-direction: column; text-align: center; }
	.rlp-modal-agent-photo img { margin: 0 auto; }
}
@media (max-width: 900px) {
	.rlp-nav-toggle { display: flex; }
	.rlp-nav-list {
		display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
		background: #fff; padding: 10px; box-shadow: 0 8px 20px rgba(0,0,0,.12); gap: 0;
	}
	.rlp-nav-list.rlp-nav-list-open { display: flex; }
	.rlp-nav-list li a { color: #222 !important; padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
	.rlp-nav-menu { position: relative; }
	.rlp-nav-phone { display: none; }
	.rlp-nav-inner { padding: 14px 20px; }
	.rlp-search-style-overlap { margin-top: -30px; }
	.rlp-search-main-row { flex-wrap: wrap; }
	.rlp-search-main-row .rlp-search-group { flex: 1 1 45%; border-bottom: 1px solid #eee; }
	.rlp-search-adv-toggle, .rlp-search-submit-btn { flex: 1 1 50%; padding: 14px 0; }
}
@media (max-width: 600px) {
	.rlp-hero-inner h1 { font-size: 2rem; }
	.rlp-section { padding: 45px 0; }
	.rlp-property-grid, .rlp-property-grid.rlp-cols-4, .rlp-property-grid.rlp-cols-2,
	.rlp-agents-grid, .rlp-blog-grid, .rlp-features-grid { grid-template-columns: 1fr; }
	.rlp-search-form { flex-direction: column; align-items: stretch; }
	.rlp-field { min-width: 100%; }
	.rlp-search-main-row { flex-direction: column; }
	.rlp-search-main-row .rlp-search-group { flex: 1 1 auto; border-right: none; }
	.rlp-search-adv-toggle, .rlp-search-submit-btn { flex: 1 1 auto; }
	.rlp-search-advanced-panel { flex-direction: column; }
	.rlp-footercta-inner { flex-direction: column; text-align: center; }
	.rlp-footercta-inner h2, .rlp-footercta-inner p { text-align: center; }
	.rlp-modal-box { padding: 20px; }
	.rlp-amenities-list { grid-template-columns: 1fr; }
	.rlp-compare-bar { flex-direction: column; gap: 8px; border-radius: 16px; text-align: center; width: 90%; }
	.rlp-card-meta-labels, .rlp-card-meta-values { gap: 20px; }
	.rlp-section-recent, .rlp-section-forsale { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 30px)); padding-bottom: 70px; }
}
