:root{
  --dark: #16130f;
  --dark-2: #1d1913;
  --dark-3: #221d16;
  --gold: #ddb164;
  --gold-light: #f0cd94;
  --gold-dark: #c19a4c;
  --cream: #f4efe4;
  --cream-2: #fbf9f4;
  --text-light: #f2ede3;
  --text-muted: #b9b0a0;
  --text-dark: #241f18;
  --border-gold: rgba(221,177,100,0.35);
  --radius: 10px;
  --max-width: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; font-size:18px;}
html, body{ max-width:100%; overflow-x:hidden; }
body{
  margin:0;
  font-family:'Segoe UI', Arial, sans-serif;
  background:var(--dark);
  color:var(--text-light);
  line-height:1.65;
  font-size:1rem;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
  width:100%;
}

a{ text-decoration:none; color:inherit; }
ul{list-style:none; margin:0; padding:0;}

/* ---------- Attention Bar ---------- */
.attention-bar{
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  color:#1a1509;
  font-size:16px;
  font-weight:600;
  letter-spacing:.3px;
  overflow:hidden;
  white-space:nowrap;
}
.attention-bar__track{
  display:inline-flex;
  width:max-content;
  padding:10px 0;
  animation:attentionMarquee 26s linear infinite;
}
.attention-bar:hover .attention-bar__track{
  animation-play-state:paused;
}
.attention-bar__item{
  display:inline-block;
  padding:0 40px;
  white-space:nowrap;
}

@keyframes attentionMarquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header{
  background:var(--dark);
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding:20px 0;
  position:relative;
}
.site-header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.logo{
  font-size:26px;
  font-weight:800;
  color:#fff;
  letter-spacing:.3px;
}
.logo__dot{ color:var(--gold); }
.main-nav{ display:flex; gap:32px; }
.main-nav a{
  color:var(--text-muted);
  font-size:16px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:color .2s;
}
.main-nav a:hover{ color:var(--gold-light); }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  background:transparent;
  border:1px solid var(--border-gold);
  border-radius:6px;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:var(--gold-light);
  border-radius:2px;
  transition:transform .2s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Tagline Strip (typewriter) ---------- */
.tagline-strip{
  background:var(--dark-2);
  border-bottom:1px solid var(--border-gold);
  padding:20px 0;
  text-align:center;
}
.tagline-strip__typewriter{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:var(--gold-light);
  font-weight:700;
  font-size:26px;
  letter-spacing:.4px;
}
.tagline-strip__text{ white-space:nowrap; }
.tagline-strip__star{ color:var(--gold); font-size:22px; }
.tagline-strip__cursor{
  color:var(--gold);
  font-weight:400;
  margin-left:2px;
  animation:cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink{
  0%, 100%{ opacity:1; }
  50%{ opacity:0; }
}

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(ellipse at 50% 0%, rgba(221,177,100,0.08), transparent 60%),
    var(--dark);
  padding:72px 0 64px;
  text-align:center;
}
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(221,177,100,0.1);
  border:1px solid var(--border-gold);
  color:var(--gold-light);
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:9px 20px;
  border-radius:999px;
  margin-bottom:28px;
}
.hero__badge .dot{
  width:8px; height:8px; border-radius:50%;
  background:#3ec96b;
  display:inline-block;
}
.hero__title{
  font-size:52px;
  line-height:1.2;
  font-weight:900;
  margin:0 0 24px;
  color:#fff;
  letter-spacing:.5px;
}
.hero__title .gold{ color:var(--gold); }
.hero__sub{
  color:var(--text-muted);
  font-size:19px;
  line-height:1.7;
  max-width:680px;
  margin:0 auto 32px;
}
.hero__sub strong{ color:var(--text-light); }
.hero__buyer-link{
  margin-top:22px;
  font-size:17px;
  color:var(--text-muted);
}
.hero__buyer-link a{
  color:var(--gold-light);
  font-weight:700;
  text-decoration:underline;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding:17px 36px;
  font-size:17px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  border-radius:6px;
  cursor:pointer;
  border:none;
  transition:transform .15s, box-shadow .15s, background .15s;
}
.btn--outline-gold{
  background:transparent;
  color:var(--gold-light);
  border:1.5px solid var(--gold);
}
.btn--outline-gold:hover{
  background:rgba(221,177,100,0.12);
}
.btn--solid-gold{
  background:linear-gradient(90deg,var(--gold-dark),var(--gold));
  color:#1a1509;
  box-shadow:0 4px 14px rgba(221,177,100,0.25);
}
.btn--solid-gold:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(221,177,100,0.35);
}

/* ---------- Form Section ---------- */
.form-section{
  background:var(--cream);
  color:var(--text-dark);
  padding:72px 0 88px;
}
.section-eyebrow{
  text-align:center;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:15px;
  font-weight:700;
  color:var(--gold-dark);
  margin-bottom:12px;
}
.section-eyebrow--dark{ color:var(--gold-light); }
.section-title{
  text-align:center;
  font-size:36px;
  font-weight:900;
  color:var(--text-dark);
  margin:0 0 40px;
}
.gold-dark{ color:var(--gold-dark); }
.gold-link{ color:var(--gold); font-weight:700; }

.listing-card{
  background:#fff;
  max-width:820px;
  margin:0 auto;
  border-radius:var(--radius);
  border-top:4px solid var(--gold);
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
  padding:32px 36px 26px;
}
.listing-card__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:24px;
}
.listing-card__header h3{
  margin:0;
  font-size:21px;
  font-weight:800;
}
.required-note{
  font-size:15px;
  color:#75705f;
}

.stepper{
  display:flex;
  justify-content:space-between;
  margin:0 0 32px;
  position:relative;
}
.stepper::before{
  content:"";
  position:absolute;
  top:16px;
  left:6%;
  right:6%;
  height:2px;
  background:#e7e0d1;
  z-index:0;
}
.stepper__step{
  flex:1;
  text-align:center;
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.stepper__num{
  width:32px; height:32px;
  border-radius:50%;
  background:#e7e0d1;
  color:#75705f;
  font-size:15px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}
.stepper__label{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#8a8271;
}
.stepper__step.is-active .stepper__num{
  background:var(--gold);
  color:#1a1509;
}
.stepper__step.is-active .stepper__label{
  color:var(--gold-dark);
}

.field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.field{ margin-bottom:22px; }
.field label{
  display:block;
  font-size:16px;
  font-weight:700;
  margin-bottom:9px;
  color:#2c2718;
}
.field label small{
  font-weight:400;
  font-size:14px;
  color:#847c69;
  margin-left:4px;
}
.field label em{
  color:#c0392b;
  font-style:normal;
}
.field__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px; height:20px;
  background:var(--gold);
  color:#1a1509;
  border-radius:4px;
  font-size:12px;
  margin-right:6px;
}

.input-icon{
  display:flex;
  align-items:center;
  background:var(--cream-2);
  border:1px solid #e5ddc9;
  border-radius:8px;
  padding:0 14px;
}
.input-icon .icon{
  font-size:17px;
  margin-right:10px;
  opacity:.7;
}
.input-icon input,
.input-icon select{
  border:none;
  background:transparent;
  outline:none;
  padding:15px 0;
  font-size:17px;
  width:100%;
  color:var(--text-dark);
  font-family:inherit;
}
.input-icon select{ cursor:pointer; }

.upload-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:2px dashed #e0d6b8;
  background:var(--cream-2);
  border-radius:10px;
  padding:36px 20px;
  cursor:pointer;
  transition:border-color .2s, background .2s;
}
.upload-box:hover{
  border-color:var(--gold);
  background:#fbf3e2;
}
.upload-box__icon{ font-size:26px; color:var(--gold-dark); margin-bottom:8px; }
.upload-box__title{ font-weight:700; font-size:17px; margin-bottom:4px; }
.upload-box__sub{ font-size:15px; color:#847c69; }

.listing-card__footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid #eee6d3;
}
.verified-note{
  font-size:16px;
  color:#3f6b44;
  font-weight:600;
}
.listing-card__footer .btn{ padding:15px 28px; }

/* ---------- Form Tabs (Seller / Buyer / Dealer) ---------- */
.form-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid #eee6d3;
}
.form-tab{
  flex:1;
  min-width:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 16px;
  border:1px solid #e5ddc9;
  background:var(--cream-2);
  color:#75705f;
  font-weight:700;
  font-size:15px;
  border-radius:10px;
  cursor:pointer;
  transition:all .2s ease;
}
.form-tab:hover{ border-color:var(--gold); color:var(--text-dark); }
.form-tab.is-active{
  background:linear-gradient(90deg,var(--gold-dark),var(--gold));
  border-color:var(--gold);
  color:#1a1509;
}
.form-panel[hidden]{ display:none; }

/* ---------- Wizard progress ---------- */
.wizard-progress{ margin-bottom:26px; }
.wizard-progress__label{
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:10px;
}
.wizard-progress__bar{ display:flex; gap:6px; }
.wizard-progress__dot{
  flex:1;
  height:6px;
  border-radius:4px;
  background:#e7e0d1;
}
.wizard-progress__dot.is-done{ background:linear-gradient(90deg,var(--gold-dark),var(--gold)); }
.wizard-step{ min-height:80px; }
.wizard-footer{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid #eee6d3;
}
.wizard-footer .btn{ padding:14px 30px; }

/* ---------- Pill toggle groups ---------- */
.pill-group{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  padding:10px 18px;
  border:1px solid #e5ddc9;
  background:var(--cream-2);
  color:#75705f;
  font-weight:600;
  font-size:14px;
  border-radius:999px;
  cursor:pointer;
  transition:all .2s ease;
}
.pill:hover{ border-color:var(--gold); color:var(--text-dark); }
.pill.is-selected{
  background:linear-gradient(90deg,var(--gold-dark),var(--gold));
  border-color:var(--gold);
  color:#1a1509;
}

/* ---------- Field errors ---------- */
.field-error{
  color:#c0392b;
  font-size:13px;
  font-weight:600;
  margin-top:6px;
}
.field.has-error .input-icon,
.field.has-error .pill-group{ outline:1px solid #c0392b; border-radius:8px; }

/* ---------- Locality pills + map ---------- */
.locality-add-row{ margin-top:10px; }
.locality-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.locality-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 8px 7px 14px;
  background:var(--cream-2);
  border:1px solid var(--border-gold);
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--text-dark);
}
.locality-pill button{
  width:18px; height:18px;
  border:none;
  border-radius:50%;
  background:rgba(192,57,43,.12);
  color:#c0392b;
  font-size:13px;
  line-height:1;
  cursor:pointer;
}
.map-box{
  width:100%;
  height:280px;
  margin-top:14px;
  border-radius:10px;
  border:1px solid #e5ddc9;
  overflow:hidden;
}
.map-hint{ margin:8px 0 0; font-size:13px; color:#847c69; }
.area-row select{ border:none; background:transparent; outline:none; font-size:15px; color:var(--text-dark); cursor:pointer; }
.area-row{ gap:10px; }

/* ---------- Checkbox field ---------- */
.field--checkbox .checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:15px;
  font-weight:500;
  color:var(--text-dark);
  cursor:pointer;
}
.field--checkbox input[type="checkbox"]{ width:18px; height:18px; margin-top:2px; accent-color:var(--gold); flex-shrink:0; }

/* ---------- Success panel ---------- */
.form-success{ text-align:center; padding:24px 8px 8px; }
.form-success__icon{ font-size:48px; color:#3f6b44; margin-bottom:16px; }
.form-success h3{ margin:0 0 10px; font-size:24px; font-weight:800; }
.form-success p{ margin:0 0 24px; font-size:15px; color:#75705f; line-height:1.6; }

@media(max-width:640px){
  .form-tab{ min-width:100%; }
  .wizard-footer{ justify-content:stretch; }
  .wizard-footer .btn{ flex:1; }
}

/* ---------- Trust Bar ---------- */
.trust-bar{
  background:
    radial-gradient(ellipse at 50% 0%, rgba(221,177,100,0.10), transparent 55%),
    var(--dark);
  border-top:1px solid var(--border-gold);
  padding:64px 0 16px;
  text-align:center;
}
.trust-bar__title{
  font-size:32px;
  font-weight:900;
  color:#fff;
  margin:0 0 8px;
  position:relative;
  display:inline-block;
}
.trust-bar__title::after{
  content:"";
  display:block;
  width:64px;
  height:3px;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold-light));
  margin:12px auto 0;
  border-radius:2px;
}
.trust-bar__sub{
  color:var(--text-muted);
  font-size:17px;
  margin:0 0 32px;
}

.carousel{
  position:relative;
  max-width:var(--max-width);
  margin:0 auto 56px;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:12px;
}
.carousel__track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:auto;
  padding:4px;
  flex:1;
}
.carousel__track::-webkit-scrollbar{ display:none; }

.prop-card{
  position:relative;
  min-width:230px;
  max-width:230px;
  border-radius:10px;
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  background:var(--dark-2);
  border:1px solid var(--border-gold);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:border-color .2s, transform .2s, box-shadow .2s;
}
.prop-card:hover{
  border-color:var(--gold);
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(221,177,100,0.25);
}

.prop-card__badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.prop-card__body{ display:flex; flex-direction:column; align-items:flex-start; gap:6px; }
.prop-card__icon{ font-size:20px; color:var(--gold); margin-bottom:2px; }
.prop-card__title{ margin:0; font-size:15px; font-weight:800; color:#fff; line-height:1.3; }
.prop-card__meta{ margin:0; font-size:13px; color:var(--text-muted); }
.prop-card__bottom{ display:flex; flex-wrap:wrap; align-items:center; gap:6px; }
.badge{
  font-size:12px;
  font-weight:700;
  padding:5px 9px;
  border-radius:4px;
  letter-spacing:.2px;
  align-self:flex-start;
}
.badge--verified{ background:linear-gradient(90deg,var(--gold-dark),var(--gold-light)); color:#1a1509; }
.badge--scanned{ background:rgba(255,255,255,0.85); color:#1a1509; }
.badge--owner{ background:rgba(0,0,0,0.65); color:var(--gold-light); border:1px solid var(--border-gold); align-self:flex-start; }
.badge--purpose{ background:transparent; color:var(--gold-light); border:1px solid var(--border-gold); }

.carousel__arrow{
  width:40px; height:40px;
  flex-shrink:0;
  border-radius:50%;
  border:1px solid var(--border-gold);
  background:rgba(221,177,100,0.08);
  color:var(--gold-light);
  font-size:20px;
  cursor:pointer;
  transition:background .2s, border-color .2s;
}
.carousel__arrow:hover{ background:rgba(221,177,100,0.28); border-color:var(--gold); }

/* ---------- Services ---------- */
.services{
  background:var(--dark);
  padding:16px 0 80px;
  text-align:center;
}
.services__title{
  font-size:34px;
  font-weight:900;
  color:#fff;
  margin:0 0 12px;
}
.services__sub{
  color:var(--text-muted);
  font-size:17px;
  margin:0 0 44px;
}

.services__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  text-align:left;
}
.service-card{
  background:var(--dark-3);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:10px;
  padding:26px 26px 22px;
  transition:border-color .2s, transform .2s;
}
.service-card:hover{
  border-color:var(--border-gold);
  transform:translateY(-2px);
}
.service-card__icon{
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(221,177,100,0.12);
  border-radius:8px;
  font-size:20px;
  margin-bottom:14px;
}
.service-card h3{
  color:var(--gold-light);
  font-size:20px;
  margin:0 0 8px;
}
.service-card p{
  color:var(--text-muted);
  font-size:16px;
  line-height:1.65;
  margin:0 0 16px;
}
.link-arrow{
  color:var(--gold-light);
  font-size:16px;
  font-weight:700;
}
.link-arrow:hover{ text-decoration:underline; }

/* ---------- Footer ---------- */
.site-footer{
  background:#0f0d09;
  padding:56px 0 0;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.logo--footer{ margin:0 0 12px; font-size:23px; }
.footer__col p{
  color:var(--text-muted);
  font-size:16px;
  line-height:1.7;
}
.footer__col h4{
  color:#fff;
  font-size:17px;
  margin:0 0 16px;
}
.footer__col ul li{ margin-bottom:12px; }
.footer__col ul a{
  color:var(--text-muted);
  font-size:16px;
  transition:color .2s;
}
.footer__col ul a:hover{ color:var(--gold-light); }
.footer__contact li{
  color:var(--text-muted);
  font-size:16px;
  line-height:1.6;
  margin-bottom:14px;
}
.footer__contact strong{ color:var(--text-light); }

.footer__bottom{
  text-align:center;
  padding:24px 16px 28px;
  color:#948c7a;
  font-size:14px;
  line-height:1.9;
}
.footer__bottom strong{ color:var(--gold-light); font-weight:700; }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  html{ font-size:17px; }
  .hero__title{ font-size:36px; }
  .field-grid{ grid-template-columns:1fr; }
  .services__grid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr; gap:28px; }
  .tagline-strip__typewriter{ font-size:20px; }
}

@media (max-width: 700px){
  .nav-toggle{ display:flex; }
  .main-nav{
    display:none;
    flex-direction:column;
    width:100%;
    gap:0;
    order:3;
    margin-top:16px;
    border-top:1px solid rgba(255,255,255,0.08);
  }
  .main-nav.is-open{ display:flex; }
  .main-nav a{
    padding:14px 4px;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .attention-bar__item{ padding:0 24px; font-size:14px; }
  .hero__title{ font-size:30px; }
  .hero__badge{ font-size:12px; padding:8px 14px; text-align:center; }
}

@media (max-width: 520px){
  html{ font-size:16.5px; }
  .tagline-strip__typewriter{ font-size:16px; gap:10px; }
  .listing-card{ padding:24px 18px 20px; }
  .hero{ padding:56px 0 48px; }
  .hero__title{ font-size:28px; }
  .stepper__label{ display:none; }
  .field-grid, .services__grid{ grid-template-columns:1fr; }
}

/* ---------- SaleDeed.com Footer ---------- */
.saledeed-footer {
    --navy: var(--dark);
    --navy-dark: var(--dark-2);
    --gray: var(--text-muted);
  }
.saledeed-footer * {box-sizing:border-box}
.saledeed-footer button,
  .saledeed-footer input {font:inherit}
.saledeed-footer a {text-decoration:none;color:inherit}
.saledeed-footer .footer {
    background:var(--navy);
    color:#fff;
    border-top:6px solid var(--gold);
    overflow:hidden;
  }
.saledeed-footer .gold {color:var(--gold)}
.saledeed-footer .gray {color:var(--gray)}
.saledeed-footer .bold {font-weight:700}

.saledeed-footer .contact-cta {
    padding:56px 16px;
    background:#f6ece0;
    color:var(--navy);
    border-top:3px solid var(--gold);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .contact-cta-inner {
    max-width:1000px;
    margin:0 auto;
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:40px;
    align-items:center;
  }
.saledeed-footer .contact-cta-text h2 {
    margin:0 0 16px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(28px,4vw,40px);
    font-weight:700;
    color:var(--navy);
  }
.saledeed-footer .contact-cta-text p {margin:0;font-size:15px;line-height:1.6;color:#3f3f3f}
.saledeed-footer .contact-cta-text p strong {color:var(--gold)}
.saledeed-footer .contact-form {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    background:#fff;
    border:1px solid #e2e2e2;
    border-radius:12px;
    padding:24px;
  }
.saledeed-footer .contact-form input,
  .saledeed-footer .contact-form textarea {
    min-height:48px;
    padding:0 16px;
    border:1px solid #e0e0e0;
    border-radius:8px;
    background:#fff;
    color:var(--navy);
    font-size:14px;
    outline:none;
    transition:border-color .2s ease;
  }
.saledeed-footer .contact-form textarea {
    grid-column:1 / -1;
    padding:12px 16px;
    resize:none;
  }
.saledeed-footer .contact-form input:focus,
  .saledeed-footer .contact-form textarea:focus {border-color:var(--gold)}
.saledeed-footer .contact-form button {
    grid-column:1 / -1;
    justify-self:start;
    padding:14px 28px;
    border:0;
    border-radius:8px;
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    transition:background .2s ease;
  }
.saledeed-footer .contact-form button:hover {background:var(--gold-dark)}
.saledeed-footer .contact-form-note {
    grid-column:1 / -1;
    margin:0;
    font-size:13px;
    font-weight:600;
    color:#1e7a3c;
  }
@media(max-width:767px) {
.saledeed-footer .contact-cta-inner {grid-template-columns:1fr;text-align:center}
.saledeed-footer .contact-form {grid-template-columns:1fr}
.saledeed-footer .contact-form button {justify-self:center}
}

.saledeed-footer .call-challenge {
    padding:56px 16px;
    text-align:center;
    background:var(--navy-dark);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .call-challenge-inner {max-width:640px;margin:0 auto}
.saledeed-footer .call-challenge-icon {
    width:64px;
    height:64px;
    margin:0 auto 24px;
    border-radius:50%;
    background:rgba(232,160,32,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:26px;
  }
.saledeed-footer .call-challenge h2 {
    margin:0 0 20px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(28px,5vw,44px);
    font-weight:700;
    color:#fff;
  }
.saledeed-footer .call-challenge-lead {margin:0 0 8px;font-size:17px;color:#fff}
.saledeed-footer .call-challenge-sub {margin:0 0 32px;font-size:14px;line-height:1.6;color:var(--gray)}
.saledeed-footer .challenge-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    font-size:16px;
    border-radius:12px;
    transition:background .2s ease;
  }
.saledeed-footer .challenge-btn:hover {background:var(--gold-dark)}

.saledeed-footer .property-baap {
    padding:56px 16px;
    background:var(--navy);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .property-baap-inner {max-width:900px;margin:0 auto}
.saledeed-footer .property-baap-heading {text-align:center;margin-bottom:32px}
.saledeed-footer .property-baap-badge {
    display:inline-block;
    margin:0 auto 20px;
    padding:10px 24px;
    border-radius:999px;
    background:var(--gold);
    color:var(--navy);
    font-size:clamp(18px,3vw,22px);
    font-weight:700;
  }
.saledeed-footer .property-baap-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(30px,6vw,48px);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#fff;
  }
.saledeed-footer .property-baap-tagline {margin:8px 0 0;font-size:clamp(16px,2.5vw,20px);font-weight:700;color:var(--gold)}
.saledeed-footer .property-baap-subtitle {margin:12px 0 0;font-size:14px;color:var(--gray)}
.saledeed-footer .property-baap-divider {display:flex;align-items:center;gap:16px;margin-bottom:24px}
.saledeed-footer .property-baap-divider .line {flex:1;height:1px;background:rgba(232,160,32,.25)}
.saledeed-footer .property-baap-divider p {margin:0;font-size:15px;font-weight:700;color:#fff;white-space:nowrap}
.saledeed-footer .property-baap-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:32px;
  }
.saledeed-footer .property-baap-item {
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(232,160,32,.15);
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    transition:border-color .2s ease;
  }
.saledeed-footer .property-baap-item:hover {border-color:var(--gold)}
.saledeed-footer .property-baap-item i {color:var(--gold);font-size:16px}
.saledeed-footer .property-baap-cta {text-align:center}
.saledeed-footer .property-baap-cta a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 44px;
    border:1px solid var(--gold);
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.08em;
    border-radius:10px;
    transition:background .2s ease;
  }
.saledeed-footer .property-baap-cta a:hover {background:var(--gold-dark)}
@media(max-width:639px) {
.saledeed-footer .call-challenge {padding:40px 16px}
.saledeed-footer .property-baap {padding:40px 16px}
.saledeed-footer .property-baap-grid {grid-template-columns:repeat(1,1fr)}
}
@media(min-width:640px) and (max-width:767px) {
.saledeed-footer .property-baap-grid {grid-template-columns:repeat(2,1fr)}
}

.saledeed-footer .brand-story {
    padding:56px 16px;
    background:var(--navy);
    border-bottom:1px solid rgba(255,255,255,.10);
    text-align:center;
  }
.saledeed-footer .brand-story-inner {max-width:700px;margin:0 auto}
.saledeed-footer .brand-story-title {
    margin:0 0 20px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(26px,5vw,36px);
    font-weight:700;
    color:#fff;
  }
.saledeed-footer .brand-story-text {margin:0 0 16px;font-size:15px;line-height:1.7;color:var(--gray)}
.saledeed-footer .brand-story-text strong {color:var(--gold)}
.saledeed-footer .brand-story-prompt {
    margin:0 0 20px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--gold);
  }
.saledeed-footer .brand-story-full {
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.35s;
    text-align:left;
  }
.saledeed-footer .brand-story-full.open {max-height:3200px;opacity:1;margin-bottom:24px}
.saledeed-footer .brand-story-full p {margin:0 0 14px;font-size:14px;line-height:1.7;color:var(--gray)}
.saledeed-footer .brand-story-full p strong {color:#fff}
.saledeed-footer .brand-story-full p strong.gold {color:var(--gold)}
.saledeed-footer .brand-story-full p.center {text-align:center}
.saledeed-footer .brand-story-full p.gold {color:var(--gold)}
.saledeed-footer .brand-story-full p.bold {font-weight:700}
.saledeed-footer .brand-story-full h3 {
    margin:24px 0 10px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    text-align:center;
    color:#fff;
  }
.saledeed-footer .brand-story-full h3:first-child {margin-top:0}
.saledeed-footer .brand-story-full h3.lg {
    margin:32px 0 14px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(18px,3vw,22px);
    text-transform:none;
    letter-spacing:0;
  }
.saledeed-footer .brand-story-full .check-line {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-align:center;
    font-weight:700;
    color:var(--gold);
  }
.saledeed-footer .brand-story-toggle {
    border:1px solid var(--border-gold);
    background:none;
    color:var(--gold);
    font-weight:700;
    font-size:14px;
    padding:12px 28px;
    border-radius:10px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:border-color .2s ease;
  }
.saledeed-footer .brand-story-toggle:hover {border-color:var(--gold)}
.saledeed-footer .brand-story-toggle .chevron {transition:.3s;font-size:12px}
.saledeed-footer .brand-story-toggle.open .chevron {transform:rotate(180deg)}
@media(max-width:639px) {
.saledeed-footer .brand-story {padding:40px 16px}
}

.saledeed-footer .ecosystem {
    padding:40px 16px 80px;
    background:var(--navy);
    border-top:1px solid var(--border-gold);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .ecosystem-inner {
    max-width:1152px;
    margin:0 auto;
  }
.saledeed-footer .ecosystem-heading {
    text-align:center;
    margin-bottom:56px;
  }
.saledeed-footer .ecosystem-heading h2 {
    margin:0;
    padding:0 8px;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(20px,3vw,36px);
    font-weight:400;
  }
.saledeed-footer .ecosystem-parent-wrap {
    display:flex;
    justify-content:center;
    position:relative;
    margin-bottom:0;
  }
.saledeed-footer .ecosystem-parent {
    position:relative;
    background:var(--navy);
    border:1px solid var(--gold);
    border-radius:16px;
    padding:20px 40px;
    z-index:10;
  }
.saledeed-footer .ecosystem-parent h3 {
    margin:0;
    text-align:center;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    font-weight:700;
  }
.saledeed-footer .ecosystem-parent .white {color:#fff}
.saledeed-footer .ecosystem-parent .gold {color:var(--gold)}
.saledeed-footer .ecosystem-parent-subtitle {
    margin:8px 0 0;
    text-align:center;
    font-size:13px;
    font-weight:500;
    color:var(--gray);
  }
.saledeed-footer .desktop-tree {
    position:relative;
    height:64px;
  }
.saledeed-footer .desktop-tree svg {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
.saledeed-footer .mobile-tree {display:none}
.saledeed-footer .ecosystem-children {
    position:relative;
  }
.saledeed-footer .ecosystem-grid {
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
  }
.saledeed-footer .ecosystem-card {
    display:block;
    border:1px solid rgba(255,255,255,.08);
    background:var(--navy-dark);
    border-radius:16px;
    padding:24px;
    text-align:center;
    transition:all .3s ease;
  }
.saledeed-footer .ecosystem-card:hover {
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 20px 35px rgba(0,0,0,.35);
  }
.saledeed-footer .ecosystem-icon {
    width:48px;
    height:48px;
    margin:0 auto 16px;
    border-radius:50%;
    background:rgba(232,160,32,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
  }
.saledeed-footer .ecosystem-icon svg {width:24px;height:24px}
.saledeed-footer .ecosystem-card h4 {
    margin:0;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
  }
.saledeed-footer .ecosystem-card:hover h4 {color:var(--gold)}
.saledeed-footer .ecosystem-card p {
    margin:8px 0 0;
    color:var(--gray);
    font-size:14px;
    line-height:1.35;
  }
.saledeed-footer .ecosystem-connector { display:none; }
@media(max-width:1023px) {
.saledeed-footer .ecosystem {
      padding:40px 16px 64px;
    }
.saledeed-footer .ecosystem-heading {margin-bottom:40px}
.saledeed-footer .desktop-tree {display:none}
.saledeed-footer .mobile-tree {
      display:block;
      width:100%;
      max-width:260px;
      height:32px;
      margin:0 auto;
    }
.saledeed-footer .ecosystem-children {
      min-height:0;
    }
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
.saledeed-footer .ecosystem-card {
      padding:16px;
      border-radius:12px;
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 2;
      width:calc(50% - 6px);
      margin:0 auto;
    }
.saledeed-footer .ecosystem-card h4 {font-size:16px}
.saledeed-footer .ecosystem-card p {font-size:12px}
.saledeed-footer .ecosystem-icon {
      width:44px;height:44px;margin-bottom:12px;
    }
.saledeed-footer .ecosystem-icon svg {width:22px;height:22px}
}
@media(min-width:640px) and (max-width:1023px) {
.saledeed-footer .ecosystem {
      padding:64px 24px 80px;
    }
.saledeed-footer .ecosystem-heading h2 {font-size:30px}
.saledeed-footer .ecosystem-heading {margin-bottom:40px}
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 1;
      width:100%;
    }
.saledeed-footer .ecosystem-card {padding:20px}
}
@media(max-width:639px) {
.saledeed-footer .ecosystem {
      padding:56px 16px 72px;
      background:var(--cream);
      border-top:1px solid var(--border-gold);
      border-bottom:1px solid #e5ddc9;
    }
.saledeed-footer .ecosystem-heading {margin-bottom:36px}
.saledeed-footer .ecosystem-heading h2 {
      color:var(--text-dark);
      font-family:'Poppins',sans-serif;
      font-weight:700;
    }
.saledeed-footer .ecosystem-parent {
      background:#fff;
      border:1.5px solid var(--gold);
      border-radius:18px;
      padding:22px 28px;
      box-shadow:0 4px 16px rgba(0,0,0,.04);
    }
.saledeed-footer .ecosystem-parent h3 {
      font-family:'Poppins',sans-serif;
      font-weight:800;
      font-size:24px;
    }
.saledeed-footer .ecosystem-parent .white {color:var(--text-dark)}
.saledeed-footer .ecosystem-parent-subtitle {color:#75705f}
.saledeed-footer .ecosystem-parent .gold {color:var(--gold-dark)}
.saledeed-footer .mobile-tree {max-width:371px;height:32px}
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(2,1fr);
      column-gap:16px;
      row-gap:0;
    }
.saledeed-footer .ecosystem-card {
      background:#fff;
      border:1px solid #e5ddc9;
      border-radius:18px;
      padding:22px 16px;
      box-shadow:0 4px 14px rgba(0,0,0,.05);
    }
.saledeed-footer .ecosystem-card:hover {
      border-color:var(--gold);
      box-shadow:0 12px 26px rgba(0,0,0,.08);
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 2;
      width:75%;
      margin:0 auto;
    }
.saledeed-footer .ecosystem-icon {
      width:52px;height:52px;margin-bottom:14px;
      background:rgba(232,160,32,.15);
      color:var(--gold-dark);
    }
.saledeed-footer .ecosystem-icon svg {width:24px;height:24px}
.saledeed-footer .ecosystem-card h4 {
      font-size:17px;
      color:var(--text-dark);
      font-family:'Poppins',sans-serif;
      font-weight:700;
    }
.saledeed-footer .ecosystem-card:hover h4 {color:var(--gold-dark)}
.saledeed-footer .ecosystem-card p {
      font-size:13px;
      color:#75705f;
      font-family:'Inter',sans-serif;
    }
.saledeed-footer .ecosystem-connector {
      display:block;
      grid-column:1 / -1;
      height:28px;
    }
.saledeed-footer .ecosystem-connector svg { width:100%; height:100%; display:block; }
}
/* Partner Network */
.saledeed-footer .partner-network {
    padding:64px 16px;
    background:var(--navy);
    border-top:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
    text-align:center;
  }
.saledeed-footer .partner-network-inner {max-width:720px;margin:0 auto}
.saledeed-footer .partner-network-eyebrow {
    margin:0 0 14px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--gold-light);
  }
.saledeed-footer .partner-network-title {
    margin:0 0 16px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(24px,4vw,32px);
    font-weight:700;
    line-height:1.3;
    color:#fff;
  }
.saledeed-footer .partner-network-sub {margin:0 0 28px;font-size:15px;line-height:1.7;color:rgba(255,255,255,.75)}
.saledeed-footer .partner-network-tags {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:32px;
  }
.saledeed-footer .partner-network-tags span {
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    background:rgba(255,255,255,.05);
    font-size:13px;
    font-weight:600;
    color:var(--gold-light);
  }
.saledeed-footer .partner-network-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 40px;
    background:linear-gradient(90deg,var(--gold-dark),var(--gold));
    color:var(--navy);
    font-weight:700;
    font-size:15px;
    border-radius:10px;
    box-shadow:0 4px 14px rgba(221,177,100,0.25);
    transition:transform .2s ease,box-shadow .2s ease;
  }
.saledeed-footer .partner-network-cta:hover {transform:translateY(-1px);box-shadow:0 6px 18px rgba(221,177,100,0.35)}

/* Referral Network */
.saledeed-footer .referral-network {
    padding:64px 16px;
    background:var(--cream);
    text-align:center;
  }
.saledeed-footer .referral-network-inner {max-width:960px;margin:0 auto}
.saledeed-footer .referral-network-eyebrow {
    margin:0 0 16px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(36px,7vw,56px);
    font-weight:700;
    color:var(--text-dark);
  }
.saledeed-footer .referral-network-punchline {margin:14px 0 0;font-size:clamp(18px,2.6vw,24px);font-weight:700;color:var(--text-dark)}
.saledeed-footer .referral-network-tagline {margin:10px 0 0;font-size:15px;font-weight:700;color:var(--gold-dark)}
.saledeed-footer .referral-network-lead {margin:24px 0 0;font-size:16px;font-weight:600;color:var(--text-dark)}
.saledeed-footer .referral-network-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
    padding-top:40px;
    border-top:1px solid var(--border-gold);
    text-align:left;
  }
.saledeed-footer .referral-network-col h3 {
    margin:0 0 14px;
    font-size:19px;
    font-weight:700;
    color:var(--text-dark);
    line-height:1.4;
  }
.saledeed-footer .referral-network-col p {margin:0 0 20px;font-size:14px;line-height:1.7;color:#6b6153}
.saledeed-footer .referral-network-col p.referral-network-cta-line {
    margin:-4px 0 20px;
    font-size:16px;
    font-weight:800;
    line-height:1.5;
    color:var(--gold);
  }
.saledeed-footer .referral-network-tags {display:flex;flex-wrap:wrap;gap:10px}
.saledeed-footer .referral-network-tags span {
    padding:7px 16px;
    border:1px solid var(--border-gold);
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-col--actions {display:flex;flex-direction:column;justify-content:center}
.saledeed-footer .btn-referral {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    margin-bottom:14px;
    transition:all .2s ease;
  }
.saledeed-footer .btn-referral--solid {background:var(--gold);color:var(--navy)}
.saledeed-footer .btn-referral--solid:hover {background:var(--gold-dark)}
.saledeed-footer .btn-referral--outline {border:1px solid var(--border-gold);color:var(--gold-dark)}
.saledeed-footer .btn-referral--outline:hover {border-color:var(--gold-dark);color:var(--gold-dark)}
.saledeed-footer .referral-network-footer {margin-top:48px;text-align:center}
.saledeed-footer .referral-network-footer-eyebrow {
    margin:0 0 8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-footer-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(26px,5vw,38px);
    font-weight:700;
    color:var(--text-dark);
  }
@media(max-width:767px) {
.saledeed-footer .referral-network-grid {grid-template-columns:1fr;gap:32px}
}

@media(max-width:639px) {
.saledeed-footer .partner-network {padding:40px 16px}
.saledeed-footer .referral-network {padding:40px 16px}
}

.saledeed-footer .main {
    display:flex;
    justify-content:center;
    max-width:1280px;
    margin:auto;
    padding:48px 32px 56px;
  }
.saledeed-footer .brand {min-width:0;text-align:center}
.saledeed-footer .brand-wordmark {
    display:inline-flex;
    align-items:baseline;
    line-height:1;
  }
.saledeed-footer .brand-wordmark .sale {
    font:700 26px Georgia,"Times New Roman",serif;
    text-transform:uppercase;
    color:#fff;
  }
.saledeed-footer .brand-wordmark .com {
    color:var(--gold);
    font:700 24px Georgia,"Times New Roman",serif;
    text-transform:uppercase;
  }
.saledeed-footer .tagline {
    margin:8px 0 0;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
  }
.saledeed-footer .brand-unit {margin:10px 0 0;font-size:13px}
.saledeed-footer .brand-redefine {
    margin:8px 0 0;
    font-size:11px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
  }
.saledeed-footer .brand-redefine .white {color:#fff}
.saledeed-footer .footer-divider {
    width:100%;
    max-width:420px;
    height:1px;
    margin:24px auto;
    background:linear-gradient(to right,transparent,rgba(232,160,32,.4),transparent);
  }
.saledeed-footer .footer-nav {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px 32px;
  }
.saledeed-footer .footer-nav a {
    color:var(--gray);
    font-size:13px;
    font-weight:600;
    transition:color .2s ease;
  }
.saledeed-footer .footer-nav a:hover {color:var(--gold)}
.saledeed-footer .disclaimer {
    padding:16px;
    border-top:1px solid rgba(255,255,255,.05);
  }
.saledeed-footer .disclaimer-inner {
    max-width:896px;
    margin:auto;
    text-align:center;
    color:var(--gray);
    font-size:11px;
    line-height:1.6;
  }
.saledeed-footer .disclaimer-inner p {margin:0 0 8px}
.saledeed-footer .extra-disclaimer {
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.3s;
  }
.saledeed-footer .extra-disclaimer.open {max-height:300px;opacity:1}
.saledeed-footer .show-more {
    border:0;
    background:none;
    color:var(--gold);
    font-weight:700;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:4px;
  }
.saledeed-footer .chevron {transition:.3s;font-size:12px}
.saledeed-footer .show-more.open .chevron {transform:rotate(180deg)}
.saledeed-footer .footer-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding:18px 32px;
    background:#0a1628;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--gray);
    font-size:14px;
  }
.saledeed-footer .footer-bottom__copyright {white-space:nowrap}
.saledeed-footer .india {font-size:16px;font-weight:500;color:#fff}
.saledeed-footer .india .orange {color:#FF9933}
.saledeed-footer .india .green {color:#138808}
@media(max-width:639px) {
.saledeed-footer .footer-bottom {justify-content:center;text-align:center;padding:16px}
.saledeed-footer .main {padding:32px 16px 40px}
}

.whatsapp-float {
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
  z-index:999;
  transition:transform .2s ease;
}
.whatsapp-float:hover {transform:scale(1.08)}
@media(max-width:639px) {
.whatsapp-float {width:50px;height:50px;font-size:26px;right:16px;bottom:16px}
}

/* ════════════════════════════════════════════════════════════
   SHARED LEAD-CAPTURE MODAL
════════════════════════════════════════════════════════════ */
.lead-modal-overlay {
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(23,19,13,0.72);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease;
  }
.lead-modal-overlay[hidden] {display:none}
.lead-modal-overlay.open {opacity:1;visibility:visible}
body.modal-open {overflow:hidden}

.lead-modal {
    position:relative;
    width:100%;
    max-width:440px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:16px;
    padding:32px 28px 28px;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
    transform:translateY(24px) scale(0.97);
    opacity:0;
    transition:transform .25s ease, opacity .25s ease;
  }
.lead-modal-overlay.open .lead-modal {transform:translateY(0) scale(1);opacity:1}

.lead-modal-close {
    position:absolute;
    top:14px;
    right:14px;
    width:32px;
    height:32px;
    border:0;
    border-radius:50%;
    background:transparent;
    color:#8a8378;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s ease, color .2s ease;
  }
.lead-modal-close:hover {background:#f3efe6;color:#241f18}

.lead-modal-eyebrow {
    margin:0 0 8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gold-dark);
  }
.lead-modal-title {
    margin:0 0 10px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(20px,3vw,26px);
    font-weight:700;
    color:#241f18;
    line-height:1.25;
  }
.lead-modal-sub {
    margin:0 0 22px;
    font-size:14px;
    line-height:1.55;
    color:#6b6459;
  }

.lead-modal-form {
    display:grid;
    gap:14px;
  }
.lead-modal-form input,
.lead-modal-form select,
.lead-modal-form textarea {
    width:100%;
    padding:13px 16px;
    border:1px solid #e2ddd0;
    border-radius:10px;
    background:#faf8f3;
    color:#241f18;
    font-size:14px;
    font-family:inherit;
    outline:none;
    transition:border-color .2s ease, background .2s ease;
  }
.lead-modal-form select {appearance:auto}
.lead-modal-form textarea {resize:none}
.lead-modal-form input:focus,
.lead-modal-form select:focus,
.lead-modal-form textarea:focus {border-color:var(--gold);background:#fff}
.lead-modal-form button {
    margin-top:4px;
    padding:14px;
    border:0;
    border-radius:10px;
    background:var(--gold);
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.2px;
    cursor:pointer;
    transition:background .2s ease;
  }
.lead-modal-form button:hover {background:var(--gold-dark)}

@media(max-width:480px) {
  .lead-modal {padding:26px 20px 22px}
}
