/* =========================================================
   RentYEGNow — Cleaned style.css
   Replaces duplicate/contradicting blocks from the old file.
========================================================= */

/* ================================
   GLOBAL VARIABLES + BASE
================================ */

:root {
  --navy: #082033;
  --navy-dark: #061827;
  --offwhite: #f5f7fa;
  --orange: #ff6f00;
  --orange-dark: #e86400;
  --text: #172033;
  --muted: #526173;
  --muted-light: #6b7280;
  --border: #e1e5eb;
  --shadow-soft: 0 16px 40px rgba(8, 32, 51, 0.08);
  --shadow-card: 0 18px 45px rgba(8, 32, 51, 0.12);
  --shadow-dark: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--offwhite);
  color: var(--text);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* ================================
   STICKY TOP MENU
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-header .nav-wrap,
.nav-wrap {
  max-width: 1120px;
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  padding: 8px 0;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--orange);
}

/* ================================
   SHARED HERO + TEXT
================================ */

.hero {
  background: var(--navy);
  color: #ffffff;
  padding: 64px 20px 76px;
}

.hero-inner {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.kicker,
.badge,
.section-kicker,
.blog-tag {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 0.98;
  margin: 0 0 20px;
  letter-spacing: -0.055em;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
}

/* ================================
   SHARED FORM STYLES
================================ */

.form-card,
.form-box {
  background: #ffffff;
  color: var(--text);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-dark);
}

.form-card h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
}

.form-card p {
  color: var(--muted-light);
  margin: 0 0 20px;
  font-size: 14px;
}

label {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  color: var(--navy);
  outline: none;
}

input,
select {
  margin-bottom: 14px;
}

textarea {
  resize: vertical;
  min-height: 105px;
}

select {
  cursor: pointer;
}

select[multiple] {
  min-height: 94px;
}

.helper {
  color: var(--muted-light);
  font-size: 12px;
  margin: -8px 0 12px;
}

button,
.form-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 13px;
  background: var(--orange);
  color: #ffffff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

button:hover,
.form-submit-btn:hover {
  background: var(--orange-dark);
}

.small,
.contact-trust-line {
  text-align: center;
  color: var(--muted-light);
  font-size: 13px;
  margin-top: 10px;
}

/* ================================
   SHARED CONTENT CARDS
================================ */

.content {
  max-width: 1120px;
  margin: auto;
  padding: 58px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.55;
}

/* ================================
   ARTICLE / SIMPLE BLOG LIST PAGES
================================ */

.article {
  max-width: 850px;
  margin: auto;
}

.article h1 {
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
}

.article h2 {
  color: var(--navy);
  margin-top: 34px;
}

.article p,
.article li {
  color: #374151;
  line-height: 1.75;
  font-size: 17px;
}

.list {
  display: grid;
  gap: 16px;
}

.list a {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
}

.list span {
  color: var(--muted-light);
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 64px 20px 24px;
  margin-top: 80px;
}

.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.footer-about p,
.footer-links p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.footer-note {
  color: #ffffff !important;
  font-weight: 800;
}

.footer-links h3 {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  color: #dbeafe;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.footer-company {
  grid-column: 4;
  grid-row: 1;
  align-self: start;
}

.footer-cta {
  display: inline-block !important;
  width: fit-content;
  margin-top: 10px;
  background: var(--orange);
  color: #ffffff !important;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.footer-cta:hover {
  background: var(--orange-dark);
  color: #ffffff !important;
  transform: none !important;
}

.footer-social-center {
  grid-column: 2 / 4;
  grid-row: 2;
  justify-self: center;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: -56px;
  transform: translateX(-40px);
}

.footer-social-center a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-center a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social-center svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1120px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

/* Hide old duplicate footer if any page still contains it */
.footer,
.rentyeg-footer {
  display: none !important;
}

/* ================================
   BLOG CTA CARD + LINKS
================================ */

.blog-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cta-card h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.blog-cta-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-cta-button {
  display: inline-block;
  background: var(--orange);
  color: #ffffff !important;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}

.blog-cta-button:hover {
  background: var(--orange-dark);
}

.blog-secondary-link,
.blog-cta-card .contact-link {
  display: block;
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

.blog-secondary-link:hover,
.blog-cta-card .contact-link:hover {
  color: var(--orange) !important;
}

/* ================================
   BLOG PAGE ALTERNATING GUIDE ROWS
================================ */

.blog-guides-section {
  background: #f7f9fb;
  padding: 70px 5.5% 90px;
}

.blog-guides-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.blog-section-heading h2 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  margin: 0 0 14px;
}

.blog-section-heading p {
  color: #4b5f73;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
}

.blog-feature-row {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e1e8ef;
  border-radius: 24px;
  padding: 26px;
  margin-bottom: 26px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-feature-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(8, 32, 51, 0.12);
}

.blog-feature-row.reverse .blog-feature-text {
  order: 2;
}

.blog-feature-row.reverse .blog-feature-image {
  order: 1;
}

.blog-feature-text {
  padding: 14px 8px 14px 10px;
}

.blog-feature-text h3 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.blog-feature-text h3 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-feature-text h3 a:hover {
  color: var(--orange);
}

.blog-feature-text p {
  color: #4b5f73;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.blog-read-more {
  display: inline-block;
  color: var(--orange) !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
}

.blog-read-more:hover {
  color: var(--orange) !important;
  text-decoration: underline;
}

.blog-feature-image {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #dbe4ec;
}

.blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================
   LISTINGS SECTION
================================ */

.listing-section {
  background: #f7f9fb;
  padding: 72px 20px 30px;
}

.listing-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.listing-intro {
  max-width: 780px;
  margin-bottom: 30px;
}

.listing-intro h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.listing-intro p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.listing-filters {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.listing-filters select {
  margin: 0;
  background: #ffffff;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.listing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.listing-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.listing-body {
  padding: 22px;
}

.listing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.listing-topline span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.listing-topline strong {
  color: var(--navy);
  font-size: 18px;
}

.listing-body h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.listing-body p {
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.listing-tags span {
  background: #eef2f7;
  color: #334155;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.listing-button {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #ffffff !important;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.listing-button:hover {
  background: var(--orange-dark);
}

.listing-bottom-cta {
  margin-top: 28px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.listing-bottom-cta p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

.listing-bottom-cta a {
  background: var(--orange);
  color: #ffffff !important;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.listing-bottom-cta a:hover {
  background: var(--orange-dark);
}

/* ================================
   MAINSTREET SCRAPER CARDS + SLIDER
================================ */

.mainstreet-section {
  padding: 70px 20px;
  background: #f7f4ee;
}

.mainstreet-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.mainstreet-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.mainstreet-heading h2 {
  color: #0d1b2a;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.mainstreet-heading p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.65;
}

.mainstreet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mainstreet-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
  border: 1px solid rgba(13, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.mainstreet-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #d9dee7;
  display: block;
}

.mainstreet-photo-slider {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #d9dee7;
}

.mainstreet-photo-slider .mainstreet-card-img {
  height: 100%;
}

.mainstreet-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(13, 27, 42, 0.78);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainstreet-slider-btn:hover {
  background: rgba(13, 27, 42, 0.95);
}

.mainstreet-slider-prev {
  left: 10px;
}

.mainstreet-slider-next {
  right: 10px;
}

.mainstreet-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.mainstreet-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(13, 27, 42, 0.18);
}

.mainstreet-slider-dot.active {
  background: #ffffff;
}

.mainstreet-photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(13, 27, 42, 0.78);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
}

.mainstreet-card-body {
  padding: 20px;
}

.mainstreet-source {
  display: inline-block;
  background: #0d1b2a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.mainstreet-card h3 {
  margin: 0 0 8px;
  color: #0d1b2a;
  font-size: 22px;
  line-height: 1.15;
}

.mainstreet-address,
.mainstreet-note {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.mainstreet-address {
  margin: 0 0 14px;
}

.mainstreet-note {
  margin-top: 12px;
  font-size: 12px;
}

.mainstreet-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.mainstreet-meta span {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 12px;
  color: #0d1b2a;
  font-weight: 700;
  font-size: 14px;
}

.mainstreet-amenities {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 18px;
}

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

.mainstreet-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  font-size: 14px;
}

.mainstreet-btn-primary {
  background: #d96b1c;
  color: #ffffff;
}

.mainstreet-btn-secondary {
  background: #f1f5f9;
  color: #0d1b2a;
}

/* ================================
   CONTACT PAGE
================================ */

body.contact-page {
  background: var(--navy);
}

body.contact-page main,
body.contact-page .contact-section,
body.contact-page .contact-hero {
  padding-top: 0;
}

body.contact-page main > section:first-of-type,
body.contact-page > section:first-of-type {
  min-height: auto;
  padding: 22px 24px 44px;
  background: var(--navy);
}

body.contact-page main > section:first-of-type > div,
body.contact-page > section:first-of-type > div {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

body.contact-page h1 {
  max-width: 1000px;
  margin: 0 0 10px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95;
}

body.contact-page main > section:first-of-type p,
body.contact-page > section:first-of-type p {
  max-width: 900px;
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.55;
}

body.contact-page #contact-form {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.form-grid {
  display: grid;
  gap: 10px 18px;
  margin-bottom: 10px;
}

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

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-field {
  min-width: 0;
}

.form-field-full {
  margin-top: 0;
}

body.contact-page #contact-form label {
  margin: 0 0 4px;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 900;
}

body.contact-page #contact-form input,
body.contact-page #contact-form select,
body.contact-page #contact-form textarea {
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 0.98rem;
}

body.contact-page #contact-form input,
body.contact-page #contact-form select {
  min-height: 43px;
}

body.contact-page #contact-form input[readonly] {
  background: #f7f9fc;
  color: #526173;
}

body.contact-page #contact-form textarea {
  min-height: 68px;
  padding: 10px 14px;
}

body.contact-page #contact-form textarea.auto-grow-message {
  min-height: 54px;
  height: 54px;
  max-height: 180px;
  resize: none;
  overflow: hidden;
  line-height: 1.4;
  padding: 14px 16px;
}

body.contact-page #contact-form button[type="submit"],
#contact-form .contact-submit-button {
  width: 100%;
  display: block;
  min-height: 48px;
  margin: 2px auto 0;
  padding: 12px 20px;
  border-radius: 13px;
}

body.contact-page #contact-form .small,
#contact-form .contact-trust-line {
  width: 100%;
  display: block;
  text-align: center;
  margin: 8px auto 0;
  padding: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.3;
}

.selected-rental-summary {
  background: #fff4e8;
  border: 1px solid rgba(255, 112, 0, 0.25);
  border-radius: 14px;
  padding: 9px 16px;
  margin-bottom: 10px;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  min-height: auto;
  font-size: 0.95rem;
}

.selected-rental-summary[hidden],
.property-details-section[hidden],
.property-field[hidden] {
  display: none !important;
}

.selected-rental-summary strong {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-right: 4px;
  white-space: nowrap;
}

.selected-rental-summary span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.98rem;
}

.selected-rental-summary span:not(:last-child)::after {
  content: "•";
  margin-left: 16px;
  opacity: 0.45;
}

.property-details-section {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
}

.property-details-title {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 14px;
}

/* Contact + blog feedback notes */
.website-feedback-note,
#contact-form .website-feedback-note {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
  margin: 6px auto 0;
  padding: 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.35;
}

.website-feedback-note a {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.website-feedback-note a:hover {
  text-decoration: underline;
}

.blog-cta-card .website-feedback-note {
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.78rem;
  line-height: 1.2;
  margin-top: 8px;
}

.blog-cta-card .website-feedback-note a {
  font-size: 0.78rem;
}

/* ================================
   APARTMENTS PAGE
================================ */

body.apartments-page {
  background: var(--navy);
}

body.apartments-page .form-card#contact-form {
  padding: 34px;
  border-radius: 24px;
}

body.apartments-page .form-card#contact-form h2 {
  margin: 0 0 8px;
}

body.apartments-page .form-card#contact-form > p {
  margin: 0 0 20px;
  line-height: 1.45;
}

body.apartments-page .apartments-hero-compact-form {
  display: block;
  margin: 0;
}

body.apartments-page .apartments-hero-compact-form .apartments-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

body.apartments-page .apartments-hero-compact-form .apartments-form-row-1 {
  grid-template-columns: 1fr;
}

body.apartments-page .apartments-hero-compact-form .apartments-form-row-2 {
  grid-template-columns: 1fr 1fr;
}

body.apartments-page .apartments-hero-compact-form label {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 900;
}

body.apartments-page .apartments-hero-compact-form input,
body.apartments-page .apartments-hero-compact-form select {
  height: 52px;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1rem;
}

body.apartments-page .apartments-hero-compact-form button[type="submit"] {
  height: 56px;
  min-height: 56px;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.05rem;
}

body.apartments-page .apartments-hero-compact-form .small {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.25;
}

body.apartments-page .listing-section {
  background: #f5f7fa;
  color: var(--navy);
  padding: 72px 24px;
}

body.apartments-page .listing-intro .kicker {
  color: var(--orange);
  font-weight: 900;
}

body.apartments-page .listing-intro h2 {
  color: var(--navy);
}

body.apartments-page .listing-intro p {
  color: var(--muted);
}

body.apartments-page .listing-card,
body.apartments-page .rental-card,
body.apartments-page .property-card {
  background: #ffffff;
}

/* Apartment disclaimer */
.apartment-disclaimer-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 26px auto 18px;
}

.rental-disclaimer-line {
  background: #fff4e8;
  border: 1px solid rgba(255, 111, 0, 0.28);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rental-disclaimer-line strong {
  color: var(--navy);
  font-size: 1rem;
  margin-right: 8px;
}

/* Apartment feature cards under listings */
body.apartments-page main.content.feature-card-section {
  max-width: none;
  width: 100%;
  height: 250px;
  min-height: 250px;
  margin: 0;
  padding: 0 5.5%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.apartments-page main.content.feature-card-section > .grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  align-items: center;
}

body.apartments-page main.content.feature-card-section .card {
  margin: 0;
}

/* ================================
   LANDING PAGE
================================ */

body.landing-page {
  margin: 0;
  background: var(--navy);
  color: #ffffff;
  min-height: 100vh;
}

body.landing-page .landing-hero-banner {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(
      90deg,
      rgba(8, 32, 51, 0.92) 0%,
      rgba(8, 32, 51, 0.78) 42%,
      rgba(8, 32, 51, 0.36) 100%
    ),
    url("rental_images/Herolanding.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 8%;
}

body.landing-page .landing-hero-content {
  max-width: 720px;
  text-align: left;
}

body.landing-page .landing-hero-content .badge {
  color: var(--orange);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

body.landing-page .landing-hero-content h1 {
  color: #ffffff;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  margin: 0 0 24px;
  max-width: 820px;
}

body.landing-page .landing-hero-content p {
  color: #e5edf5;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  margin: 0 0 34px;
  max-width: 700px;
}

body.landing-page .landing-hero-cta,
body.landing-page .landing-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(255, 111, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

body.landing-page .landing-hero-cta {
  font-size: 1.05rem;
  padding: 16px 34px;
}

body.landing-page .landing-final-button {
  flex-shrink: 0;
  padding: 16px 30px;
}

body.landing-page .landing-hero-cta:hover,
body.landing-page .landing-final-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

body.landing-page .landing-section-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

body.landing-page .landing-info-section,
body.landing-page .landing-faq-section,
body.landing-page .search-section {
  background: #f5f7fa;
  color: var(--navy);
}

body.landing-page .landing-info-section,
body.landing-page .landing-faq-section {
  padding: 80px 0;
}

body.landing-page .landing-how-section {
  background: var(--navy);
  color: #ffffff;
  padding: 80px 0;
}

body.landing-page .landing-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

body.landing-page .landing-section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  margin: 0 0 14px;
  color: inherit;
}

body.landing-page .landing-section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0;
}

body.landing-page .landing-how-section .landing-section-heading p {
  color: #d7e0ea;
}

body.landing-page .landing-card-grid,
body.landing-page .how-steps,
body.landing-page .faq-grid {
  display: grid;
  gap: 26px;
}

body.landing-page .landing-card-grid,
body.landing-page .how-steps {
  grid-template-columns: repeat(3, 1fr);
}

body.landing-page .faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

body.landing-page .landing-info-card,
body.landing-page .how-step,
body.landing-page .faq-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

body.landing-page .landing-info-card h3,
body.landing-page .how-step h3,
body.landing-page .faq-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

body.landing-page .landing-info-card p,
body.landing-page .how-step p,
body.landing-page .faq-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

body.landing-page .how-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

body.landing-page .search-section {
  padding: 60px 20px 28px;
}

body.landing-page .search-inner {
  max-width: 1100px;
  margin: auto;
}

body.landing-page .search-inner h2 {
  color: var(--navy);
  margin-bottom: 25px;
}

body.landing-page .search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

body.landing-page .search-card {
  text-decoration: none;
}

body.landing-page .search-card-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(8, 32, 51, 0.08);
}

body.landing-page .search-card-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

body.landing-page .search-card-box div {
  padding: 15px;
  color: var(--navy);
  font-weight: 800;
}

body.landing-page .compact-disclaimer {
  background: #f5f7fa;
  padding: 0 0 42px;
}

body.landing-page .landing-tips-after-disclaimer {
  text-align: center;
  margin-top: 22px;
}

body.landing-page .blog-link {
  text-align: center;
  margin-top: 35px;
}

body.landing-page .blog-link a,
body.landing-page .landing-tips-after-disclaimer a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

body.landing-page .blog-link a:hover,
body.landing-page .landing-tips-after-disclaimer a:hover {
  text-decoration: underline;
}

body.landing-page .landing-final-cta {
  background: var(--navy);
  padding: 76px 24px;
}

body.landing-page .landing-final-cta-box {
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

body.landing-page .landing-final-cta-box h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  margin: 0 0 12px;
}

body.landing-page .landing-final-cta-box p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 620px;
}

/* ================================
   ANCHOR SCROLL POSITIONS
================================ */

#rental-searches,
#listing-rental-searches {
  scroll-margin-top: 95px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  body.contact-page .form-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.contact-page .form-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .mainstreet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .grid,
  .listing-filters,
  .listing-grid,
  body.landing-page .landing-card-grid,
  body.landing-page .how-steps,
  body.landing-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-company,
  .footer-social-center {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-social-center {
    margin-top: 12px;
    transform: none;
  }

  .listing-bottom-cta,
  body.landing-page .landing-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 850px) {
  .blog-guides-section {
    padding: 48px 22px 70px;
  }

  .blog-feature-row,
  .blog-feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .blog-feature-row.reverse .blog-feature-text,
  .blog-feature-row.reverse .blog-feature-image {
    order: initial;
  }

  .blog-feature-image {
    height: 220px;
  }
}

@media (max-width: 800px) {
  body.landing-page .landing-hero-banner {
    min-height: calc(100vh - 62px);
    padding: 70px 24px;
    background:
      linear-gradient(
        180deg,
        rgba(8, 32, 51, 0.94) 0%,
        rgba(8, 32, 51, 0.78) 55%,
        rgba(8, 32, 51, 0.62) 100%
      ),
      url("rental_images/Herolanding.png") center center / cover no-repeat;
  }

  body.landing-page .landing-hero-content h1 {
    font-size: clamp(42px, 12vw, 62px);
  }
}

@media (max-width: 720px) {
  body.contact-page main > section:first-of-type,
  body.contact-page > section:first-of-type {
    padding: 28px 16px 50px;
  }

  body.contact-page #contact-form {
    padding: 22px;
  }

  body.contact-page .form-grid-2,
  body.contact-page .form-grid-3,
  body.contact-page .form-grid-4 {
    grid-template-columns: 1fr;
  }

  body.contact-page h1 {
    font-size: 42px;
  }
}

@media (max-width: 700px) {
  .form-two-column,
  body.apartments-page .apartments-hero-compact-form .apartments-form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 650px) {
  .site-header .nav-wrap,
  .nav-wrap {
    min-height: 62px;
    flex-direction: column;
    align-items: center;
    padding: 8px 18px;
    gap: 14px;
  }

  .site-logo {
    font-size: 1.2rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 48px 20px 58px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .mainstreet-grid {
    grid-template-columns: 1fr;
  }

  .mainstreet-card-img,
  .mainstreet-photo-slider {
    height: 230px;
  }

  .apartment-disclaimer-wrap,
  body.landing-page .landing-section-wrap {
    width: min(100% - 32px, 1180px);
  }

  .apartment-disclaimer-wrap {
    margin: 22px auto 16px;
  }

  .rental-disclaimer-line {
    font-size: 0.88rem;
  }

  body.landing-page .landing-info-section,
  body.landing-page .landing-how-section,
  body.landing-page .landing-faq-section {
    padding: 58px 0;
  }

  body.landing-page .landing-info-card,
  body.landing-page .how-step,
  body.landing-page .faq-card {
    padding: 24px;
  }

  body.landing-page .landing-final-cta {
    padding: 54px 16px;
  }

  body.landing-page .landing-final-cta-box {
    padding: 30px 24px;
  }
}
/* ================================
   ABOUT PAGE UPGRADE
================================ */

.about-hero {
  background: #082033;
  color: #ffffff;
  padding: 82px 5.5% 90px;
}

.about-hero-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.about-hero-text h1 {
  color: #ffffff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}

.about-hero-text p {
  color: #d7e0ea;
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 0 20px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-primary-button,
.about-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
}

.about-primary-button {
  background: #ff6f00;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(255, 111, 0, 0.25);
}

.about-primary-button:hover {
  background: #e86400;
}

.about-secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.about-hero-card {
  background: #ffffff;
  color: #082033;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.about-hero-card h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  margin: 0 0 26px;
  color: #082033;
}

.about-check-list {
  display: grid;
  gap: 18px;
}

.about-check-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.about-check-list span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ff6f00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.about-check-list p {
  color: #526173;
  font-size: 1rem;
  line-height: 1.5;
  margin: 4px 0 0;
}

.about-problem-section,
.about-renter-section {
  background: #f5f7fa;
  color: #082033;
  padding: 82px 5.5%;
}

.about-section-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-kicker {
  color: #ff6f00;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-section-heading h2,
.about-split h2 {
  color: #082033;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
}

.about-section-heading p,
.about-split p {
  color: #526173;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-info-card,
.about-step-card,
.about-link-card {
  background: #ffffff;
  border: 1px solid #e1e8ef;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 42px rgba(8, 32, 51, 0.08);
}

.about-info-card h3,
.about-step-card h3,
.about-link-card h3 {
  color: #082033;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.about-info-card p,
.about-step-card p {
  color: #526173;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.about-dark-section {
  background: #082033;
  color: #ffffff;
  padding: 82px 5.5%;
}

.about-section-heading.light h2 {
  color: #ffffff;
}

.about-section-heading.light p {
  color: #d7e0ea;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-step-card span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ff6f00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.about-link-card {
  display: grid;
  gap: 12px;
}

.about-link-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f7fa;
  color: #082033;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 16px;
  border-radius: 14px;
}

.about-link-card a::after {
  content: "→";
  color: #ff6f00;
  font-weight: 900;
}

.about-link-card a:hover {
  background: #fff4e8;
  color: #ff6f00;
}

.about-final-cta {
  background: #082033;
  padding: 76px 5.5%;
}

.about-final-box {
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.about-final-box h2 {
  color: #082033;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
}

.about-final-box p {
  color: #526173;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0;
}

.about-final-box a {
  flex-shrink: 0;
  background: #ff6f00;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(255, 111, 0, 0.25);
}

.about-final-box a:hover {
  background: #e86400;
}

@media (max-width: 900px) {
  .about-hero-wrap,
  .about-split,
  .about-card-grid,
  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-final-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .about-hero,
  .about-problem-section,
  .about-dark-section,
  .about-renter-section,
  .about-final-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-hero-card,
  .about-info-card,
  .about-step-card,
  .about-link-card,
  .about-final-box {
    padding: 24px;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-primary-button,
  .about-secondary-button,
  .about-final-box a {
    width: 100%;
  }
}
/* ================================
   ABOUT PAGE HERO HEIGHT FIX
   Brings CTA buttons into first screen
================================ */

.about-hero {
  padding-top: 46px !important;
  padding-bottom: 58px !important;
}

.about-hero-wrap {
  gap: 42px !important;
  align-items: center !important;
}

.about-hero-text h1 {
  font-size: clamp(44px, 5.2vw, 70px) !important;
  line-height: 0.98 !important;
  margin-bottom: 18px !important;
}

.about-hero-text p {
  font-size: 1.06rem !important;
  line-height: 1.55 !important;
  margin-bottom: 14px !important;
}

.about-hero-actions {
  margin-top: 20px !important;
}

.about-hero-card {
  padding: 32px !important;
}
/* ================================
   ABOUT PAGE HERO — EXACT FIRST SCREEN
================================ */

.about-hero {
  min-height: calc(100vh - 82px) !important;
  box-sizing: border-box !important;
  padding: 56px 5.5% 64px !important;
  display: flex !important;
  align-items: center !important;
}

.about-hero-wrap {
  width: 100% !important;
  align-items: center !important;
  gap: 54px !important;
}

.about-hero-text h1 {
  font-size: clamp(48px, 5.8vw, 78px) !important;
  line-height: 0.96 !important;
  margin-bottom: 22px !important;
}

.about-hero-text p {
  font-size: 1.08rem !important;
  line-height: 1.58 !important;
  margin-bottom: 16px !important;
}

.about-hero-actions {
  margin-top: 24px !important;
}

.about-hero-card {
  padding: 36px !important;
}
/* ================================
   ABOUT PAGE — REMOVE WHITE GAP ABOVE FOOTER
================================ */

.about-final-cta {
  margin-bottom: 0 !important;
}

.about-final-cta + .site-footer {
  margin-top: 0 !important;
}

/* If an old empty white content section is still sitting before the footer, hide it */
.about-final-cta + .content,
.about-final-cta + main.content {
  display: none !important;
}
/* ================================
   BLOG PAGE HERO — EXACT FIRST SCREEN
================================ */

.blog-hero-screen {
  min-height: calc(100vh - 82px) !important;
  box-sizing: border-box !important;
  padding: 64px 5.5% !important;
  display: flex !important;
  align-items: center !important;
  background: #082033 !important;
}

.blog-hero-screen > div {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  align-items: center !important;
}

.blog-hero-screen h1 {
  margin-top: 0 !important;
}

.blog-hero-screen .form-card,
.blog-hero-screen .blog-cta-card {
  align-self: center !important;
}