/* ============================================
   Barone Cleaning Co. — styles.css
   (color variable names kept as --green* for
   minimal-risk editing; values are now blue)
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --card: #171717;
  --card-border: rgba(16, 96, 196, 0.32);
  --green: #1060c4;
  --green-light: #4f9dff;
  --green-dark: #0b4a94;
  --white: #ffffff;
  --text-muted: #b7b7b7;
  --text-dim: #8a8a8a;
  --radius: 14px;
  --max-width: 1180px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.15;
}

section {
  padding: 88px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eyebrow {
  display: inline-block;
  color: var(--green-light);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p { color: var(--text-muted); }

.accent { color: var(--green); }
.italic-accent {
  color: var(--green);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #0a0a0a;
  box-shadow: 0 8px 22px rgba(16, 96, 196, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(16, 96, 196, 0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-light);
}
.btn-outline:hover { background: rgba(16, 96, 196, 0.1); }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 96, 196, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}
.brand img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--green-light); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 80px;
  background:
    radial-gradient(circle at 15% 0%, rgba(16, 96, 196, 0.14), transparent 45%),
    radial-gradient(circle at 100% 30%, rgba(16, 96, 196, 0.08), transparent 40%),
    var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--green);
  color: var(--green-light);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-style: italic;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 20px;
  max-width: 320px;
}
.hero-services li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-services .ic { color: var(--green); font-size: 1.05rem; }

/* Quote form card */
.quote-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.quote-card h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.quote-card .quote-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

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

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea { resize: vertical; min-height: 90px; }

.file-field {
  border: 1.5px dashed rgba(16, 96, 196, 0.4);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  background: rgba(16, 96, 196, 0.04);
}
.file-field label {
  margin-bottom: 8px;
}
.file-field input[type="file"] {
  width: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.file-hint {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .big-check {
  font-size: 2.6rem;
  color: var(--green-light);
  margin-bottom: 10px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}
.service-card .ic {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

.includes-box {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
}
.includes-box h3 {
  text-align: center;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 22px;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}
.includes-grid li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.includes-grid .ic { color: var(--green); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 12px 26px rgba(16,96,196,0.18);
}
.price-card .room-ic { font-size: 1.6rem; margin-bottom: 10px; }
.price-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
}
.price-card .price small {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}
.price-card .starting {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.price-card .room-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.addons-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
.addon-table {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.94rem;
  color: var(--text-muted);
}
.addon-row:last-child { border-bottom: none; }
.addon-row .amt { color: var(--green-light); font-weight: 700; }

.notice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.notice-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--card);
}
.notice-card h4 {
  color: var(--green-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice-card p, .notice-card li { color: var(--text-muted); font-size: 0.92rem; }
.notice-card ul { padding-left: 18px; margin: 8px 0 0; }

.pricing-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 26px;
}

/* ---------- Reviews ---------- */
.stars {
  text-align: center;
  color: var(--green-light);
  font-size: 1.6rem;
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
}
.review-card .rstars { color: var(--green-light); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p.quote {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 78px;
}
.review-card .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.review-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0a0a;
  font-size: 0.9rem;
}
.review-card .who strong { display: block; font-size: 0.92rem; }
.review-card .who span { display: block; font-size: 0.78rem; color: var(--text-dim); }

.reviews-cta {
  text-align: center;
  margin-top: 36px;
}
.placeholder-flag {
  display: inline-block;
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--text-dim);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 16px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-logo-wrap {
  background: radial-gradient(circle, rgba(16,96,196,0.12), transparent 70%);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap img { max-width: 320px; }

.about-copy h2 { font-size: 1.9rem; font-style: italic; }
.about-copy p { color: var(--text-muted); }

.about-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.about-points .pt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-points .ic {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-points strong { display: block; margin-bottom: 2px; }
.about-points span { color: var(--text-muted); font-size: 0.92rem; }

.edit-flag {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-dim);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-block;
}

/* ---------- Contact / Footer ---------- */
.contact-section { border-bottom: none; padding-bottom: 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-card {
  background: linear-gradient(135deg, rgba(16,96,196,0.14), rgba(16,96,196,0.02));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-card h2 { font-style: italic; font-size: 1.9rem; }
.contact-card p { color: var(--text-muted); margin-bottom: 26px; }

.contact-methods { display: grid; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-method .ic {
  font-size: 1.3rem;
  color: var(--green-light);
}
.contact-method strong { display: block; font-size: 0.95rem; }
.contact-method span { display: block; font-size: 0.82rem; color: var(--text-dim); }

.contact-map-note {
  text-align: center;
}
.contact-map-note .badge-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--green);
  color: var(--green-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.site-footer {
  background: var(--bg-alt);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.footer-brand img { height: 34px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-social a:hover { color: var(--green-light); }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(16,96,196,0.3);
  padding: 10px 14px;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 0.88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .addons-columns { grid-template-columns: 1fr; }
  .notice-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-logo-wrap { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(16,96,196,0.25);
  }
  section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .hero-services { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 66px; }
}
