/* =====================================================
   PROPERTY FAST OFFER — Main Stylesheet v1.0
   propertyfastoffer.com | Tucson, AZ
   ===================================================== */

:root {
  --green:       #2E7D32;
  --green-light: #43A047;
  --green-dark:  #1B5E20;
  --blue:        #1565C0;
  --blue-light:  #1976D2;
  --gold:        #F9A825;
  --gold-dark:   #F57F17;
  --white:       #FFFFFF;
  --offwhite:    #F8F9F4;
  --text:        #1A2A1A;
  --text-muted:  #4A5A4A;
  --border:      #D8E8D0;
  --footer-bg:   #0D1F0D;
  --shadow:      0 4px 24px rgba(30,70,30,0.12);
  --shadow-lg:   0 8px 40px rgba(30,70,30,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TOP BAR ===== */
.pfo-topbar {
  background: var(--green-dark);
  color: white;
  text-align: center;
  padding: 10px 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.pfo-topbar a { color: var(--gold); font-weight: 700; }

/* ===== NAV ===== */
.pfo-nav {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
}
.pfo-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.pfo-nav-logo { background: #fff; border-radius: 8px; padding: 4px 8px; }
.pfo-nav-logo img { height: 62px; width: auto; }
.pfo-nav-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pfo-nav-phone a { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--green-dark); letter-spacing: -0.5px; }
.pfo-nav-phone span { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.pfo-nav-cta {
  background: var(--green); color: white;
  padding: 12px 24px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s; border: none; cursor: pointer; white-space: nowrap;
  display: inline-block;
}
.pfo-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); color: white; }

/* ===== HERO ===== */
.pfo-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.pfo-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pfo-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,50,15,0.92) 45%, rgba(15,50,15,0.45) 100%);
}
.pfo-hero-content {
  position: relative; z-index: 2;
  padding: 4rem 2rem 4rem 4rem;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,168,37,0.15); border: 1px solid var(--gold);
  color: var(--gold); padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pfo-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: white; margin-bottom: 1rem;
}
.pfo-hero-content h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 1.8rem; max-width: 480px;
}
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.hero-bullet { display: flex; align-items: center; gap: 10px; color: white; font-size: 14px; font-weight: 600; }
.check-icon { color: var(--gold); flex-shrink: 0; font-size: 16px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white; padding: 16px 32px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(46,125,50,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,0.5); color: white; }
.btn-secondary {
  background: transparent; color: white; padding: 16px 28px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text); padding: 18px 38px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  border: none; cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(249,168,37,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,168,37,0.55); color: var(--text); }
.btn-outline-white {
  background: transparent; color: white; padding: 18px 32px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

/* ===== LEAD FORM ===== */
.pfo-hero-form-wrap { position: relative; z-index: 2; padding: 3rem 3rem 3rem 2rem; }
.pfo-hero-form {
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--green);
}
.form-title { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--green-dark); margin-bottom: 0.4rem; text-align: center; }
.form-sub { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; }
.form-sub strong { color: var(--green); }
.pfo-form-group { margin-bottom: 1rem; }
.pfo-form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.pfo-form-group input,
.pfo-form-group select,
.pfo-form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  color: var(--text); transition: border-color 0.2s;
  outline: none; background: #F8F9F4;
}
.pfo-form-group input:focus,
.pfo-form-group select:focus,
.pfo-form-group textarea:focus { border-color: var(--green); background: white; }
.pfo-form-group select option { background: white; }
.pfo-form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white; border: none; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 0.5rem; box-shadow: 0 4px 20px rgba(46,125,50,0.35);
}
.form-submit:hover { transform: translateY(-2px); }
.form-trust { display: flex; justify-content: center; gap: 16px; margin-top: 1rem; flex-wrap: wrap; }
.form-trust span { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* ===== TRUST STRIP ===== */
.pfo-trust-strip { background: #1B5E20 !important; padding: 1.2rem 2rem; }
.pfo-trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: white; }
.trust-icon { color: var(--gold); font-size: 18px; }
.trust-item span { font-size: 13px; font-weight: 600; letter-spacing: 0.3px; }

/* ===== SECTION COMMONS ===== */
.pfo-section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.pfo-section-bg { background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; color: var(--text); }
.section-title span { color: var(--green); }
.section-sub { color: var(--text-muted); line-height: 1.75; font-size: 0.97rem; }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { max-width: 600px; margin: 0.5rem auto 0; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { background: white; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-img { width: 100%; height: 200px; object-fit: cover; }
.step-body { padding: 1.8rem; }
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; color: white;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--green-dark); }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== STATS ===== */
.pfo-stats-bg { background: linear-gradient(135deg, #1B5E20, #1565C0) !important; padding: 4rem 2rem; }
.pfo-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item span:first-child { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.stat-item span:last-child { font-size: 13px; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; display: block; font-weight: 600; }

/* ===== SHOWCASE ===== */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.showcase-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); position: relative; transition: all 0.3s; }
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.showcase-card img { width: 100%; height: 280px; object-fit: cover; }
.showcase-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,50,15,0.9)); padding: 1.5rem 1.2rem 1rem; color: white; }
.showcase-label h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.showcase-label span { font-size: 12px; color: rgba(255,255,255,0.75); }
.showcase-badge { position: absolute; top: 14px; left: 14px; background: var(--green); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.benefit { background: white; border: 1.5px solid var(--border); border-radius: 14px; padding: 1.8rem; transition: all 0.3s; }
.benefit:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(46,125,50,0.2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.benefit h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--green-dark); }
.benefit p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== COMPARE TABLE ===== */
.compare-wrap { overflow-x: auto; margin-top: 1.5rem; }
.compare-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-wrap thead tr { background: var(--green-dark); color: white; }
.compare-wrap thead th { padding: 14px 20px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.compare-wrap thead th:first-child { border-radius: 12px 0 0 0; }
.compare-wrap thead th:last-child { border-radius: 0 12px 0 0; }
.compare-wrap tbody tr { border-bottom: 1px solid var(--border); }
.compare-wrap tbody tr:nth-child(even) { background: var(--offwhite); }
.compare-wrap tbody td { padding: 14px 20px; color: var(--text-muted); }
.compare-wrap tbody td:first-child { font-weight: 600; color: var(--text); }
.highlight-col { background: rgba(46,125,50,0.06) !important; font-weight: 700; color: var(--green-dark) !important; }
.check { color: var(--green); font-weight: 700; font-size: 16px; }
.cross { color: #E53935; font-weight: 700; font-size: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; color: var(--green); opacity: 0.15; font-family: 'Montserrat', sans-serif; font-weight: 900; line-height: 1; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-light), var(--green-dark)); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; color: white; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 14px; color: var(--text); }
.author-tag { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: 0.5px; }

/* ===== SERVICE AREAS ===== */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; justify-content: center; }
.area { background: white; border: 1.5px solid var(--border); border-radius: 100px; padding: 10px 22px; font-size: 13px; font-weight: 600; color: var(--green-dark); transition: all 0.2s; cursor: default; }
.area:hover { background: var(--green); color: white; border-color: var(--green); }

/* ===== BOTTOM CTA ===== */
.pfo-bottom-cta { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%); padding: 5rem 2rem; text-align: center; }
.pfo-bottom-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 0.8rem; }
.pfo-bottom-cta h2 span { color: var(--gold); }
.pfo-bottom-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; }
.bottom-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.pfo-footer { background: var(--footer-bg); padding: 3rem 2rem 1.5rem; }
.pfo-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.8; margin: 1rem 0; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.pfo-footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); }
.pfo-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 1rem; text-align: center; max-width: 1100px; margin-left: auto; margin-right: auto; line-height: 1.6; padding: 0 1rem; }

/* ===== CONTACT FORM 7 OVERRIDES ===== */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  color: var(--text); background: #F8F9F4;
  transition: border-color 0.2s; outline: none;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-select:focus { border-color: var(--green); background: white; }
.wpcf7-form input[type="submit"] {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white; border: none; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 0.5rem;
}
.wpcf7-form input[type="submit"]:hover { opacity: 0.92; }
.wpcf7-response-output { border-radius: 8px !important; margin-top: 1rem !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .pfo-hero { grid-template-columns: 1fr; min-height: auto; }
  .pfo-hero-content { padding: 3rem 1.5rem 1.5rem; }
  .pfo-hero-form-wrap { padding: 1.5rem; }
  .steps-grid, .benefits-grid, .testimonials-grid, .showcase-grid { grid-template-columns: 1fr 1fr; }
  .pfo-stats-inner { grid-template-columns: 1fr 1fr; }
  .pfo-footer-inner { grid-template-columns: 1fr 1fr; }
  .pfo-trust-inner { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .steps-grid, .benefits-grid, .testimonials-grid, .showcase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pfo-nav-phone a { font-size: 1.1rem; }
  .pfo-footer-inner { grid-template-columns: 1fr; }
  .pfo-stats-inner { grid-template-columns: 1fr 1fr; }
}