/* The Sue Patti Group | thesuepattigroup.ai
   Built by Dr. Data Decision Intelligence LLC */

:root {
  --navy: #2D3E50;
  --navy-dark: #1E2E3D;
  --teal: #3ABFBF;
  --teal-light: #C8E8E5;
  --teal-pale: #E8F6F5;
  --coral: #E8604A;
  --gold: #F5C842;
  --gold-dark: #C29A20;
  --cream: #F0EDE8;
  --slate: #5A6A7A;
  --border: #DDD8D2;
  --green: #27AE60;
  --light: #F7F5F2;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3A3A3A;
  background: var(--white);
}

h1, h2, h3, h4, h5 { font-family: 'Trebuchet MS', Arial, sans-serif; color: var(--navy); }
h1 { font-size: 48px; line-height: 1.1; }
h2 { font-size: 34px; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 22px; margin-bottom: 10px; }
h4 { font-size: 18px; margin-bottom: 8px; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== DEMO BANNER ===== */
.demo-banner {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
.demo-banner a { color: var(--navy); text-decoration: underline; margin-left: 8px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--teal-light); }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Trebuchet MS';
  font-weight: bold;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo span {
  color: var(--teal);
  font-weight: normal;
  font-size: 13px;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
}
.nav-links a.active { color: var(--teal); }
.btn-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}
.btn-cta:hover { background: var(--navy); text-decoration: none !important; }
.btn-cta.gold { background: var(--gold); color: var(--navy) !important; }
.btn-cta.gold:hover { background: var(--navy); color: var(--white) !important; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(58,191,191,0.15) 100%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--white);
  font-size: 52px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--gold); }
.hero-tagline {
  font-family: 'Trebuchet MS';
  font-size: 22px;
  color: var(--teal-light);
  margin: 8px 0 16px;
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin: 16px 0 28px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat strong {
  color: var(--gold);
  font-size: 28px;
  font-family: 'Trebuchet MS';
  display: block;
}
.hero-stat span {
  font-size: 12px;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-card {
  background: var(--white);
  color: #3A3A3A;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.chatbot-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chatbot-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.chatbot-card .sub {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 16px;
}
.chatbot-step h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
}
.chatbot-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chatbot-options button {
  background: var(--light);
  border: 1.5px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  color: var(--navy);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s;
}
.chatbot-options button:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}
.chatbot-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--light);
}
.chatbot-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.chatbot-progress span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.chatbot-progress span.done { background: var(--teal); }
.chatbot-progress span.current { background: var(--navy); }
.chatbot-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 7px;
  font-family: inherit;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
}
.chatbot-submit:hover { background: var(--navy); }
.chatbot-success {
  text-align: center;
  padding: 12px 0;
}
.chatbot-success h4 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 8px;
}
.three-promise {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  padding: 12px 14px;
  border-radius: 6px;
  margin: 14px 0;
  text-align: left;
}
.three-promise-item {
  font-size: 13px;
  color: var(--navy);
  margin: 6px 0;
  display: flex;
  align-items: start;
  gap: 8px;
}
.three-promise-item::before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
  flex-shrink: 0;
}
.captured-notice {
  background: #E8F8F0;
  border: 1px solid var(--green);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--green);
  margin-top: 10px;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section.gray { background: var(--light); }
.section.cream { background: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .eyebrow {
  font-family: 'Trebuchet MS';
  font-size: 13px;
  color: var(--teal);
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header h2 { font-size: 36px; }
.section-header p {
  font-size: 17px;
  color: var(--slate);
  max-width: 720px;
  margin: 12px auto 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.sb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sb-num {
  font-family: 'Trebuchet MS';
  font-size: 38px;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
}
.sb-label {
  font-size: 13px;
  color: var(--slate);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sb-stars { color: var(--gold); font-size: 24px; letter-spacing: 2px; }

/* ===== SCROLLING RIBBONS ===== */
.scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.scroller-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 60s linear infinite;
  width: max-content;
}
.scroller:hover .scroller-track { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sale-card {
  flex: 0 0 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.sale-photo {
  height: 160px;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 48px;
  font-family: 'Trebuchet MS';
  position: relative;
}
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--slate);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.sale-badge.sold { background: var(--coral); }
.sale-badge.active { background: var(--green); }
.sale-body { padding: 14px 16px; }
.sale-price {
  font-family: 'Trebuchet MS';
  font-size: 22px;
  font-weight: bold;
  color: var(--navy);
}
.sale-addr {
  font-size: 13px;
  color: var(--slate);
  margin: 4px 0 10px;
}
.sale-specs {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--slate);
}
.sale-specs strong { color: var(--navy); }

.review-card {
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  position: relative;
}
.review-card .stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 14px;
  color: #3A3A3A;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  min-height: 70px;
}
.review-card .reviewer {
  font-size: 12px;
  color: var(--slate);
  font-weight: bold;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.neighborhood-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.neighborhood-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(58,191,191,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.neighborhood-card h3 { color: var(--navy); margin-bottom: 4px; font-size: 22px; }
.neighborhood-card .median { color: var(--teal); font-weight: bold; font-size: 14px; }
.neighborhood-card .desc {
  font-size: 13px;
  color: var(--slate);
  margin: 12px 0;
  line-height: 1.5;
}
.neighborhood-card .stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.neighborhood-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-weight: bold;
  font-size: 13px;
}

/* ===== AGENT CARDS ===== */
.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: start;
}
.agent-photo {
  width: 110px;
  height: 110px;
  border-radius: 55px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Trebuchet MS';
  font-size: 44px;
  font-weight: bold;
  flex-shrink: 0;
}
.agent-info h3 { font-size: 22px; margin-bottom: 2px; }
.agent-role {
  color: var(--teal);
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.agent-bio {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p {
  color: var(--teal-light);
  font-size: 18px;
  max-width: 620px;
  margin: 12px auto 28px;
}
.cta-section .btn-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 16px;
  padding: 14px 32px;
}
.cta-section .btn-cta:hover { background: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--teal-light);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 12px; }
.footer a {
  color: var(--teal-light);
  display: block;
  padding: 4px 0;
  font-size: 13px;
}
.footer-brand {
  font-family: 'Trebuchet MS';
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand span { color: var(--gold); font-size: 13px; display: block; margin-top: 2px; font-weight: normal; }
.footer-tag {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
}
.footer-domain {
  font-family: 'Trebuchet MS';
  color: var(--gold);
  font-size: 18px;
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.footer-future {
  margin-top: 12px;
  font-size: 11px;
  color: var(--slate);
  font-style: italic;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 40px;
}
.page-hero h1 {
  color: var(--white);
  font-size: 38px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--teal-light); }
.page-hero .lede {
  color: var(--teal-light);
  font-size: 17px;
  margin-top: 10px;
  max-width: 720px;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 10px;
  padding: 24px;
}
.partner-card.tj { border-top-color: var(--teal); }
.partner-card.lauren { border-top-color: var(--navy); }
.partner-card h3 { font-size: 18px; margin-bottom: 4px; }
.partner-card .role {
  color: var(--teal);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.partner-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== HOME VALUATION FORM ===== */
.valuation-form {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  max-width: 580px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row input, .form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero { padding: 48px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 38px; }
  .agents-grid { grid-template-columns: 1fr; }
  .agent-card { flex-direction: column; text-align: center; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section { padding: 48px 0; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .sb-num { font-size: 28px; }
}
