/* ============================================================
   Silverline Cleaning — page-specific styles (loaded after styles.css)
============================================================ */

/* ---- Functional mobile menu ---- */
@media (max-width: 768px) {
  .navlinks {
    position: absolute; top: 58px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 4px; padding: 12px; box-shadow: var(--sh-md);
    border-bottom: 1px solid var(--border); z-index: 60; display: none; list-style: none;
  }
  .navlinks.show { display: flex; }
  .navlinks li { width: 100%; margin: 0; }
  .navlinks a {
    display: block; width: 100%; box-sizing: border-box;
    padding: 14px 16px; font-size: 15px; line-height: 1.2;
    border-radius: 10px; text-align: left; white-space: nowrap;
  }
  .navlinks .nl-call,
  .navlinks .nl-cta { text-align: center; margin-top: 4px; }
}

/* ---- Sub-page hero ---- */
.page-hero {
  background: linear-gradient(160deg, #F5FDFC 0%, #EAF9F8 55%, #F0FBFA 100%);
  padding: 62px 48px 54px; text-align: center; border-bottom: 1px solid var(--border);
}
.ph-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal-dk); margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800;
  color: var(--dark); letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--teal-dk); }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; line-height: 1.65; }
.page-hero .cta-btn { max-width: 280px; margin: 22px auto 0; }
@media (max-width: 768px) {
  .page-hero { padding: 40px 18px 34px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 15px; }
}

/* ---- Detail cards (services + commercial) ---- */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh); transition: all .2s; display: flex; flex-direction: column;
}
.detail-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: var(--teal); }
.dc-ico {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-lt);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 14px;
}
.detail-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.dc-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.dc-bullets { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.dc-bullets li { font-size: 13px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.dc-bullets li::before { content: '✓'; color: var(--teal-dk); font-weight: 800; flex-shrink: 0; }
.detail-card .sc-link { margin-top: auto; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .detail-grid { grid-template-columns: 1fr; } }

/* ---- About ---- */
.about-lead { max-width: 780px; margin: 0 auto 36px; text-align: center; font-size: 17px; color: var(--text); line-height: 1.8; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.about-split h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px; letter-spacing: -.5px;
}
.about-split p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 24px; } }

/* ---- Contact ---- */
.contact-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.ci-item:last-child { border-bottom: none; }
.ci-ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--teal-lt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0;
}
.ci-l { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 2px; }
.ci-v { font-size: 16px; color: var(--dark); font-weight: 600; }
.ci-v a { color: var(--dark); text-decoration: none; }
.ci-v a:hover { color: var(--teal-dk); }
@media (max-width: 768px) { .contact-split { grid-template-columns: 1fr; gap: 22px; } }

/* Form card variant used outside the home hero */
.form-card.static-card { position: static; top: auto; }

/* ---- Image integration (graceful: gradient shows if image missing) ---- */
.home-hero {
  background:
    linear-gradient(105deg, rgba(245,253,252,.97) 0%, rgba(245,253,252,.9) 38%, rgba(234,249,248,.5) 100%),
    url('images/hero.webp') right center / cover no-repeat;
}
@media (max-width: 768px) {
  .home-hero { background: linear-gradient(160deg, #F5FDFC 0%, #EAF9F8 50%, #F0FBFA 100%); }
}
.about-photo { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh); display: block; }

/* ---- Home service card photos (drop images into /images, any size auto-fits) ---- */
.svc-card .sc-img { height: 184px; }
.sc-img.g1 { background: #1f9d96 url('images/service-home.jpg') center / cover no-repeat; }
.sc-img.g2 { background: #2e7a8f url('images/service-deep.jpg') center / cover no-repeat; }
.sc-img.g3 { background: #2b5c8a url('images/service-commercial.jpg') center / cover no-repeat; }
.sc-img.g4 { background: #4a3090 url('images/service-tenancy.jpg') center / cover no-repeat; }
.sc-img.g5 { background: #963060 url('images/service-airbnb.jpg') center / cover no-repeat; }
.sc-img.g6 { background: #2e9043 url('images/service-custom.jpg') center / cover no-repeat; }

/* ---- Premium spacing & symmetry ---- */
.sec { padding: 88px 48px; }
.ss { margin-bottom: 48px; }
.page-hero { padding: 78px 48px 64px; }
.svc-cards, .detail-grid, .why-grid, .rev-grid, .steps,
.about-split, .contact-split { max-width: 1200px; margin-left: auto; margin-right: auto; }
.svc-cards, .detail-grid { gap: 24px; }
.why-grid, .rev-grid { gap: 22px; }
.svc-card .sc-body { padding: 18px 18px 22px; }
.detail-card { padding: 28px; }
.cta-sec { padding: 92px 48px; }
.stats { padding: 56px 48px; }
@media (max-width: 768px) {
  .sec { padding: 56px 20px; }
  .page-hero { padding: 44px 18px 36px; }
  .cta-sec { padding: 56px 20px; }
  .stats { padding: 40px 18px; }
}
