/* =============================================
   DESERT CLEAN – STYLESHEET v2
   ============================================= */

:root {
  --sand:        #C8A96E;
  --sage:        #4A6741;
  --sage-dark:   #344B2F;
  --terra:       #B85C38;
  --charcoal:    #2C2C2C;
  --light:       #F7F4EF;
  --white:       #FFFFFF;
  --gray:        #6B6B6B;
  --border:      #DDD5C8;
  --ph-bg:       #E8E2D8;
  --ph-text:     #9A8F82;
  --success-bg:  #e8f5e9;
  --success-bd:  #a5d6a7;
  --success-txt: #2e7d32;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1160px;
  --radius: 6px;
  --shadow: 0 2px 14px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ---- UTILS ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-light { background: var(--light); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .8rem; font-weight: 700; color: var(--terra); margin-bottom: 8px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.2rem);
  line-height: 1.15; color: var(--charcoal); margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2.1rem);
  color: var(--charcoal); margin-bottom: 14px;
}
h3 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
p { margin-bottom: 14px; color: var(--gray); }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }
a { color: var(--sage); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-dark); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all .2s; text-align: center; white-space: nowrap;
}
.btn-primary  { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }
.btn-terra    { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-terra:hover { background: #9e4f30; border-color: #9e4f30; color: var(--white); }
.btn-outline  { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-white    { background: var(--white); color: var(--sage-dark); border-color: var(--white); }
.btn-white:hover { background: var(--light); color: var(--sage-dark); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-lg  { padding: 15px 30px; font-size: 1.05rem; }
.btn-sm  { padding: 8px 16px; font-size: .875rem; }
.btn-full { width: 100%; display: block; }
.btn-call { font-size: 1.1rem; padding: 16px 28px; }

/* ---- PHOTO PLACEHOLDERS ---- */
.photo-placeholder {
  background: var(--ph-bg); border: 2px dashed var(--border);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; text-align: center;
  color: var(--ph-text); font-size: .85rem; font-weight: 600; line-height: 1.5;
}
.photo-placeholder small { display:block; font-weight:400; font-size:.75rem; margin-top:4px; opacity:.75; }
.photo-placeholder.large   { height: 380px; width: 100%; }
.photo-placeholder.medium  { height: 240px; width: 100%; }
.photo-placeholder.svc     { height: 200px; }
.photo-placeholder.team-ph { height: 220px; width: 100%; }
.photo-placeholder.map-ph  { height: 380px; width: 100%; }

/* =============================================
   STICKY TOP BAR
   ============================================= */
.top-bar {
  background: var(--sage-dark);
  padding: 8px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.top-bar a { color: var(--sand); font-weight: 700; }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 14px; align-items: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 82px; }
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 68px; width: auto; }
.logo-fallback { font-family: var(--font-display); font-size: 1.4rem; font-weight: bold; color: var(--sage); }
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a {
  color: var(--charcoal); font-weight: 600; font-size: .95rem;
  padding: 4px 0; border-bottom: 2px solid transparent; transition: all .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--sage); border-bottom-color: var(--sage); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--charcoal); margin-left: auto;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--border); padding: 12px 24px 20px;
}
.mobile-nav a { padding: 10px 0; font-weight: 600; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; text-align: center; }
.mobile-nav.open { display: flex; }

/* =============================================
   STICKY MOBILE CALL BAR
   ============================================= */
.sticky-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--sage-dark);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.sticky-call-bar a {
  flex: 1; text-align: center; padding: 13px 10px;
  border-radius: var(--radius); font-weight: 700; font-size: .9rem;
}
@media (max-width: 700px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 80px 0; color: var(--white);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text .eyebrow { color: var(--sand); }
.hero-text h1 { color: var(--white); font-size: clamp(2.2rem,5vw,3.5rem); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600;
}
.trust-badge span.icon { font-size: 1rem; }
.hero-image { border-color: rgba(255,255,255,.3); }

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip { background: var(--charcoal); padding: 22px 0; }
.strip-label {
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; font-weight: 700; color: var(--sand); margin-bottom: 10px;
}
.strip-list { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.strip-list span {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600;
  padding-left: 14px; position: relative;
}
.strip-list span::before {
  content:'✦'; position:absolute; left:0; color:var(--sand); font-size:.6em; top:3px;
}

/* =============================================
   WHY SWITCH SECTION
   ============================================= */
.why-switch {
  background: var(--terra); padding: 64px 0; color: var(--white);
}
.why-switch .section-header h2 { color: var(--white); }
.why-switch .section-header p  { color: rgba(255,255,255,.85); }
.switch-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px;
}
.switch-card {
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
}
.switch-card .big-icon { font-size: 2.2rem; margin-bottom: 10px; }
.switch-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.switch-card p  { color: rgba(255,255,255,.82); font-size: .88rem; margin: 0; }

/* =============================================
   CARDS / WHY CHOOSE US
   ============================================= */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
}
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }

/* =============================================
   PHOTO GRID
   ============================================= */
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* =============================================
   TWO COLUMN
   ============================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse .col-image { order: -1; }

/* =============================================
   SERVICE LIST
   ============================================= */
.service-list li {
  padding: 7px 0 7px 22px; position: relative;
  color: var(--gray); border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content:'✓'; position:absolute; left:0; color:var(--sage); font-weight:700; }

/* =============================================
   SERVICES DETAIL GRID (services.html)
   ============================================= */
.services-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 28px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.service-card-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column;
}
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p  { flex: 1; }
.service-card-body .btn { margin-top: 14px; align-self: flex-start; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
}
.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: italic; color: var(--charcoal); margin-bottom: 16px;
  font-size: .95rem; line-height: 1.6;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.reviewer { font-weight: 700; font-size: .85rem; color: var(--gray); }
.reviewer span { display: block; font-weight: 400; font-size: .8rem; }
.reviews-note {
  text-align: center; margin-top: 32px; font-size: .88rem; color: var(--gray);
}
.reviews-note a { font-weight: 700; }

/* =============================================
   TEAM (about.html)
   ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 28px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.team-card-body { padding: 20px; }
.team-title {
  text-transform: uppercase; letter-spacing: .06em;
  font-size: .75rem; font-weight: 700; color: var(--terra); margin-bottom: 10px;
}
.team-contact { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--sage); }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero { background: var(--sage-dark); padding: 56px 0; color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 600px; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--sand); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band { background: var(--sage-dark); padding: 52px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 6px; }
.cta-inner p  { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions  { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   CONTACT (contact.html)
   ============================================= */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: none; margin-bottom: 0; }
.contact-block h3 {
  font-size: .9rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--terra); margin-bottom: 6px;
}
.contact-block p  { margin-bottom: 4px; }
.contact-block a  { color: var(--sage); font-weight: 600; }
.team-contact-list { display: flex; flex-direction: column; gap: 12px; }
.team-contact-item { font-size: .9rem; }
.team-contact-item a { color: var(--sage); font-weight: 600; }

.social-link-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1877F2; color: white !important;
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; transition: opacity .2s;
}
.social-link-lg:hover { opacity: .88; color: white; }

/* ---- FORM ---- */
.quote-form-wrap {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
}
.quote-form-wrap h2 { margin-bottom: 8px; }
.form-intro { font-size: .95rem; color: var(--gray); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .875rem; margin-bottom: 6px; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--white); color: var(--charcoal); transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--sage); }
.form-note { font-size: .78rem; color: var(--ph-text); text-align: center; margin-top: 10px; }
.form-success {
  background: var(--success-bg); border: 1px solid var(--success-bd);
  border-radius: var(--radius); padding: 20px; text-align: center;
  font-weight: 700; color: var(--success-txt); font-size: 1.05rem;
}
.map-section { padding: 0 0 56px; }

/* ---- STATS ROW ---- */
.stat-row { display:flex; gap:32px; margin-top:28px; flex-wrap:wrap; }
.stat-item { text-align:center; }
.stat-num { font-family:var(--font-display); font-size:2.4rem; font-weight:700; color:var(--sage); line-height:1; }
.stat-label { font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color:var(--gray); margin-top:4px; }

/* =============================================
   SEO LANDING PAGE (tucson-office-cleaning.html)
   ============================================= */
.lp-hero {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 72px 0; color: var(--white);
}
.lp-hero h1 { color: var(--white); font-size: clamp(1.9rem,4vw,3rem); }
.lp-hero .eyebrow { color: var(--sand); }
.lp-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.faq { background: var(--light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; font-size: 1rem; color: var(--charcoal); margin-bottom: 8px; }
.faq-a { color: var(--gray); font-size: .95rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.8); padding: 52px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
  gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 56px; width: auto; margin-bottom: 12px; background: white; padding: 6px 14px; border-radius: 6px; display: inline-block; }
.footer-tagline { font-style: italic; font-size: .9rem; margin-bottom: 4px; }
.footer-since { font-size: .8rem; opacity: .65; }
.footer-col h4 {
  color: var(--sand); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-col ul li a:hover { color: var(--sand); }
.footer-col p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--sand); }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75) !important; font-size: .9rem; font-weight: 600; transition: color .2s;
}
.social-link:hover { color: var(--sand) !important; }
.footer-bottom { text-align: center; padding: 16px 0; font-size: .8rem; color: rgba(255,255,255,.4); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse .col-image { order: 0; }
  .photo-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .top-bar-left { display: none; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 24px 20px; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .page-hero { padding: 36px 0; }
  .strip-list { gap: 8px 16px; }
  .switch-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
  .lp-hero { padding: 48px 0; }
}

/* =============================================
   BEFORE / AFTER SECTION
   ============================================= */
.before-after-section { background: var(--charcoal); padding: 72px 0; }
.before-after-section .section-header h2 { color: var(--white); }
.before-after-section .section-header p  { color: rgba(255,255,255,.75); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.ba-pair {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.ba-pair .ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #000;
}
.ba-pair .ba-imgs img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-pair .ba-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.ba-label {
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.ba-label.before { background: #5a2a1a; color: #f4a990; }
.ba-label.after  { background: var(--sage-dark); color: var(--sand); }
.ba-caption {
  background: #1e1e1e;
  padding: 12px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  text-align: center;
}

/* No-headshot team card style */
.team-card-nophoto { background: var(--light); }
.team-initials {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
}
.team-initials span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 4px;
}

@media (max-width: 700px) {
  .ba-pair .ba-imgs img { height: 160px; }
  .before-after-section { padding: 48px 0; }
}
