/* =============================
   Sunshine Home Services - CSS
   ============================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --gold: #f5a623;
  --gold-dark: #d4891c;
  --white: #ffffff;
  --light: #f8f9fa;
  --mid: #e9ecef;
  --text: #333333;
  --text-muted: #666666;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; }

/* ---- NAV ---- */
nav {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .brand { color: var(--gold); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }
.nav-logo .sub { color: rgba(255,255,255,0.6); font-size: 0.72rem; }
.nav-links { display: flex; gap: 0.3rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: var(--gold); font-size: 1.2rem; font-weight: 800; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.88rem; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav a { display: block; color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--navy); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243b6a 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--gold);
  padding: 1.2rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat { text-align: center; }
.stat .num { font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat .label { font-size: 0.75rem; font-weight: 600; color: rgba(26,39,68,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- CARDS ---- */
.cards { display: grid; gap: 1.5rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.13); }
.card-icon {
  width: 60px; height: 60px;
  background: rgba(245,166,35,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 30px; height: 30px; color: var(--gold); stroke: var(--gold); }
.icon-box {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; stroke: var(--gold); }
.contact-info-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }
.card-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-features { list-style: none; margin: 1rem 0; }
.card-features li { color: var(--text-muted); font-size: 0.88rem; padding: 0.25rem 0; }
.card-features li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ---- SERVICE PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243b6a 100%);
  color: var(--white);
  padding: 4rem 2rem;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 650px; }

/* ---- CHECKLIST ---- */
.checklist { list-style: none; }
.checklist li { padding: 0.5rem 0; display: flex; align-items: flex-start; gap: 0.75rem; }
.checklist li::before { content: "✓"; background: var(--gold); color: var(--navy); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

/* ---- PROCESS ---- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  margin: 0 auto 1rem;
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- PACKAGES ---- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package {
  border-radius: var(--radius);
  border: 2px solid var(--mid);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}
.package.featured { border-color: var(--gold); }
.package-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.package h3 { color: var(--navy); font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.package .duration { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.package ul { list-style: none; margin-bottom: 1.5rem; }
.package ul li { font-size: 0.88rem; color: var(--text-muted); padding: 0.3rem 0; display: flex; gap: 0.5rem; }
.package ul li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---- REVIEWS ---- */
.reviews { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review p { font-size: 0.92rem; color: var(--text); font-style: italic; line-height: 1.65; margin-bottom: 1rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.reviewer-info .name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.reviewer-info .loc { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(26,39,68,0.8); font-size: 1rem; margin-bottom: 2rem; }
.cta-banner .btn { background: var(--navy); color: var(--white); margin: 0.4rem; }
.cta-banner .btn:hover { background: #0f1a36; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--mid);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text .label { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.contact-info-text .value { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-text .value a { color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--mid);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--mid); }
.faq-q {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: "+"; color: var(--gold); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; }
.faq-a { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-top: 0.75rem; }

/* ---- ABOUT ---- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
}
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.neighborhoods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.neighborhood-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.neighborhood-item .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.neighborhood-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.neighborhood-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ---- SUNSHIELD ---- */
.comparison-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.comp-side {
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.comp-side.standard { background: var(--mid); }
.comp-side.sunshield { background: var(--navy); color: var(--white); }
.comp-side h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.comp-side .years { font-size: 3rem; font-weight: 900; line-height: 1; }
.comp-side .years span { font-size: 1rem; font-weight: 400; }
.comp-side .sunshield .years { color: var(--gold); }
.comp-standard .years { color: var(--text-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .neighborhoods { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .comparison-bar { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .neighborhoods { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem; gap: 0; }
  .nav-links.open a { padding: 0.75rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-bar { grid-template-columns: 1fr; }
}

/* =============================================
   MOBILE RESPONSIVE - COMPREHENSIVE
   ============================================= */

/* Service cards grid (home page) */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Split 2-col layout (SunShield spotlight, about sections) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Comparison inner 2-col */
.comp-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Ceramic product grid 2-col */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .svc-cards-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Section padding */
  section { padding: 3rem 1rem; }
  .page-hero { padding: 2.5rem 1rem; }
  .hero { padding: 3rem 1rem; }
  .cta-banner { padding: 2.5rem 1rem; }
  footer { padding: 2rem 1rem 1rem; }

  /* Grids */
  .svc-cards-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .comp-inner-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .neighborhoods { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-bar { grid-template-columns: 1fr; }

  /* Nav */
  nav { padding: 0 1rem; }
  .nav-inner { height: 68px; }
  .nav-logo img { height: 44px !important; }
  .nav-logo > div > div:first-child { font-size: 0.82rem !important; }
  .nav-logo > div > div:last-child { display: none; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #1a2744;
    padding: 1rem 0;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.mobile-open a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
  }
  .nav-links.mobile-open .nav-cta {
    margin: 0.75rem 1.5rem 0;
    text-align: center;
    border-radius: 8px !important;
  }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero buttons */
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }

  /* Stats bar */
  .stats-inner { gap: 0.75rem; }
  .stat .num { font-size: 1.3rem; }

  /* Section text */
  .section-sub { margin-bottom: 2rem; font-size: 0.95rem; }
  .section-title { margin-bottom: 0.75rem; }
  
  /* Packages */
  .packages { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Floating buttons on mobile - stack vertically */
  #shs-chat-toggle { bottom: 88px !important; right: 16px !important; }
  #shs-chat-window { right: 16px !important; bottom: 150px !important; width: calc(100vw - 32px) !important; }
}

/* =============================================
   BEFORE / AFTER SLIDER
   ============================================= */
.ba-section { background: var(--navy); padding: 5rem 2rem; }
.ba-section .section-title { color: white; }
.ba-section .section-label { }
.ba-section .section-sub { color: rgba(255,255,255,0.65); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ba-card { }
.ba-card-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: left center;
}

.ba-before-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 100vw; /* same as slider width to prevent stretch */
  max-width: 100%;
}

.ba-label-before,
.ba-label-after {
  position: absolute;
  top: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  z-index: 5;
}
.ba-label-before {
  left: 12px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
}
.ba-label-after {
  right: 12px;
  background: rgba(245,166,35,0.9);
  color: #1a2744;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ba-handle-btn svg {
  width: 22px;
  height: 22px;
  color: #1a2744;
  stroke: #1a2744;
}

/* Placeholder state (no real photo yet) */
.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ba-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-slider { height: 220px; }
  .ba-section { padding: 3rem 1rem; }
}

/* =============================================
   PRODUCT CARDS (Ceramic Coatings page)
   ============================================= */
.product-card {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 4px solid #f5a623;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-card-header h3 {
  color: #1a2744;
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .product-card {
    padding: 1.25rem;
    border-radius: 10px;
  }
  .product-card-header {
    gap: 0.6rem;
    align-items: flex-start;
  }
  .product-card-header > div:first-child {
    flex-shrink: 0;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }
  .product-card-header h3 {
    font-size: 0.9rem;
  }
  .product-card p {
    font-size: 0.83rem;
  }
  .product-card span {
    font-size: 0.7rem !important;
  }
}

/* =============================================
   HANDYMAN PAGE
   ============================================= */
.handyman-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.handyman-category {
  background: white;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid #f5a623;
}

.handyman-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.handyman-cat-icon {
  width: 42px;
  height: 42px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.handyman-cat-icon svg { width: 22px; height: 22px; }

.handyman-cat-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a2744;
  margin: 0;
  line-height: 1.3;
}

.handyman-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.handyman-list li {
  font-size: 0.85rem;
  color: #555;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.handyman-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f5a623;
}

@media (max-width: 900px) {
  .handyman-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .handyman-grid { grid-template-columns: 1fr; }
  .handyman-category { padding: 1.25rem; }
}
