/* FixUp Experts — Shared Stylesheet
   Brand: orange #F26418 / red #E63A1F / dark #2A2A2E
   Fonts: Lato (body) + Poppins (headings) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --orange: #F26418; --orange-dark: #C04D10; --red: #E63A1F;
  --dark: #2A2A2E; --text: #3A3A3F; --text-muted: #888888;
  --bg: #FFFFFF; --bg-soft: #FAF7F2; --bg-section: #F5F2ED;
  --border: #E6E0D5; --green: #2F7D3E; --star: #F5A623; --red-warning: #C62828;
  --shadow-sm: 0 1px 2px rgba(42,42,46,.06), 0 1px 3px rgba(42,42,46,.04);
  --shadow-md: 0 4px 12px rgba(42,42,46,.08), 0 2px 4px rgba(42,42,46,.04);
  --shadow-lg: 0 10px 30px rgba(42,42,46,.12), 0 4px 8px rgba(42,42,46,.06);
  --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px;
  --maxw: 1200px; --gutter: clamp(20px, 4vw, 40px);
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.6; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; padding-bottom: 76px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange-dark); }
strong { color: var(--dark); }
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 8px; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2;
  color: var(--dark); letter-spacing: -0.01em;
}
h1 { font-size: clamp(32px, 5.5vw, 54px); }
h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
h3 { font-size: clamp(18px, 2.4vw, 22px); margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 16px; }

.container {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; font-size: 15px; font-family: 'Poppins'; font-weight: 600;
  border-radius: 10px; border: 2px solid transparent; cursor: pointer;
  transition: all .2s; text-decoration: none !important; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-light { background: #fff; color: var(--dark); border-color: rgba(255,255,255,.6); }
.btn-light:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ===== Top accent bar ===== */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50; background: #fff;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter); max-width: var(--maxw); margin: 0 auto; gap: 20px;
}
.brand { display: flex; align-items: center; height: 84px; }
.brand img { height: 100%; width: auto; }
.header-nav { display: none; gap: 30px; font-family: 'Poppins'; font-weight: 600; font-size: 17px; }
@media (min-width: 768px) { .header-nav { display: flex; } }
@media (max-width: 767px) {
  .mobile-menu-btn { display: flex; }
  .header-nav.mobile-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 20px var(--gutter);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    gap: 16px; font-size: 17px;
  }
  .header-nav.mobile-open a { padding: 8px 0; border-bottom: 1px solid var(--border); }
}
.mobile-menu-btn {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 0; align-items: center; justify-content: center;
  color: var(--dark);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.header-nav a { color: var(--dark); }
.header-nav a:hover { color: var(--orange); }
.header-nav a.active { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins'; font-weight: 600; color: var(--dark); font-size: 16px;
}
.header-phone:hover { color: var(--orange); }
.header-phone svg { color: var(--orange); }
@media (max-width: 720px) {
  .header-phone-text { display: none; }
  .brand { height: 60px; }
}

/* ===== Hero (page-level, with bg image) ===== */
.hero {
  position: relative; min-height: 480px; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(42,42,46,.78) 0%, rgba(42,42,46,.5) 50%, rgba(230,58,31,.55) 100%) center/cover;
  color: #fff; padding: 80px 0;
}
.hero-tall { min-height: 620px; }
.hero-home {
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(42,42,46,.78) 0%, rgba(42,42,46,.5) 50%, rgba(230,58,31,.55) 100%),
    url('images/hero-bathroom-blue-subway-vanity.jpg') center/cover;
}
.hero h1 { color: #fff; margin-bottom: 18px; max-width: 720px; }
.hero-eyebrow {
  display: inline-block; font-family: 'Poppins'; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  background: rgba(255,255,255,.1); padding: 8px 14px; border-radius: 4px;
  margin-bottom: 20px; backdrop-filter: blur(8px);
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px); opacity: .94;
  margin-bottom: 32px; max-width: 580px; line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Page hero (without big image) ===== */
.page-hero {
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
  padding: 60px 0 40px;
}
.page-hero h1 { color: var(--dark); margin-bottom: 14px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 14px 0; font-size: 13px; color: var(--text-muted);
  background: #fff; border-bottom: 1px solid var(--border);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }
.breadcrumbs .current { color: var(--dark); font-weight: 600; }

/* ===== Trust strip ===== */
.trust {
  background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 22px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px; text-align: center;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-num {
  font-family: 'Poppins'; font-weight: 700; font-size: 22px; color: var(--orange); line-height: 1;
}
.trust-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-stars { color: var(--star); font-size: 18px; letter-spacing: 1px; }

/* ===== Sections ===== */
section { padding: clamp(56px, 9vw, 96px) 0; }
.section-alt { background: var(--bg-soft); }
.section-tight { padding: 48px 0 56px; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-family: 'Poppins'; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-sub { font-size: 17px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; }

/* ===== Content blocks ===== */
.content-block {
  max-width: 760px; margin: 0 auto;
  font-size: 17px; line-height: 1.7;
}
.content-block p { margin-bottom: 16px; }
.content-block h2 { margin: 32px 0 14px; }
.content-block h3 { margin: 24px 0 8px; }
.content-block ul, .content-block ol { margin: 0 0 16px 24px; }

/* ===== Service grid (4-card) ===== */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange);
}
.service-card-img {
  width: 100%; aspect-ratio: 4/3; background: var(--bg-section); overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.service-card-link {
  font-family: 'Poppins'; font-weight: 600; color: var(--orange); font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px;
}

/* ===== Featured project ===== */
.featured {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 900px) { .featured { grid-template-columns: 1fr 1fr; } }
.featured-img {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 18px 0;
  padding: 16px 20px; background: var(--bg-soft); border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}
.featured-meta-item { font-size: 14px; }
.featured-meta-item strong {
  color: var(--orange); display: block; font-family: 'Poppins'; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px;
}

/* ===== Why us (4-icon) ===== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { text-align: center; padding: 24px 12px; }
.why-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md);
}
.why-icon svg { width: 36px; height: 36px; }
.why-item h3 { margin-bottom: 8px; font-size: 19px; }
.why-item p { color: var(--text-muted); font-size: 15px; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { color: var(--star); font-size: 18px; letter-spacing: 1px; }
.testimonial-text { font-size: 16px; line-height: 1.6; color: var(--text); flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  display: grid; place-items: center; color: #fff; font-family: 'Poppins'; font-weight: 700; font-size: 15px;
}
.testimonial-name { font-family: 'Poppins'; font-weight: 600; color: var(--dark); font-size: 15px; }
.testimonial-meta { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.review-cta { text-align: center; margin-top: 40px; }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; padding: 22px 26px; background: transparent; border: 0; cursor: pointer;
  font-size: 16px; font-family: 'Poppins'; font-weight: 600; color: var(--dark);
  text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q::after { content: "+"; font-size: 24px; color: var(--orange); }
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 26px 22px; color: var(--text); font-size: 15px; line-height: 1.65; }

/* ===== Areas (dark cta) ===== */
.areas { background: var(--dark); color: #fff; padding: 80px 0; text-align: center; }
.areas h2 { color: #fff; }
.areas-list {
  display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center;
  margin: 32px 0 24px; font-family: 'Poppins'; font-weight: 500;
}
.areas-list span, .areas-list a {
  display: inline-block; padding: 8px 18px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 100px;
  color: #fff; font-size: 14px; transition: all .2s; text-decoration: none;
}
.areas-list a:hover { background: var(--orange); border-color: var(--orange); }
.areas p { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,.75); font-size: 15px; }

/* ===== CTA section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-section h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); }
.cta-section p { font-size: 18px; opacity: .95; max-width: 600px; margin: 16px auto 32px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone {
  display: inline-block; font-family: 'Poppins'; font-weight: 700;
  font-size: clamp(28px, 4vw, 36px); color: #fff; margin-top: 20px;
}
.cta-phone:hover { color: rgba(255,255,255,.85); }

/* ===== Footer ===== */
.footer {
  background: #1a1a1d; color: rgba(255,255,255,.85);
  padding: 64px 0 28px; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; opacity: .85; max-width: 320px; }
.footer-rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; }
.footer-rating .stars { color: var(--star); font-size: 16px; letter-spacing: 1px; }
.footer h4 {
  color: #fff; font-family: 'Poppins'; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 10px; margin: 0; }
.footer ul li { margin: 0; }
.footer ul a { color: rgba(255,255,255,.75); }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; font-size: 13px; opacity: .65;
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px;
  box-shadow: 0 -6px 20px rgba(42,42,46,.1);
}
.mobile-cta .btn { min-height: 56px; padding: 12px 16px; font-size: 14px; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ===== Forms ===== */
.form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.form h3 { color: var(--dark); margin-bottom: 4px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.form-row { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-family: 'Poppins'; font-weight: 600;
  color: var(--dark); margin-bottom: 6px; letter-spacing: .02em;
}
.form-label .req { color: var(--orange); }
.form-input {
  width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  background: #fff; color: var(--text); transition: border-color .15s;
}
.form-input:focus { outline: 0; border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { font-size: 14px; margin-top: 12px; padding: 10px 12px; border-radius: 6px; display: none; }
.form-msg.ok { display: block; background: #E8F5E9; color: var(--green); border: 1px solid #C8E6C9; }
.form-msg.err { display: block; background: #FFEBEE; color: var(--red-warning); border: 1px solid #FFCDD2; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ===== Portfolio grid (filterable) ===== */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.portfolio-filter {
  background: var(--bg-soft); color: var(--text); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 100px; font-family: 'Poppins'; font-weight: 500;
  font-size: 14px; cursor: pointer; transition: all .15s;
}
.portfolio-filter:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.portfolio-filter.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.portfolio-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm); cursor: pointer;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,42,46,.85) 100%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: opacity .25s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  color: #fff; font-family: 'Poppins'; font-size: 14px; font-weight: 600;
  margin: 0; letter-spacing: .03em;
}

/* ===== Page-level utilities ===== */
.text-center { text-align: center; }
.u-flex { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.u-mt-lg { margin-top: 32px; }
.u-mb-lg { margin-bottom: 32px; }

/* ===== Image grids (gallery on individual project) ===== */
.image-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .image-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .image-grid { grid-template-columns: repeat(3, 1fr); } }
.image-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
}
.contact-info-block {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.contact-info-block h3 { margin-bottom: 8px; color: var(--dark); font-size: 22px; }
.contact-info-block > p { color: var(--text); margin-bottom: 24px; line-height: 1.6; }
.contact-info-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-list svg {
  width: 28px; height: 28px; flex: 0 0 28px; color: var(--orange);
}
.contact-info-list strong {
  display: block; font-family: 'Poppins'; font-weight: 600;
  color: var(--dark); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 4px;
}
.contact-info-list a {
  color: var(--text); font-weight: 500;
}
.contact-info-list a:hover { color: var(--orange); }
.big-phone {
  display: inline-block; font-family: 'Poppins'; font-weight: 700;
  font-size: 24px; color: var(--dark) !important;
}
.big-phone:hover { color: var(--orange) !important; }

/* ===== About page ===== */
.about-hero {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(42,42,46,.78) 0%, rgba(42,42,46,.5) 50%, rgba(230,58,31,.55) 100%),
    url('images/hero-bathroom-blue-subway-vanity.jpg') center/cover;
}
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.about-grid p { font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.about-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.creds-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 880px; margin: 40px auto 0;
}
@media (min-width: 720px) {
  .creds-grid { grid-template-columns: repeat(4, 1fr); }
}
.cred {
  text-align: center; padding: 24px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.cred-num {
  font-family: 'Poppins'; font-weight: 700; font-size: 30px;
  color: var(--orange); line-height: 1; margin-bottom: 6px;
}
.cred-label {
  font-size: 13px; color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== Generic content blocks ===== */
.intro-content {
  max-width: 800px; margin: 0 auto; font-size: 17px; line-height: 1.7;
}
.intro-content p { margin-bottom: 16px; }
.intro-content a { font-weight: 600; }

/* ===== Values / pricing tier cards (about + service pages) ===== */
.values {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); } }
.value-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all .2s;
  display: block; color: var(--text); text-decoration: none;
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--orange); color: var(--text); }
a.value-item:hover h3 { color: var(--orange); }
a.value-item::after {
  content: "Get Estimate →"; display: block; margin-top: 14px;
  font-family: 'Poppins'; font-weight: 600; font-size: 13px;
  color: var(--orange); letter-spacing: .5px; opacity: 0.7;
  transition: opacity .15s, transform .15s;
}
a.value-item:hover::after { opacity: 1; transform: translateX(2px); }
.value-item h3 { color: var(--dark); margin-bottom: 10px; transition: color .15s; }
.value-item p { color: var(--text); font-size: 15px; line-height: 1.6; }

/* ===== Package cards (homepage) ===== */
.package-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap;
}
.package-meta .pkg-days {
  font-family: 'Poppins'; font-weight: 700; font-size: 13px;
  color: var(--orange); background: rgba(242,100,24,.08);
  padding: 5px 10px; border-radius: 100px; letter-spacing: 0.5px;
}
.package-meta .pkg-price {
  font-family: 'Poppins'; font-weight: 500; font-size: 13px;
  color: var(--text-muted); letter-spacing: 0.3px;
}
.services-grid-3 {
  /* 3-column variant — centers on wide screens with 4-col base */
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .services-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
}

/* ===== Before / After comparison cards ===== */
.ba-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .ba-grid { gap: 56px; } }

.ba-pair {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.ba-pair:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.ba-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.ba-image-wrap {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
}
@media (min-width: 720px) { .ba-image-wrap { aspect-ratio: 4/3; } }

.ba-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.ba-pair:hover .ba-image-wrap img { transform: scale(1.03); }

.ba-label {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Poppins'; font-weight: 700; font-size: 12px;
  letter-spacing: 2px; color: #fff;
  padding: 6px 14px; border-radius: 100px;
  z-index: 2;
}
.ba-label-before { background: rgba(42,42,46,.85); }
.ba-label-after { background: var(--orange); }

.ba-image-wrap:first-child::after,
.ba-image-wrap.ba-before::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--orange), var(--red));
  z-index: 1;
}

.ba-content {
  padding: 24px 28px;
}
.ba-content h3 {
  font-family: 'Poppins'; font-weight: 700; font-size: 20px;
  color: var(--dark); margin-bottom: 8px;
}
.ba-meta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px;
  font-family: 'Poppins'; font-size: 13px; color: var(--text-muted);
}
.ba-meta span { display: inline-flex; align-items: center; gap: 6px; }
.ba-meta strong { color: var(--orange); font-weight: 600; }
.ba-content p {
  font-size: 15px; line-height: 1.65; color: var(--text); margin: 0;
}
