/* =====================================================
   ROOT VARIABLES
   ===================================================== */
:root{
  --blue:#004fa3;
  --teal:#0c9dbc;
  --navy:#071a33;
  --dark:#0f172a;
  --muted:#667085;
  --light:#f5f7fa;
  --white:#ffffff;

  --shadow-sm:0 6px 18px rgba(7,26,51,.08);
  --shadow-md:0 10px 30px rgba(7,26,51,.12);
  --shadow-lg:0 18px 48px rgba(7,26,51,.18);

  --maxw:1200px;
  --pad:clamp(18px,4vw,44px);
  --radius:16px;
  --header-h:90px;
}

/* =====================================================
   BASE
   ===================================================== */
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--dark);
  background:#fff;
  overflow-x: hidden;
  max-width: 100vw;
}

section,header,footer{
  width:100%;
  display:block;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.os-wrap {
  background: #fff;
  overflow: visible;
  min-height: 100vh;
  height: auto;
}

.os-container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 var(--pad);
}

/* =====================================================
   NAV SYSTEM
   ===================================================== */
.os-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: #ffffff;
  border-bottom: 1px solid #e8edf5;
  display: flex;
  align-items: center;
  z-index: 9997;
}

.os-header-spacer{
  height: var(--header-h);
}

.os-header .os-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.os-logo img{
  height: 72px;
  width: auto;
  display: block;
}

.os-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.os-nav a{
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  padding: 6px 2px;
}

.os-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background:var(--teal);
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
}

.os-nav a:hover::after{
  transform:scaleX(1);
}

.os-nav-item{
  position: relative;
}

.os-dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(7,26,51,.12);
  padding: 10px 0;
  display: none;
}

.os-nav-item:hover .os-dropdown{
  display: block;
}

.os-dropdown a{
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.os-dropdown a::after{
  display: none;
}

.os-burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.os-burger span,
.os-burger span::before,
.os-burger span::after{
  width: 22px;
  height: 2px;
  background: #0b2d59;
  display: block;
  position: relative;
  transition: .25s ease;
}

.os-burger span::before{
  content:"";
  position:absolute;
  top:-7px;
}

.os-burger span::after{
  content:"";
  position:absolute;
  top:7px;
}

.os-burger.open span{
  background: transparent;
}

.os-burger.open span::before{
  transform: translateY(7px) rotate(45deg);
}

.os-burger.open span::after{
  transform: translateY(-7px) rotate(-45deg);
}

.os-mobile {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 9998;
}

.os-mobile.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.os-mobile-panel {
  position: fixed;
  top: 90px;
  right: 0;
  height: calc(100vh - 90px);
  width: min(86vw, 360px);
  background: #ffffff;
  padding: 26px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: 0.2s ease;
  overflow-y: auto;
  z-index: 9999;
}

.os-mobile.open .os-mobile-panel{
  transform: translateX(0);
}

.os-mobile-link {
  display: block;
  padding: 16px 24px;
  color: #004fa3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f4f8;
  transition: background 0.2s ease;
}

.os-mobile-section{
  border-bottom: 1px solid #f0f2f5;
}

.os-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #004fa3;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
}

.os-mobile-dropdown{
  max-height: 0;
  overflow: hidden;
  background: #f8f9fb;
  transition: max-height .3s ease;
}

.os-mobile-dropdown.open{
  max-height: 500px;
}

.os-mobile-dropdown a{
  display: block;
  padding: 14px 24px 14px 48px;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  border-top: 1px solid #e8edf5;
}

/* =====================================================
   HERO
   ===================================================== */
.hero{
  position:relative;
  min-height:95vh;
  display:flex;
  align-items:center;
  background:#0b2d59;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("https://cdn.prod.website-files.com/6921525676518d0b3b46a629/69276bb4a0f554711d523327_toms-river-nj-jersey-shore-aerial-hero.webp")
    center/cover no-repeat;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(11,45,89,.65),
    rgba(7,26,51,.55)
  );
  z-index:2;
}

.hero-content{
  position:relative;
  z-index:3;
  width:100%;
  padding:0 var(--pad);
  text-align:center;
}

.hero-card{
  max-width:780px;
  margin:0 auto;
  padding:clamp(20px,3vw,32px);
  background:rgba(7,26,51,.35);
  border-radius:20px;
  backdrop-filter:blur(24px) saturate(150%);
  color:#fff;
}

.hero h1{
  margin:0 0 10px;
  font-size:clamp(32px,5vw,56px);
  font-weight:900;
}

.hero p{
  margin:0 auto 18px;
  max-width:680px;
  font-size:clamp(15px,1.9vw,18px);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.os-btn{
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.os-btn:hover{
  background: #0eb3d4;
  border-color: #0eb3d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 157, 188, 0.4);
}

.os-btn.ghost{
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.os-btn.ghost:hover{
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.os-btn.ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}

.os-btn.ghost-white:hover {
  background: #fff;
  color: var(--blue);
}

.hero-cta{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.os-h2{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 32px;
  text-align: center;
}

.os-h3{
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.os-p{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
}

/* =====================================================
   QUICK HOME SEARCH
   ===================================================== */
.cta-grid{
  padding: 80px 0;
  background: var(--light);
}

.cta-grid-wrap{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-grid-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cta-grid-item span{
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}

.cta-grid-item:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   MEET JOE SECTION
   ===================================================== */
.meet{
  padding: 80px 0;
  background: var(--white);
}

.meet-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.meet-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;  /* ← Changed */
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.meet-card h2{
  margin-bottom: 20px;
}

.meet-row{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  flex-grow: 1;  /* This makes it fill remaining space */
}

.meet-photo{
  position: relative;
  width: 100%;
}

.meet-photo-img-tag{
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.meet-buddy-img-tag{
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.meet-name{
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.meet-sub{
  font-size: 15px;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.5;
}

.meet-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.meet-actions .os-btn{
  color: var(--white);
}

.meet-actions .os-btn.ghost{
  color: var(--blue);
  border-color: var(--blue);
}

.meet-actions .os-btn.ghost:hover{
  background: rgba(0, 79, 163, 0.1);
  color: var(--blue);
  border-color: var(--blue);
}
.meet-highlights{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.highlight{
  padding: 8px 16px;
  background: var(--light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid #e8edf5;
}

.meet-promise{
  margin: 24px 0;
  padding: 20px;
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.meet-promise .os-p{
  margin: 0;
  font-style: italic;
  color: var(--dark);
  font-size: 15px;
}
/* =====================================================
   SIDE CTAs
   ===================================================== */
.side-ctas{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.cta-card:hover{
  transform: translateY(-4px);
}

.cta-img-wrap{
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--light);
}

.cta-img-tag{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.cta-body{
  padding: 24px;
}

.cta-text{
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.cta-body .os-btn{
  color: var(--blue);
  border-color: var(--blue);
}

.cta-body .os-btn:hover{
  background: rgba(0, 79, 163, 0.1);
  color: var(--blue);
  border-color: var(--blue);
}

/* =====================================================
   MARKET SNAPSHOT
   ===================================================== */
.local{
  padding: 80px 0;
  background: var(--white);
}

.snap-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.snap-card{
  background: var(--light);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.snap-card:hover{
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.snap-title{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.snap-value{
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
}

/* =====================================================
   COMMUNITIES
   ===================================================== */
.communities{
  padding: 80px 0;
  background: var(--light);
}

.comm-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.comm-tile{
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease;
}

.comm-tile:hover{
  transform: scale(1.03);
}

.comm-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comm-ov{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(7, 26, 51, 0.7) 100%
  );
  z-index: 1;
}

.comm-name{
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials{
  padding: 80px 0;
  background: var(--white);
}

.testi-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.testi-card{
  background: var(--light);
  border-radius: 12px;
  padding: 32px 28px;
  font-size: 16px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  border-left: 4px solid var(--teal);
}

.testi-name{
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--blue);
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-section{
  padding: 80px 0;
  background: var(--light);
}

.os-contact-form{
  max-width: 640px;
  margin: 0 auto;
}

.os-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.os-input,
.os-textarea{
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #e8edf5;
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.3s ease;
}

.os-input:focus,
.os-textarea:focus{
  outline: none;
  border-color: var(--teal);
}

.os-textarea{
  min-height: 140px;
  resize: vertical;
}

.os-check{
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.os-check input[type="checkbox"]{
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.os-submit{
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.os-submit:hover{
  background: #0eb3d4;
  border-color: #0eb3d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 157, 188, 0.4);
}

.os-success{
  padding: 16px;
  background: #d1fae5;
  border: 2px solid #10b981;
  border-radius: 8px;
  color: #065f46;
  font-weight: 600;
  text-align: center;
}

.os-error{
  padding: 16px;
  background: #fee2e2;
  border: 2px solid #ef4444;
  border-radius: 8px;
  color: #991b1b;
  font-weight: 600;
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer{
  padding: 60px 0 40px;
  background: var(--navy);
  color: #cbd5e1;
  text-align: center;
}

.footer img{
  display: block;
  margin: 0 auto;
}

.footer a{
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover{
  color: var(--teal);
}

.footer-social a{
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover{
  transform: translateY(-4px);
}

.footer-social img{
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social a:hover img{
  opacity: 1;
}

/* =====================================================
   BUYERS PAGE STYLES
   ===================================================== */

.section-hero.buyers-hero {
  position: relative;
  height: 85vh;
  min-height: 750px;
  overflow: hidden;
}

.hero-bg-buyers {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-buyers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.buyers-horizon-boost {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 15% 0%, rgba(12, 157, 188, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 2;
  pointer-events: none;
}

.buyers-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px 0 120px;
  display: flex;
  justify-content: flex-start;
}

.buyers-glass {
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(7px);
  border-radius: 28px;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.25), 0 18px 48px rgba(7, 26, 51, 0.18);
  max-width: 380px;
  width: 100%;
  padding: 32px 28px 28px;
}

.buyers-glass h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.2;
}

.buyers-glass p {
  font-size: 16px;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.5;
}

.buyers-glass a {
  color: var(--teal);
  text-decoration: none;
}

.buyers-glass a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.buy-section {
  padding: 80px 0;
  background: var(--white);
}

.buy-section:nth-child(even) {
  background: var(--light);
}

.buy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px);
}

.buy-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  text-align: center;
}

.buy-subtitle {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.buy-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.buy-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.buy-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.buy-card-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   SELLERS PAGE STYLES
   ===================================================== */

.section-hero.sellers-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-sellers {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-sellers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sellers-glass {
  position: relative;
  z-index: 3;
  padding: 45px 50px 38px;
  border-radius: 26px;
  max-width: 720px;
  width: auto;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.12) 28%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.sellers-glass .hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  text-shadow: 0px 3px 8px rgba(0,0,0,0.35);
}

.sellers-glass .hero-subtext {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  margin: 0 0 24px;
  line-height: 1.6;
}

.sellers-glass .btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-shadow: none;
  border: none;
}

.sellers-glass .btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 79, 163, 0.3);
}

.sell-contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.sell-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  text-align: center;
}

.contact-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8edf5;
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.sell-value-section {
  padding: 90px 20px;
  background: var(--white);
}

.sell-value-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sell-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

.sell-section-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.sell-value-item {
  background: var(--light);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.sell-value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sell-value-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.sell-value-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.sell-value-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.sell-success-section {
  padding: 90px 20px;
  background: var(--light);
}

.sell-success-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sell-success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sell-success-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s ease;
}

.sell-success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sell-success-title {
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.sell-success-text {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

.sell-marketing-section {
  padding: 90px 20px;
  background: var(--white);
}

.sell-marketing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sell-marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.sell-marketing-item {
  background: var(--light);
  padding: 34px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.sell-marketing-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sell-marketing-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.sell-marketing-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.sell-marketing-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.sell-process-section {
  padding: 90px 20px;
  background: var(--light);
}

.sell-process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sell-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.sell-process-item {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.sell-process-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sell-process-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.sell-process-title {
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.sell-process-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.sell-testimonials-section {
  padding: 90px 20px;
  background: var(--white);
}

.sell-testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sell-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.sell-testimonial-card {
  background: var(--light);
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.sell-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sell-testimonial-text {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.7;
  text-align: left;
  font-style: italic;
}

.sell-cta-section {
  padding: 90px 20px;
  background: var(--light);
  text-align: center;
}

.sell-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.sell-cta-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}

.sell-cta-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 34px;
}

.sell-cta-button {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 16px 42px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.sell-cta-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.sell-final-cta-section {
  padding: 70px 20px 90px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.sell-final-cta-container {
  max-width: 750px;
  margin: 0 auto;
}

.sell-final-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.sell-final-text {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.sell-final-button {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.sell-final-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* =====================================================
   COMMUNITIES PAGE STYLES
   ===================================================== */

.communities-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  overflow: hidden;
  padding: 60px 20px;
}

.communities-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=1600') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.communities-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: #ffffff;
}

.communities-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.communities-hero p {
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.communities-filter {
  background: var(--light);
  padding: 30px 20px;
  border-bottom: 2px solid #e0e0e0;
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.filter-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--teal);
  background: white;
  color: var(--teal);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 157, 188, 0.4);
}

.communities-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.community-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.community-card.hidden {
  opacity: 0;
  transform: scale(0.95);
}

.community-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.community-image-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.community-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.community-card:hover .community-image {
  transform: scale(1.1);
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 79, 163, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.community-card:hover .community-overlay {
  opacity: 1;
}

.community-content {
  padding: 28px;
}

.community-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.community-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.community-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-badge.featured {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--navy);
}

.community-badge.beach {
  background: linear-gradient(135deg, var(--teal) 0%, #0eb3d4 100%);
  color: white;
}

.community-badge.premium {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  color: white;
}

.community-badge.popular {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  color: white;
}

.community-tagline {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}

.community-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.community-highlights li {
  padding: 10px 0;
  color: var(--dark);
  font-size: 15px;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}

.highlight-icon {
  position: absolute;
  left: 0;
  font-size: 18px;
}

.community-highlights li::before {
  display: none;
}

.community-price {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  padding: 18px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 5px solid var(--teal);
  box-shadow: 0 2px 8px rgba(12, 157, 188, 0.1);
}

.price-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-range {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}

.community-cta {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 79, 163, 0.3);
}

.community-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 79, 163, 0.5);
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
}

.communities-info {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: white;
  padding: 80px 20px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.communities-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?w=1600') center/cover;
  opacity: 0.1;
}

.info-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  color: white;
  font-weight: 800;
}

.info-content p {
  font-size: clamp(16px, 2vw, 19px);
  margin-bottom: 36px;
  opacity: 0.95;
  line-height: 1.8;
}

.info-cta {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: var(--blue);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.info-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--teal);
  color: white;
}

/* =====================================================
   VIDEO PAGE STYLES
   ===================================================== */

.yt-hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  overflow: hidden;
  padding: 80px 20px;
  width: 100%;
}

.yt-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.yt-hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.yt-hero-content p {
  font-size: clamp(16px, 3vw, 20px);
  margin: 0 0 30px 0;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.yt-controls-section {
  background: var(--light);
  padding: 30px 20px;
  border-bottom: 2px solid #e0e0e0;
  width: 100%;
}

.yt-controls-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.yt-search-input {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 12px 20px;
  border: 2px solid var(--teal);
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.yt-search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 79, 163, 0.1);
}

.yt-sort-select {
  padding: 12px 20px;
  border: 2px solid var(--teal);
  border-radius: 25px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.yt-sort-select:focus {
  border-color: var(--blue);
}

.yt-loading {
  text-align: center;
  padding: 60px 20px;
  font-size: 20px;
  color: var(--teal);
}

.yt-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--teal);
  border-radius: 50%;
  animation: yt-spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes yt-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.yt-videos-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.yt-video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.yt-video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.yt-thumbnail-wrapper {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.yt-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.yt-video-card:hover .yt-thumbnail {
  transform: scale(1.05);
}

.yt-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 79, 163, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.yt-video-card:hover .yt-play-overlay {
  background: rgba(12, 157, 188, 0.9);
  transform: translate(-50%, -50%) scale(1.15);
}

.yt-play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.yt-video-info {
  padding: 20px;
}

.yt-video-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-video-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.yt-video-description {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 20px;
}

.yt-modal.yt-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.yt-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
  line-height: 1;
  transition: color 0.3s ease;
}

.yt-modal-close:hover {
  color: var(--teal);
}

.yt-player {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}

.yt-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  display: none;
}

.yt-no-results h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  color: var(--blue);
}

.yt-no-results p {
  margin: 0;
  font-size: 16px;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 100px 20px;
  text-align: center;
}

.about-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.about-section {
  padding: 80px 20px;
  background: #fff;
}

.about-section.alt {
  background: var(--light);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark);
  margin: 0 0 25px 0;
}

.about-container p:last-child {
  margin-bottom: 0;
}

.section-heading {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 30px 0;
  text-align: center;
}

.intro-text {
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.closing-text {
  margin-top: 30px;
  font-weight: 600;
  font-style: italic;
  color: var(--blue);
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-bullets li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.about-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
  font-size: 24px;
  top: -2px;
}

.about-bullets li:last-child {
  margin-bottom: 0;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.about-cta-section h2 {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.about-cta-section p {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 35px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-buttons .os-btn {
  padding: 16px 40px;
  font-size: 18px;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.6;
}

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

.contact-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 16px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border: 2px solid #e8edf5;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 12px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}

.info-card a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-card a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.contact-info {
  display: grid;
  gap: 24px;
}

/* =====================================================
   TESTIMONIALS PAGE STYLES
   ===================================================== */

.testi-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a4a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 79, 163, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(12, 157, 188, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.testi-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.testi-hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.testi-hero-accent {
  color: var(--teal);
  font-weight: 800;
}

.testi-hero-content p {
  font-size: clamp(16px, 3vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.testi-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.testi-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testi-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 800;
}

.testi-intro p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
}

.testi-content {
  position: relative;
  z-index: 1;
}

.testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid var(--light);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 4px;
}

.author-info .source {
  font-size: 14px;
  color: var(--muted);
}

.testi-stats-section {
  background: linear-gradient(135deg, var(--teal), #0a8ba8);
  padding: 80px 20px;
  margin: 60px 0;
}

.testi-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.testi-stat-item {
  color: var(--white);
}

.testi-stat-number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1;
}

.testi-stat-label {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
}

.testi-cta-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.testi-cta-box {
  background: linear-gradient(135deg, var(--dark), #1a3a4a);
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.testi-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 79, 163, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.testi-cta-content {
  position: relative;
  z-index: 1;
}

.testi-cta-box h2 {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--white);
  margin: 0 0 16px;
  font-weight: 800;
}

.testi-cta-box p {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.testi-cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 79, 163, 0.4);
}

.testi-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 79, 163, 0.5);
  background: #0066cc;
}

/* =====================================================
   PROPERTIES PAGE STYLES
   ===================================================== */

.properties-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  margin-bottom: 60px;
}

.properties-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.properties-hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0;
}

.properties-listings {
  min-height: 400px;
  margin-bottom: 80px;
  padding: 0 20px;
}

bb-widget {
  display: block;
  width: 100%;
}

/* =====================================================
   PRIVACY POLICY PAGE STYLES
   ===================================================== */

.privacy-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 50px;
}

.privacy-hero h1 {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 16px;
  line-height: 1.2;
}

.privacy-date {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.privacy-main {
  min-height: 400px;
  padding: 0 0 80px;
  background: #ffffff;
}

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--teal);
  line-height: 1.3;
}

.privacy-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin: 28px 0 14px;
}

.privacy-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 18px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.privacy-section a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-section ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.privacy-section ul li:before {
  content: "→";
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 900;
  font-size: 18px;
}

.privacy-info-box,
.privacy-contact-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--teal);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.privacy-info-box p,
.privacy-contact-box p {
  margin-bottom: 0;
  color: var(--navy);
  line-height: 1.65;
  font-size: 16px;
}

.privacy-contact-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left-color: var(--blue);
}

/* =====================================================
   SOLD PROPERTIES PAGE STYLES
   ===================================================== */

.sold-hero {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.sold-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 800;
}

.sold-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.sold-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  color: white;
  margin: 60px 20px 0;
}

.sold-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin: 0 0 12px;
  font-weight: 800;
}

.sold-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sold-cta .os-btn {
  background: white;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sold-cta .os-btn:hover {
  background: var(--light);
  transform: translateY(-2px);
  color: var(--blue);
}

.sold-cta .os-btn.ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.sold-cta .os-btn.ghost:hover {
  background: white;
  color: var(--blue);
}

/* =====================================================
   PROPERTY SEARCH PAGE STYLES
   ===================================================== */

.page-header {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 48px;
  background: var(--light);
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 800;
}

.page-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.idx-widget-container-section {
  padding: 0 20px 80px;
  background: var(--light);
}

.idx-widget-container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
  max-width: 100%;
}

.idx-widget-container bb-widget {
  display: block;
  width: 100%;
}

/* =====================================================
   HOME VALUE PAGE STYLES
   ===================================================== */

.homevalue-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.homevalue-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.homevalue-hero p {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.homevalue-benefits {
  padding: 60px 20px;
  background: var(--light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 22px;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 800;
}

.benefit-card p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.homevalue-form-section {
  padding: 80px 20px;
  background: white;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  font-size: clamp(28px, 5vw, 40px);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 800;
}

.form-intro p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.homevalue-form {
  background: var(--light);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e7ef;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12, 157, 188, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.homevalue-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(12, 157, 188, 0.3);
}

.homevalue-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 79, 163, 0.4);
}

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: #d1fae5;
  border: 2px solid #10b981;
  border-radius: 8px;
  color: #065f46;
  font-size: 16px;
  text-align: center;
}

.form-error {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fee2e2;
  border: 2px solid #ef4444;
  border-radius: 8px;
  color: #991b1b;
  font-size: 16px;
  text-align: center;
}

.homevalue-why {
  padding: 80px 20px;
  background: var(--light);
}

.homevalue-why h2 {
  font-size: clamp(32px, 5vw, 42px);
  text-align: center;
  color: var(--navy);
  margin: 0 0 48px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.why-item h3 {
  font-size: 20px;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 800;
}

.why-item p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */

@media (min-width: 1024px){
  .meet-grid{
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 991px) {
  .section-hero.buyers-hero {
    height: auto;
    min-height: 600px;
  }
  
  .buyers-hero-content {
    padding: 0 40px;
  }
  
  .buyers-glass {
    max-width: 320px;
    padding: 24px 20px;
  }
  
  .buyers-glass h1 {
    font-size: 28px;
  }
  
  .buyers-glass p {
    font-size: 15px;
  }
  
  .sell-value-grid,
  .sell-marketing-grid,
  .sell-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sell-success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sellers-glass {
    padding: 32px 28px;
  }
}

@media (max-width: 900px){
  .os-nav{
    display: none;
  }
  
  .os-burger{
    display: flex;
  }
  
  .meet-row{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .meet-photo{
    max-width: 400px;
    margin: 0 auto;
  }
  
  .meet-card{
    padding: 32px 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .communities-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 40px auto;
  }
  
  .filter-container {
    flex-direction: column;
    gap: 12px;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .community-name {
    font-size: 24px;
  }
  
  .yt-videos-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px auto;
  }
  
  .yt-controls-container {
    flex-direction: column;
  }
  
  .yt-search-input {
    max-width: 100%;
  }
  
  .about-hero {
    min-height: 300px;
    padding: 80px 20px;
  }
  
  .about-section {
    padding: 60px 20px;
  }
  
  .about-container p,
  .about-bullets li {
    font-size: 17px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .os-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testi-stats-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .testi-cta-box {
    padding: 48px 28px;
  }
  
  .privacy-hero {
    padding: 50px 20px;
    margin-bottom: 40px;
  }

  .privacy-hero h1 {
    font-size: 36px;
  }

  .privacy-section {
    margin-bottom: 40px;
  }

  .privacy-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .privacy-section h3 {
    font-size: 18px;
    margin: 24px 0 12px;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 16px;
  }

  .privacy-info-box,
  .privacy-contact-box {
    padding: 20px 22px;
    margin: 24px 0;
  }

  .privacy-section ul li {
    padding-left: 28px;
  }
  
  .sold-hero {
    margin-bottom: 40px;
    padding: 50px 20px;
  }
  
  .sold-hero h1 {
    font-size: 32px;
  }
  
  .sold-hero p {
    font-size: 16px;
  }
  
  .widget-section {
    margin: 0 0 40px 0;
    padding: 0 12px;
  }
  
  .sold-cta {
    padding: 40px 24px;
    margin: 40px 12px 0;
  }
  
  .sold-cta h2 {
    font-size: 28px;
  }
  
  .sold-cta p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .os-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .page-header {
    padding: 50px 20px;
    margin-bottom: 32px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .idx-widget-container {
    padding: 20px;
    border-radius: 12px;
  }
  
  .idx-widget-container-section {
    padding: 0 12px 50px;
  }
  
  .homevalue-hero {
    padding: 60px 20px;
  }

  .homevalue-benefits {
    padding: 50px 20px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .homevalue-form-section {
    padding: 60px 20px;
  }

  .homevalue-form {
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .homevalue-why {
    padding: 60px 20px;
  }

  .why-grid {
    gap: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .sell-value-grid,
  .sell-marketing-grid,
  .sell-process-grid,
  .sell-success-grid,
  .sell-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-hero.sellers-hero {
    height: 75vh;
    min-height: 480px;
  }
  
  .sellers-glass {
    padding: 24px 20px;
    width: 88%;
    border-radius: 18px;
  }
}

@media (max-width: 767px){
  .section-hero.buyers-hero {
    height: 480px;
    min-height: 480px;
  }
  
  .buyers-hero-content {
    justify-content: center;
    padding: 0 20px;
  }
  
  .buyers-glass {
    max-width: 280px;
    padding: 20px 16px;
  }
  
  .buyers-glass h1 {
    font-size: 24px;
  }
  
  .buyers-glass p {
    font-size: 14px;
  }
  
  .buy-section {
    padding: 60px 0;
  }
  
  .buy-grid {
    grid-template-columns: 1fr;
  }
  
  .local,
  .communities,
  .testimonials,
  .contact-section,
  .cta-grid,
  .meet{
    padding: 60px 0;
  }
  
  .snap-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .snap-value{
    font-size: 24px;
  }
  
  .comm-grid{
    grid-template-columns: 1fr;
  }
  
  .testi-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .cta-grid-wrap{
    grid-template-columns: 1fr;
  }
  
  .meet-buddy-img-tag{
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }
  
  .meet-actions{
    flex-direction: column;
  }
  
  .meet-actions .os-btn{
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px){
  .snap-grid{
    grid-template-columns: 1fr;
  }
  
  .os-h2{
    font-size: 28px;
  }
}

@media (max-width: 479px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .os-header {
    height: 70px;
    padding: 0;
    max-width: 100vw;
    overflow: hidden;
  }
  
  .os-header .os-container {
    padding: 0 4px 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    max-width: 100%;
  }  
  
  .os-logo {
    flex: 0 1 auto;
    margin: 0;
    max-width: calc(100vw - 60px);
  }
  
  .os-logo img {
    height: 56px;
    width: auto;
    max-width: 100%;
  }
  
  .os-burger {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin: 0;
  }

  .section-hero.buyers-hero {
    height: 400px;
    min-height: 400px;
  }
  
  .buyers-glass {
    max-width: 240px;
    padding: 16px 12px;
  }
  
  .buyers-glass h1 {
    font-size: 20px;
  }
  
  .buyers-glass p {
    font-size: 12px;
  }

  .os-mobile-panel {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .section-hero.sellers-hero {
    height: auto;
    min-height: unset;
    padding: 24px 0;
  }
  
  .sellers-glass {
    padding: 20px 18px;
    border-radius: 16px;
  }
  
  .snap-grid {
    grid-template-columns: 1fr;
  }
  
  .os-h2 {
    font-size: 28px;
  }
  
  .communities-hero {
    min-height: 350px;
    padding: 50px 10px;
    width: 100%;
  }
  
  .communities-hero h1 {
    font-size: 26px;
    padding: 0 8px;
  }
  
  .communities-hero p {
    font-size: 14px;
    padding: 0 8px;
  }
  
  .communities-filter {
    padding: 20px 10px;
    width: 100%;
  }
  
  .filter-container {
    padding: 0;
    width: 100%;
  }
  
  .filter-label {
    font-size: 16px;
  }
  
  .filter-btn {
    font-size: 13px;
    padding: 10px 16px;
    max-width: calc(100vw - 40px);
  }
  
  .communities-grid {
    padding: 0 10px;
    gap: 20px;
    margin: 30px auto;
    width: 100%;
    grid-template-columns: 1fr;
  }
  
  .community-card {
    margin: 0 auto;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }
  
  .community-content {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .community-header {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  
  .community-name {
    font-size: 20px;
    max-width: calc(100% - 80px);
    word-wrap: break-word;
  }
  
  .community-badge {
    font-size: 10px;
    padding: 4px 8px;
    flex-shrink: 0;
  }
  
  .community-tagline {
    font-size: 14px;
  }
  
  .community-highlights {
    width: 100%;
  }
  
  .community-highlights li {
    font-size: 13px;
    padding-left: 26px;
    padding-right: 0;
    word-wrap: break-word;
  }
  
  .highlight-icon {
    font-size: 15px;
  }
  
  .community-price {
    padding: 12px;
    margin: 16px 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .price-label {
    font-size: 11px;
  }
  
  .price-range {
    font-size: 18px;
  }
  
  .community-cta {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .community-image-wrap {
    height: 180px;
    width: 100%;
  }
  
  .communities-info {
    padding: 50px 10px;
    width: 100%;
  }
  
  .info-content {
    padding: 0 8px;
  }
  
  .info-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .yt-hero-section {
    min-height: 280px;
    padding: 40px 10px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .yt-hero-content {
    max-width: 100%;
    padding: 0 8px;
  }
  
  .yt-hero-content h1 {
    font-size: 26px;
    margin-bottom: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 4px;
  }
  
  .yt-hero-content p {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 4px;
  }
  
  .yt-controls-section {
    padding: 20px 10px;
    overflow-x: hidden;
  }
  
  .yt-controls-container {
    padding: 0 4px;
  }
  
  .yt-search-input {
    max-width: calc(100vw - 28px);
    font-size: 14px;
  }
  
  .yt-sort-select {
    max-width: calc(100vw - 28px);
    font-size: 14px;
  }
  
  .yt-videos-grid {
    padding: 0 10px;
    margin: 30px auto;
  }
  
  .yt-video-info {
    padding: 15px;
  }
  
  .yt-video-title {
    font-size: 16px;
  }
  
  .yt-modal-content {
    margin: 0 10px;
  }
  
  .about-hero {
    padding: 60px 10px;
    min-height: 280px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .about-hero-content {
    max-width: 100%;
    padding: 0 6px;
  }
  
  .about-hero-content h1 {
    font-size: 26px;
    padding: 0 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .about-section {
    padding: 50px 10px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .about-container {
    padding: 0 6px;
    max-width: 100%;
  }
  
  .about-container p {
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .section-heading {
    font-size: 24px;
    padding: 0 4px;
  }
  
  .about-bullets li {
    font-size: 15px;
    padding-left: 28px;
    padding-right: 4px;
  }
  
  .about-bullets li::before {
    font-size: 20px;
  }
  
  .about-cta-section {
    padding: 60px 10px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .about-cta-section h2 {
    padding: 0 6px;
  }
  
  .about-cta-section p {
    padding: 0 6px;
  }
  
  .cta-buttons {
    padding: 0 6px;
  }
  
  .cta-buttons .os-btn {
    max-width: calc(100vw - 32px);
  }
  
  .tagline {
    font-size: 16px;
    padding: 0 6px;
  }
  
  .contact-hero {
    padding: 60px 12px;
  }
  
  .contact-hero h1 {
    font-size: 28px;
    padding: 0 8px;
  }
  
  .contact-hero p {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .contact-section {
    padding: 50px 10px;
  }
  
  .contact-grid {
    gap: 28px;
  }
  
  .os-contact-form {
    padding: 20px;
  }
  
  .os-input,
  .os-textarea {
    font-size: 16px;
  }
  
  .os-submit {
    width: 100%;
    padding: 14px 24px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .testi-hero {
    padding: 60px 12px;
  }
  
  .testi-hero-content h1 {
    font-size: 32px;
    padding: 0 8px;
  }
  
  .testi-hero-content p {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .testi-section {
    padding: 50px 12px;
  }
  
  .testi-grid {
    gap: 20px;
  }
  
  .testi-card {
    padding: 24px;
  }
  
  .testi-stats-section {
    padding: 50px 12px;
  }
  
  .testi-cta-section {
    padding: 0 12px;
  }
  
  .testi-cta-box {
    padding: 40px 20px;
  }
  
  .properties-hero {
    padding: 50px 12px;
  }
  
  .properties-hero h1 {
    font-size: 28px;
    padding: 0 8px;
  }
  
  .properties-hero p {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .properties-listings {
    padding: 0 12px;
    margin-bottom: 50px;
  }
  
  .privacy-hero {
    padding: 40px 12px;
  }

  .privacy-hero h1 {
    font-size: 30px;
    padding: 0 8px;
  }
  
  .privacy-content {
    padding: 0 12px;
  }

  .privacy-section h2 {
    font-size: 24px;
  }

  .privacy-info-box,
  .privacy-contact-box {
    padding: 18px 20px;
  }
  
  .sold-hero {
    padding: 40px 12px;
  }
  
  .sold-hero h1 {
    font-size: 28px;
    padding: 0 8px;
  }
  
  .sold-hero p {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .sold-cta {
    padding: 40px 20px;
    margin: 40px 10px 0;
  }
  
  .page-header {
    padding: 40px 12px;
  }
  
  .page-header h1 {
    font-size: 28px;
    padding: 0 8px;
  }
  
  .page-header p {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .idx-widget-container {
    padding: 16px;
  }
  
  .idx-widget-container-section {
    padding: 0 10px 40px;
  }
  
  .homevalue-hero {
    padding: 50px 12px;
  }

  .homevalue-hero h1 {
    font-size: 32px;
  }

  .homevalue-hero p {
    font-size: 15px;
  }

  .homevalue-benefits {
    padding: 40px 12px;
  }

  .benefit-card {
    padding: 24px;
  }

  .homevalue-form-section {
    padding: 50px 12px;
  }

  .homevalue-form {
    padding: 24px 20px;
  }

  .homevalue-why {
    padding: 50px 12px;
  }

  .why-item {
    padding: 24px;
  }
}