/* =============================================
   PSQP — Puget Sound Quality Painting
   Shared Stylesheet — All Pages
   Colors: Orange #F47920 | Blue #53AFC5 | Navy #2B3990
   ============================================= */

:root {
  --orange: #F47920;
  --blue:   #53AFC5;
  --navy:   #2B3990;
  --dark:   #0f0f0f;
  --dark2:  #1a1a1a;
  --gray:   #f6f6f4;
  --text:   #1a1a1a;
  --muted:  #666;
  --white:  #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── FLOAT CALL ── */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 13px 22px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(244,121,32,0.45);
  transition: transform 0.2s;
}
.float-call:hover { transform: scale(1.04); }
.float-call .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.85)} }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 1000; overflow: visible;
  background: var(--dark); border-bottom: 3px solid var(--orange);
  height: 64px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 100%; overflow: visible;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
/* LOGO SLOT — swap the nav-badge div for an img tag when ready:
   <img src="images/logo.png" alt="PSQP Logo" style="height:42px;width:auto;" />
   Recommended logo height: 38–44px. Width scales automatically. */
.nav-badge { background: var(--orange); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; padding: 4px 10px; border-radius: 3px; }
.nav-logo-text { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; }
.nav-logo-text span { display: block; color: var(--blue); font-size: 11px; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > span {
  color: #e8e8e8; font-size: 14px; font-weight: 600;
  padding: 8px 13px; border-radius: 4px;
  display: flex; align-items: center; gap: 5px;
  cursor: pointer; transition: color 0.15s, background 0.15s;
  white-space: nowrap; letter-spacing: 0.2px;
}
.nav-item > a:hover, .nav-item > span:hover,
.nav-item:hover > a, .nav-item:hover > span { color: #fff; background: rgba(255,255,255,0.1); }
.nav-item > a.active { color: var(--orange); }
.nav-item > span.active { color: var(--orange) !important; }
.nav-arrow { font-size: 9px; opacity: 0.5; transition: transform 0.2s; display: inline-block; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #1c1c1c; border: 1px solid #333;
  border-radius: 6px; padding: 6px;
  min-width: 210px; z-index: 9999;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); white-space: nowrap;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; color: #ccc; font-size: 13px; font-weight: 500;
  padding: 9px 14px; border-radius: 4px; transition: background 0.1s, color 0.1s;
}
.nav-dropdown a:hover { background: rgba(244,121,32,0.12); color: var(--orange); }
.nav-dropdown.areas-drop { min-width: 340px; display: grid; grid-template-columns: 1fr 1fr; white-space: nowrap; }
.nav-dropdown.areas-drop a { font-size: 12px; padding: 8px 12px; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { color: var(--blue); font-size: 14px; font-weight: 700; white-space: nowrap; }
.nav-cta {
  background: var(--orange); color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 4px; border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; transition: background 0.15s;
  white-space: nowrap; display: inline-block;
}
.nav-cta:hover { background: #d9680f; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.2s; }
.nav-drawer {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 99; overflow-y: auto; padding: 20px 24px;
}
.nav-drawer.open { display: block; }
.drawer-link { display: block; color: #ccc; font-size: 16px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid #222; }
.drawer-link:hover { color: var(--orange); }
.drawer-section { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 0 8px; }
.drawer-sub { display: block; color: #aaa; font-size: 14px; font-weight: 500; padding: 10px 0 10px 12px; border-bottom: 1px solid #1a1a1a; }
.drawer-sub:hover { color: var(--orange); }
.drawer-cta { display: block; background: var(--orange); color: #fff; font-size: 15px; font-weight: 700; text-align: center; padding: 16px; border-radius: 4px; margin-top: 20px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--blue); padding: 13px 40px; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 0;
}
.trust-item {
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 20px; letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.trust-item:last-child { border-right: none; }

/* ── SECTION UTILS ── */
section { padding: 72px 40px; }
.section-label {
  color: var(--orange); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); }
.section-h2 { font-size: 40px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.05; }
.section-sub { color: var(--muted); font-size: 15px; margin-bottom: 40px; max-width: 580px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; font-family: 'Barlow', sans-serif; padding: 14px 26px; border-radius: 4px; border: none; cursor: pointer; transition: background 0.15s; display: inline-block; }
.btn-primary:hover { background: #d9680f; }
.btn-outline { background: transparent; color: #fff; font-size: 14px; font-weight: 600; font-family: 'Barlow', sans-serif; padding: 14px 26px; border-radius: 4px; border: 2px solid var(--blue); cursor: pointer; transition: border-color 0.15s; display: inline-block; }
.btn-outline:hover { border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); font-size: 14px; font-weight: 700; font-family: 'Barlow', sans-serif; padding: 14px 28px; border-radius: 4px; border: none; cursor: pointer; display: inline-block; }
.btn-white:hover { background: #f0f0f0; }
.btn-orange-outline { background: transparent; color: #fff; font-size: 14px; font-weight: 700; font-family: 'Barlow', sans-serif; padding: 14px 28px; border-radius: 4px; border: 2px solid var(--orange); cursor: pointer; display: inline-block; transition: background 0.15s; }
.btn-orange-outline:hover { background: var(--orange); }

/* ── FORM ── */
.form-field, .form-select { width: 100%; padding: 11px 14px; border: 1.5px solid #e0e0e0; border-radius: 4px; font-size: 13px; font-family: 'Barlow', sans-serif; margin-bottom: 10px; color: var(--text); background: #fff; transition: border-color 0.15s; }
.form-field:focus, .form-select:focus { outline: none; border-color: var(--orange); }
.form-select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; font-family: 'Barlow', sans-serif; padding: 14px; border-radius: 4px; border: none; cursor: pointer; transition: background 0.15s; }
.form-submit:hover { background: #d9680f; }
.form-note { text-align: center; font-size: 11px; color: #aaa; margin-top: 10px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--orange); display: grid; grid-template-columns: repeat(4, 1fr); padding: 48px 40px; gap: 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 54px; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600; margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── SERVICES ── */
.services-bg { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card { background: #fff; border-radius: 6px; padding: 30px 24px; border-top: 4px solid var(--orange); transition: transform 0.2s, box-shadow 0.2s; display: block; color: var(--text); }
.svc-card:nth-child(2) { border-top-color: var(--blue); }
.svc-card:nth-child(3) { border-top-color: var(--navy); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.svc-icon { font-size: 26px; margin-bottom: 14px; }
.svc-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }

/* ── REVIEWS ── */
.reviews-bg { background: var(--dark); }
.reviews-bg .section-label { color: var(--blue); }
.reviews-bg .section-label::before { background: var(--blue); }
.reviews-bg .section-h2 { color: #fff; }
.reviews-bg .section-sub { color: #888; }
.google-badge { display: flex; align-items: center; gap: 14px; margin-top: 36px; background: #1c1c1c; border-radius: 6px; padding: 16px 22px; width: fit-content; }
.badge-score { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--orange); line-height: 1; }
.badge-info { display: flex; flex-direction: column; gap: 5px; }
.badge-stars { display: flex; gap: 3px; }
.badge-star { color: var(--orange); font-size: 16px; }
.badge-text { color: #888; font-size: 12px; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 8px; }
.why-img { background: var(--navy); border-radius: 8px; height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; overflow: hidden; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(83,175,197,0.06) 0, rgba(83,175,197,0.06) 1px, transparent 1px, transparent 28px); }
.why-img-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 900; color: #fff; z-index: 1; }
.why-img-logo span { color: var(--orange); }
.why-img-sub { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; z-index: 1; }
.why-img-note { color: rgba(255,255,255,0.3); font-size: 11px; z-index: 1; margin-top: 12px; font-style: italic; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-pt { display: flex; gap: 14px; align-items: flex-start; }
.why-check { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.why-pt-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.why-pt-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── AREAS ── */
.areas-bg { background: var(--gray); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.area-pill { background: #fff; border: 1.5px solid #ddd; border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #444; cursor: pointer; transition: all 0.15s; display: inline-block; }
.area-pill:hover, .area-pill.active { border-color: var(--orange); color: var(--orange); background: #fff9f5; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 64px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── BBB STRIP ── */
.bbb-strip { background: #fff; padding: 20px 40px; display: flex; align-items: center; gap: 28px; border-top: 1px solid #eee; flex-wrap: wrap; }
.bbb-label { font-size: 11px; font-weight: 700; color: #aaa; letter-spacing: 1px; text-transform: uppercase; }
.bbb-badge { display: flex; align-items: center; gap: 8px; background: #f7f7f7; border-radius: 4px; padding: 8px 14px; }
.bbb-icon { font-size: 20px; }
.bbb-text { font-size: 12px; font-weight: 700; color: #333; }
.bbb-text span { display: block; font-size: 10px; color: #888; font-weight: 400; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 3px solid var(--orange); padding: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-left { color: #555; font-size: 12px; line-height: 2; }
.footer-left strong { color: var(--orange); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #555; font-size: 12px; transition: color 0.15s; }
.footer-links a:hover { color: var(--orange); }

/* ── CITY PAGES ── */
.city-hero { background: var(--dark); min-height: 380px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 64px 40px; }
.city-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--orange); }
.city-hero-bg { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,15,15,0.92) 55%, rgba(43,57,144,0.4) 100%); }
.city-hero-content { position: relative; z-index: 2; max-width: 680px; }
.city-eyebrow { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.city-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue); }
.city-hero h1 { color: #fff; font-size: 58px; font-weight: 900; line-height: 1; margin-bottom: 16px; }
.city-hero h1 span { color: var(--orange); }
.city-hero-sub { color: #bbb; font-size: 16px; line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.city-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.city-hero-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.city-star { color: var(--orange); font-size: 16px; }
.city-stars-label { color: #fff; font-size: 13px; font-weight: 600; }
.city-stars-count { color: #888; font-size: 12px; }

/* City intro — form butts up against hero, no gap */
.city-intro { padding: 0 40px; background: #fff; }
.city-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.city-intro-text { padding: 52px 52px 52px 0; }
.city-intro-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.city-form-wrap { background: var(--gray); padding: 40px 36px; border-top: 4px solid var(--orange); border-left: 1px solid #e8e8e8; align-self: stretch; }
.city-form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; color: var(--text); }
.city-form-sub { font-size: 12px; color: var(--muted); margin-bottom: 18px; }

.city-services { background: var(--gray); }
.city-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.city-svc { background: #fff; border-radius: 6px; padding: 24px 20px; border-left: 4px solid var(--orange); }
.city-svc:nth-child(2) { border-left-color: var(--blue); }
.city-svc:nth-child(3) { border-left-color: var(--navy); }
.city-svc-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.city-svc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-hero { background: var(--dark); padding: 80px 40px; position: relative; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,15,0.95) 60%, rgba(43,57,144,0.3) 100%); }
.contact-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--orange); }
.contact-hero-content { position: relative; z-index: 2; max-width: 600px; }
.contact-hero h1 { color: #fff; font-size: 56px; font-weight: 900; line-height: 1; margin-bottom: 12px; }
.contact-hero h1 span { color: var(--orange); }
.contact-hero p { color: #bbb; font-size: 16px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 64px 40px; }
.contact-form-wrap { background: var(--gray); border-radius: 8px; padding: 40px; border-top: 4px solid var(--orange); }
.contact-form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.contact-form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-info-value a { color: var(--orange); }
.contact-info-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── SERVICE PAGES ── */
.service-hero { background: var(--dark); min-height: 340px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 64px 40px; }
.service-hero-bg { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,15,15,0.9) 60%, rgba(83,175,197,0.2) 100%); }
.service-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--orange); }
.service-hero-content { position: relative; z-index: 2; max-width: 680px; }
.service-hero h1 { color: #fff; font-size: 58px; font-weight: 900; line-height: 1; margin-bottom: 16px; }
.service-hero h1 span { color: var(--orange); }
.service-hero p { color: #bbb; font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.service-body { padding: 64px 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.service-body-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.service-body-text h3 { font-size: 22px; font-weight: 900; color: var(--text); margin: 28px 0 12px; }
.service-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.service-checklist li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.service-form-wrap { background: var(--gray); border-radius: 8px; padding: 36px; border-top: 4px solid var(--orange); position: sticky; top: 80px; }
.service-form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.service-form-sub { font-size: 12px; color: var(--muted); margin-bottom: 20px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .float-call {
    bottom: 16px; right: 16px; left: 16px;
    justify-content: center;
    background: #1a7a3c;
    font-size: 16px; font-weight: 700;
    padding: 17px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(26,122,60,0.5);
  }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 48px 20px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 36px 20px; }
  .services-grid, .city-services-grid, .why-grid { grid-template-columns: 1fr; }
  .city-intro { padding: 0 20px; }
  .city-intro-grid { grid-template-columns: 1fr; }
  .city-intro-text { padding: 36px 0; }
  .city-form-wrap { border-left: none; border-top: 4px solid var(--orange); }
  .city-hero { padding: 48px 20px; }
  .city-hero h1 { font-size: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .trust-bar { padding: 12px 20px; }
  .trust-bar-inner { justify-content: flex-start; }
  .trust-item { padding: 4px 10px; font-size: 11px; }
  .bbb-strip { padding: 16px 20px; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; padding: 40px 20px; }
  .service-body { grid-template-columns: 1fr; padding: 40px 20px; }
  .service-form-wrap { position: static; }
  .contact-hero { padding: 56px 20px; }
  .contact-hero h1, .service-hero h1 { font-size: 40px; }
  .service-hero { padding: 48px 20px; }
}
