/* ============================================================
   Sweet Tea Properties — Main Stylesheet
   Colors: #F5C800 (yellow), #E0A800 (gold), #000 (black), #FAFAF7 (off-white)
   Fonts: Montserrat (headings/CTAs), Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Nunito:wght@400;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #000; text-decoration: none; }
a:hover { color: #E0A800; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--gray { background: #FAFAF7; }
.section--black { background: #000; color: #fff; }
.section--black h1,
.section--black h2,
.section--black h3 { color: #fff; }
.section--yellow { background: #F5C800; }

.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__header h2 { font-size: 2rem; margin-bottom: 12px; }
.section__header p { font-size: 1.1rem; color: #444; max-width: 600px; margin: 0 auto; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #F5C800;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}

.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
  transition: color 0.15s;
}
.header-nav a:hover { color: #E0A800; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.2s;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
  text-align: center;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: #F5C800;
  color: #000;
}
.btn--primary:hover { background: #E0A800; color: #000; }

.btn--black {
  background: #000;
  color: #fff;
}
.btn--black:hover { background: #222; color: #fff; }

.btn--outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}
.btn--outline:hover { background: #000; color: #fff; }

.btn--lg { font-size: 1.1rem; padding: 18px 36px; }
.btn--sm { font-size: 0.875rem; padding: 10px 20px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 580px;
  color: #fff;
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-content-panel {
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 36px 32px;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-content h1 span { color: #F5C800; }

.hero-content p {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-trust span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #F5C800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before { content: '✓'; }

/* ── Lead Form Card ───────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: #000;
}
.step-indicator {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-back {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #F5C800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-back:hover { text-decoration: underline; }

.form-microcopy {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: 'Nunito', sans-serif;
}

/* Mobile sticky bottom CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  padding: 10px 12px;
  z-index: 999;
  border-top: 2px solid #F5C800;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  gap: 10px;
}
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-sticky-cta .sticky-call {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.mobile-sticky-cta .sticky-offer {
  background: #F5C800;
  color: #000;
}

.form-card .form-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

.form-group { margin-bottom: 8px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #000;
  background: #fff;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F5C800;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F5C800;
}
.form-checkbox label {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}
.form-checkbox label a { color: #000; text-decoration: underline; }

.form-submit { width: 100%; margin-top: 6px; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success h3 { color: #000; margin-bottom: 8px; }
.form-success p { color: #555; font-size: 0.95rem; }
.form-error-msg {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 8px;
  text-align: center;
}

/* ── How It Works Steps ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: steps;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #F5C800;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: #F5C800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  color: #000;
}

.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: #555; }

/* ── Value Props / Icon List ──────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #F5C800;
}

/* value-icon removed — typography carries the card */

.value-item h4 { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: #000; letter-spacing: -0.01em; }
.value-item p { font-size: 0.95rem; color: #444; margin: 0; line-height: 1.55; }

/* ── Pull-quote testimonial (immediately below hero) ──────── */
.pullquote {
  background: #FAFAF7;
  padding: 56px 24px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.pullquote-stars {
  color: #F5C800;
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.pullquote blockquote {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #222;
  font-style: italic;
  margin: 0 auto 18px;
  max-width: 800px;
  font-weight: 400;
}
.pullquote cite {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  color: #000;
}
.pullquote-meta {
  color: #888;
  font-weight: 400;
  font-size: 0.85rem;
}

/* ── Situation Cards (Who We Help) ────────────────────────── */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.situation-card {
  background: #fff;
  border: 1px solid #eee;
  border-left: 3px solid #F5C800;
  border-radius: 4px;
  padding: 24px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.situation-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.situation-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  letter-spacing: -0.01em;
}
.situation-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ── Honest Math ──────────────────────────────────────────── */
.honest-math {
  max-width: 980px;
  margin: 0 auto;
}
.honest-math-lead {
  text-align: center;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 32px;
}
.honest-math-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.honest-math-col {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 10px;
  padding: 28px 24px;
}
.honest-math-col--highlight {
  border-color: #F5C800;
  border-width: 2.5px;
  background: #fffef5;
}
.honest-math-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.honest-math-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.honest-math-col li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}
.honest-math-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #999;
}
.honest-math-col--highlight li::before {
  content: '✓';
  color: #F5C800;
  font-weight: 700;
}
.honest-math-bottom {
  text-align: center;
  font-size: 1.05rem;
  color: #222;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Testimonials ─────────────────────────────────────────── */
.video-embed {
  position: relative;
  max-width: 640px;
  margin: 0 auto 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-caption {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin: -28px auto 32px;
  max-width: 640px;
}
.video-caption strong { color: #000; font-weight: 700; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid #F5C800;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.testimonial-stars {
  color: #F5C800;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial p {
  font-style: italic;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
}
.testimonial-location { font-size: 0.8rem; color: #888; font-weight: 400; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: #F5C800;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Comparison Table ─────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare-table th {
  background: #000;
  color: #F5C800;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid #eee; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #FAFAF7; }
.compare-table .check { color: #2e7d32; font-weight: 700; }
.compare-table .cross { color: #c62828; font-weight: 700; }
.compare-table .highlight td { background: #fffbe6 !important; font-weight: 600; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item:first-child { border-top: 1px solid #e5e5e5; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #000;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #F5C800;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #444;
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── City Pages ───────────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.city-link {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}
.city-link:hover {
  border-color: #F5C800;
  background: #fffbe6;
  color: #000;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: #888;
}
.breadcrumb a { color: #888; text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: #000;
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 { font-size: 2.2rem; color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: #F5C800; }
.page-hero p { color: #bbb; font-size: 1.05rem; max-width: 600px; }

/* ── Inline CTA ───────────────────────────────────────────── */
.inline-cta {
  background: #FAFAF7;
  border-left: 5px solid #F5C800;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
}
.inline-cta p { font-size: 1.05rem; font-weight: 600; margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #000;
  color: #fff;
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { color: #aaa; font-size: 0.9rem; line-height: 1.6; }

.footer-nav h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5C800;
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: #aaa; font-size: 0.9rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; }

.footer-contact p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a { color: #F5C800; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: #666; font-size: 0.82rem; }
.footer-bottom a { color: #666; text-decoration: underline; }
.footer-bottom a:hover { color: #aaa; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-yellow { color: #F5C800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }

/* ── Schema / hidden ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-panel { display: none; }
  .hero-content-panel { padding: 40px 24px; }
  .form-card { max-width: 480px; margin: 0 auto; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .steps { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .honest-math-grid { grid-template-columns: 1fr; }
  .pullquote blockquote { font-size: 1.1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-content h1 { font-size: 2rem; }
  .inline-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 1.7rem; }
  .situation-grid { grid-template-columns: 1fr; }
  .section__header h2 { font-size: 1.5rem; }
}

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
}
.mobile-nav .btn { margin-top: 16px; width: 100%; display: block; text-align: center; }
