/* ==========================================================================
   LIME Painting of North Tampa: Landing Page
   Brand colors: Lime #b8d544 / Green #739644 / White #ffffff / Silver #7a7c80 / Jet #3c3d3f
   ========================================================================== */

:root {
  --lime: #b8d544;
  --lime-dark: #a3c233;
  --green: #739644;
  --white: #ffffff;
  --silver: #7a7c80;
  --jet: #3c3d3f;
  --bg-soft: #f7f8f3;
  --border-soft: #e7e9e0;
  --shadow: 0 20px 40px rgba(60, 61, 63, 0.12);
  --radius: 14px;
  --font-head: 'Dosis', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--jet);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, legend {
  font-family: var(--font-head);
  color: var(--jet);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--silver); }

a { color: var(--green); text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 0.6em;
}

.eyebrow.center, .section-title.center, .section-sub.center { text-align: center; }
.section-cta { text-align: center; margin: 40px 0 0; }

.section-title { font-size: 2rem; }
.section-sub { max-width: 640px; }
.section-sub.center { margin-left: auto; margin-right: auto; }

.section { padding: 72px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--lime);
  color: var(--jet);
}
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(184, 213, 68, 0.45); }

.btn-secondary {
  background: var(--jet);
  color: var(--white);
}
.btn-secondary:hover { background: #2a2b2c; transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo { height: 44px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 20px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--jet);
}
.header-phone small { display: block; color: var(--silver); font-size: 0.72rem; }
.header-phone strong { font-family: var(--font-head); font-size: 1.05rem; }
.phone-icon { color: var(--green); display: flex; }
.phone-icon svg { width: 22px; height: 22px; }

.header-cta { padding: 12px 22px; font-size: 0.92rem; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, #e4edd2 0%, #f7faf0 45%, #ffffff 80%);
  padding: 56px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hero-copy h1 {
  font-size: 2.85rem;
  margin-bottom: 0.35em;
}

.hero-sub { font-size: 1.08rem; max-width: 560px; }

.hero-trust-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.hero-trust-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--jet);
  font-weight: 600;
}
.hero-trust-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.hero-rating { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--jet); }
.stars { color: var(--lime-dark); letter-spacing: 2px; }

/* Lead form card */
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  border-top: 5px solid var(--lime);
  padding: 28px;
  position: relative;
}

.lead-form-header { margin-bottom: 18px; }
.lead-form-header h2 { font-size: 1.4rem; margin-bottom: 12px; }
.lead-form-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--jet);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 12px;
}

.progress-dots { display: flex; gap: 8px; }
.dot { width: 28px; height: 6px; border-radius: 999px; background: var(--border-soft); transition: background 0.2s ease; }
.dot.active, .dot.done { background: var(--lime); }

.form-step { display: none; border: none; margin: 0; padding: 0; }
.form-step.active { display: block; animation: fadeIn 0.25s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step legend {
  font-size: 1.1rem;
  padding: 0;
  margin-bottom: 16px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.choice-grid-single { grid-template-columns: 1fr; }

.choice-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--jet);
  background: var(--bg-soft);
  border: 2px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice-btn:hover { border-color: var(--lime); background: #f1f5e3; }
.choice-btn.selected { border-color: var(--green); background: var(--lime); color: var(--jet); }

.back-link {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}
.back-link:hover { color: var(--green); }

.field-group { margin-bottom: 14px; }
.field-row { display: flex; gap: 12px; }
.field-row .field-group { flex: 1; }
.field-group-small { flex: 0 0 38%; }

.field-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--jet);
  margin-bottom: 6px;
}

.field-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--jet);
}
.field-group input:focus {
  outline: none;
  border-color: var(--lime);
}
.field-group input.invalid {
  border-color: #d64545;
}
.field-error {
  color: #d64545;
  font-size: 0.82rem;
  margin: 6px 0 0;
}

.form-alert {
  background: #fbeaea;
  border: 1px solid #d64545;
  color: #a33232;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 14px;
}

.consent-text {
  font-size: 0.76rem;
  color: var(--silver);
  margin-bottom: 16px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-success {
  text-align: center;
  padding: 20px 4px 6px;
}
.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--jet);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h2 { font-size: 1.5rem; }

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--jet);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-bar .stars { color: var(--lime); }

/* ===== Before / After ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.gallery-strip img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.gallery-strip img:hover { transform: scale(1.03); }

/* ===== Services ===== */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { color: var(--green); margin-bottom: 14px; }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ===== Why Us ===== */
.why-us-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: stretch;
}
.why-us-image { min-height: 360px; }
.why-us-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist { list-style: none; margin: 0 0 28px; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--jet);
}
.check {
  background: var(--lime);
  color: var(--jet);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Meet The Owner ===== */
.meet-owner-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.meet-owner-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  display: block;
}
.meet-owner-copy blockquote {
  margin: 0 0 18px;
  padding-left: 20px;
  border-left: 4px solid var(--lime);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--jet);
}
.meet-owner-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}

/* ===== BBB badge ===== */
.bbb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px auto 0;
  max-width: 420px;
  padding: 20px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.bbb-badge-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--green);
}
.bbb-badge-text { display: flex; flex-direction: column; text-align: left; }
.bbb-badge-text strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--jet); }
.bbb-badge-text span { font-size: 0.9rem; color: var(--silver); }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.process-step { text-align: center; }
.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--jet);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: 0.92rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-soft);
}
.testimonial-card .stars { display: block; margin-bottom: 12px; font-size: 1rem; }
.testimonial-card p:not(.testimonial-author) { color: var(--jet); font-style: italic; }
.testimonial-author { color: var(--silver); font-weight: 700; margin: 0; font-style: normal; }
.testimonial-author span { display: block; font-weight: 400; font-size: 0.82rem; color: var(--silver); }

/* ===== Service area ===== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.area-list span {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--jet);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--white);
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--jet);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  color: var(--green);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 14px 0 0; }

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--green) 0%, #5f7c37 100%);
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: 2rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta p { color: #e7efd5; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta-phone { display: block; margin-top: 16px; color: var(--white); font-weight: 700; text-decoration: underline; }

/* ===== Footer ===== */
.site-footer { background: var(--jet); color: #c9cacb; padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid #54565a;
}
.footer-logo { filter: brightness(0) invert(1); height: 40px; margin-bottom: 14px; }
.footer-tagline { color: var(--lime); font-family: var(--font-head); font-weight: 600; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col p { color: #c9cacb; margin-bottom: 8px; }
.footer-col a { color: #c9cacb; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { padding: 20px 0 28px; }
.footer-bottom p { color: #8c8e91; font-size: 0.82rem; margin: 0; }
.footer-credit { margin-top: 6px !important; }
.footer-credit a { color: #8c8e91; text-decoration: underline; }
.footer-credit a:hover { color: var(--lime); }

/* ===== Mobile sticky bar ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
}
.mobile-sticky-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.92rem; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image { order: 2; }
  .meet-owner-inner { grid-template-columns: 1fr; }
  .meet-owner-image { max-width: 320px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-phone .phone-text { display: none; }
  .header-cta { display: none; }
  .hero { padding: 28px 0 40px; }
  .hero-copy h1 { font-size: 1.65rem; margin-bottom: 0.3em; }
  .hero-copy .eyebrow { margin-bottom: 8px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 0.6em; }
  .hero-trust-list { display: none; }
  .section { padding: 52px 0; }
  .section-title { font-size: 1.6rem; }
  .gallery-strip { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
  .field-row { flex-direction: column; }
  .field-group-small { flex: 1; }
  .why-us-image { display: none; }
}
