/* ==========================================================================
   Sunbright Cleaning — Stylesheet
   Layout language: rounded cards, soft elevation, full-bleed photography.
   Deliberately distinct from a flat/bordered "industrial" system.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --navy:#14293D;
  --navy-soft:#2C4560;
  --navy-deep:#0D1B29;
  --gold:#F0A430;
  --gold-deep:#CC8112;
  --bg:#FFFFFF;
  --surface:#F2F6F9;
  --text:#16232F;
  --text-soft:#55636F;
  --text-faint:#8794A0;
  --line: rgba(20,41,61,0.10);
  --white:#FFFFFF;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(20,41,61,0.06);
  --shadow: 0 16px 40px rgba(20,41,61,0.12);
  --shadow-lg: 0 28px 60px rgba(20,41,61,0.18);

  --container: 1160px;
  --header-h: 84px;
}

/* ---------- Base ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; }

.display{
  font-family:'Sora', sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.06;
}
.label{
  font-family:'Inter', sans-serif;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

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

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:2px;
}

.skip-link{
  position:absolute;
  left:12px;
  top:-48px;
  background:var(--navy);
  color:var(--white);
  padding:10px 16px;
  border-radius:8px;
  z-index:200;
  transition:top 0.15s ease;
  font-size:13px;
  font-weight:600;
}
.skip-link:focus{ top:12px; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* ---------- Header / Nav ---------- */
header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
  max-width:var(--container);
  margin:0 auto;
  min-height:var(--header-h);
  gap:24px;
}
.logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-badge{ width:52px; height:52px; object-fit:contain; flex-shrink:0; }
.logo .word{ font-family:'Sora', sans-serif; font-weight:700; font-size:18px; color:var(--navy); line-height:1.1; }
.logo .word small{ display:block; font-family:'Inter', sans-serif; font-weight:600; font-size:10.5px; letter-spacing:0.14em; color:var(--text-faint); margin-top:1px; }
.footer-badge{ width:84px; height:84px; }

.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}
.nav-links a{
  font-size:14.5px;
  font-weight:600;
  color:var(--text-soft);
  transition:color 0.15s ease;
}
.nav-links a:hover{ color:var(--navy); }
.nav-links a.active{ color:var(--gold-deep); }

.nav-call{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.nav-call .num{ font-weight:700; font-size:14.5px; color:var(--navy); white-space:nowrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 24px;
  font-size:14px;
  font-weight:700;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); box-shadow:0 8px 20px rgba(240,164,48,0.35); }
.btn-primary:hover{ background:var(--gold-deep); border-color:var(--gold-deep); transform:translateY(-1px); }
.btn-navy{ background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn-navy:hover{ background:var(--navy-soft); transform:translateY(-1px); }
.btn-outline-light{ background:rgba(255,255,255,0.08); color:var(--white); border-color:rgba(255,255,255,0.55); }
.btn-outline-light:hover{ background:rgba(255,255,255,0.16); border-color:var(--white); }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn-block{ width:100%; }

/* Mobile menu */
.menu-toggle{
  display:none;
  width:42px; height:42px;
  border:1.5px solid var(--line);
  border-radius:10px;
  background:transparent;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}
.menu-toggle svg{ width:20px; height:20px; color:var(--navy); }
.menu-toggle[aria-expanded="true"] .icon-open{ display:none; }
.menu-toggle[aria-expanded="false"] .icon-close{ display:none; }

.mobile-panel{
  display:none;
  flex-direction:column;
  background:var(--white);
  border-top:1px solid var(--line);
}
.mobile-panel.open{ display:flex; }
.mobile-panel a{
  padding:16px 32px;
  font-size:15px;
  font-weight:600;
  color:var(--text-soft);
  border-bottom:1px solid var(--line);
}
.mobile-panel .mobile-call{ padding:18px 32px; display:flex; gap:12px; }

/* ---------- Hero ---------- */
.hero{ position:relative; overflow:hidden; padding:0; }
.hero-photo{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  padding:64px 0 120px;
}
.hero-photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:60% 30%;
}
.hero-photo::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(13,27,41,0.92) 0%, rgba(13,27,41,0.78) 38%, rgba(13,27,41,0.35) 68%, rgba(13,27,41,0.15) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:620px; }
.rating-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.28);
  color:var(--white);
  padding:8px 16px 8px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:26px;
}
.rating-pill .stars{ color:var(--gold); letter-spacing:1px; font-size:13px; }
h1.hero-head{ font-size:clamp(36px, 5vw, 58px); color:var(--white); }
h1.hero-head .accent{ color:var(--gold); }
.hero-sub{
  margin-top:20px;
  font-size:17.5px;
  color:rgba(255,255,255,0.82);
  max-width:48ch;
  line-height:1.65;
}
.hero-actions{ margin-top:34px; display:flex; gap:14px; flex-wrap:wrap; }

/* Floating trust bar straddling hero bottom edge */
.trust-bar{
  position:relative;
  z-index:3;
  margin-top:-64px;
  margin-bottom:0;
}
.trust-card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  padding:28px 36px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.trust-item{ display:flex; align-items:center; gap:14px; }
.trust-item .ic{
  width:44px; height:44px; border-radius:12px;
  background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color:var(--gold-deep);
}
.trust-item .ic svg{ width:22px; height:22px; }
.trust-item .tx b{ display:block; font-size:14.5px; color:var(--navy); font-weight:700; }
.trust-item .tx span{ font-size:12.5px; color:var(--text-faint); }

/* ---------- Section shared ---------- */
section{ padding:120px 0 96px; }
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.section-label{
  color:var(--gold-deep);
  display:block;
  margin-bottom:14px;
}
h2.section-title{ font-size:clamp(28px, 3.6vw, 42px); color:var(--navy); }
.section-desc{ margin-top:16px; color:var(--text-soft); font-size:16px; line-height:1.7; }

/* ---------- Services ---------- */
.services{ background:var(--bg); }
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 30px;
  transition:box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); border-color:transparent; }
.service-card .ic{
  width:52px; height:52px; border-radius:14px;
  background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  color:var(--navy);
}
.service-card.featured .ic{ background:var(--navy); color:var(--gold); }
.service-card .ic svg{ width:26px; height:26px; }
.service-name{ font-family:'Sora', sans-serif; font-weight:700; font-size:18.5px; margin-bottom:10px; color:var(--navy); }
.service-desc{ font-size:14.5px; color:var(--text-soft); line-height:1.65; }
.pill-tag{
  display:inline-flex;
  align-items:center;
  margin-top:16px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.04em;
  background:rgba(240,164,48,0.14);
  color:var(--gold-deep);
  padding:5px 12px;
  border-radius:999px;
}

/* ---------- Before / After ---------- */
.showcase{ background:var(--surface); }
.showcase-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:52px;
  align-items:center;
}
.showcase-text h2{ font-size:clamp(26px, 3.4vw, 38px); color:var(--navy); margin-bottom:18px; }
.showcase-text p{ color:var(--text-soft); font-size:16px; line-height:1.7; margin-bottom:26px; max-width:42ch; }
.showcase-list{ display:flex; flex-direction:column; gap:14px; }
.showcase-list li{ display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:var(--text); }
.showcase-list .chk{
  width:22px; height:22px; border-radius:50%;
  background:var(--gold); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}
.showcase-list .chk svg{ width:12px; height:12px; }
.showcase-photo{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.showcase-photo img{ width:100%; display:block; }
.showcase-caption{
  position:absolute; bottom:18px; left:18px;
  background:rgba(13,27,41,0.85);
  color:var(--white);
  font-size:12.5px;
  font-weight:600;
  padding:9px 16px;
  border-radius:999px;
  letter-spacing:0.02em;
}

/* ---------- How it works (timeline) ---------- */
.timeline{ background:var(--bg); }
.timeline-track{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  position:relative;
}
.timeline-track::before{
  content:"";
  position:absolute;
  top:23px; left:calc(12.5% + 4px); right:calc(12.5% + 4px);
  height:2px;
  background:var(--line);
  z-index:0;
}
.tl-step{ position:relative; z-index:1; padding:0 20px; text-align:center; }
.tl-step .node{
  width:46px; height:46px; border-radius:50%;
  background:var(--navy);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Sora', sans-serif; font-weight:700; font-size:16px;
  margin:0 auto 22px;
  box-shadow:0 0 0 6px var(--bg);
}
.tl-step h3{ font-family:'Sora', sans-serif; font-weight:700; font-size:17px; color:var(--navy); margin-bottom:10px; }
.tl-step p{ font-size:14px; color:var(--text-soft); line-height:1.65; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--navy-deep), var(--navy));
  border-radius:var(--radius-lg);
  padding:56px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cta-banner h2{ font-family:'Sora', sans-serif; font-weight:700; font-size:clamp(24px, 3vw, 32px); color:var(--white); max-width:26ch; }
.cta-banner p{ color:rgba(255,255,255,0.7); font-size:14.5px; margin-top:10px; }
.cta-banner-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Quote section ---------- */
.quote{ background:var(--surface); }
.quote-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:52px;
  align-items:start;
}
.quote-info h2{ font-size:clamp(26px, 3.2vw, 36px); color:var(--navy); margin-bottom:16px; }
.quote-info > p{ color:var(--text-soft); font-size:15.5px; line-height:1.7; margin-bottom:30px; max-width:40ch; }
.info-list{ display:flex; flex-direction:column; gap:0; margin-bottom:30px; }
.info-line{
  display:flex; align-items:center; gap:14px;
  padding:16px 0;
  border-top:1px solid var(--line);
}
.info-line:first-child{ border-top:none; }
.info-line .ic{
  width:38px; height:38px; border-radius:10px;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep);
  flex-shrink:0;
}
.info-line .ic svg{ width:18px; height:18px; }
.info-line .lbl{ font-size:11.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-faint); display:block; }
.info-line .v{ font-size:15px; font-weight:600; color:var(--navy); }
.info-line a:hover{ color:var(--gold-deep); }

.quote-form-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:44px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:600; color:var(--navy); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--line);
  background:var(--surface);
  padding:13px 15px;
  font-family:'Inter', sans-serif;
  font-size:14.5px;
  color:var(--text);
  border-radius:var(--radius-sm);
  transition:border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:var(--white);
}
.field textarea{ resize:vertical; min-height:96px; }
.form-foot{ margin-top:6px; }
.form-note{ font-size:12.5px; color:var(--text-faint); margin-top:14px; text-align:center; }
.form-status{
  margin-top:16px;
  font-size:13px;
  font-weight:600;
  display:none;
  padding:13px 15px;
  border-radius:var(--radius-sm);
  text-align:center;
}
.form-status.show{ display:block; }
.form-status.ok{ background:#E4F3E8; color:#1F6B33; }
.form-status.error{ background:#FBE4E4; color:#A32626; }
.btn[disabled]{ opacity:0.55; cursor:not-allowed; pointer-events:none; }

/* ---------- Interior page hero (About / Services / Testimonials / Contact) ---------- */
.page-hero{
  background:linear-gradient(120deg, var(--navy-deep), var(--navy));
  padding:64px 0 72px;
}
.page-hero .label{ color:var(--gold); }
.page-hero h1{ font-size:clamp(32px, 4.4vw, 50px); color:var(--white); margin-top:14px; }
.page-hero p{ margin-top:16px; color:rgba(255,255,255,0.72); font-size:16px; max-width:56ch; line-height:1.7; }

/* ---------- About: story ---------- */
.story{ background:var(--bg); }
.story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.story-photo{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.story-photo img{ width:100%; display:block; }
.story-text p{ color:var(--text-soft); font-size:15.5px; line-height:1.8; margin-bottom:18px; }
.story-text p:last-child{ margin-bottom:0; }

.mission-band{
  background:var(--surface);
  padding:0;
}
.mission-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:48px;
  text-align:center;
  max-width:760px;
  margin:0 auto;
}
.mission-card .label{ color:var(--gold-deep); }
.mission-card p{ margin-top:16px; font-size:17px; color:var(--text); line-height:1.75; }

.badges-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:48px;
}
.badge-pill{
  display:flex; align-items:center; gap:10px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 20px;
  box-shadow:var(--shadow-sm);
  transition:transform 0.15s ease, box-shadow 0.15s ease;
}
a.badge-pill:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.badge-pill img{ height:20px; width:auto; }
.badge-pill span{ font-size:13.5px; font-weight:700; color:var(--navy); }

/* ---------- Services detail ---------- */
.service-detail{ padding:96px 0; }
.service-detail:nth-child(even){ background:var(--surface); }
.service-detail-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.service-detail-grid.reverse .service-detail-media{ order:2; }
.service-detail-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.service-detail-media img{ width:100%; display:block; }
.service-detail-media.split{ display:grid; grid-template-columns:1fr 1fr; gap:4px; aspect-ratio:8/7; }
.service-detail-media.split img{ width:100%; height:100%; object-fit:cover; }
.service-detail-text .label{ color:var(--gold-deep); }
.service-detail-text h2{ font-size:clamp(26px, 3.2vw, 36px); color:var(--navy); margin-top:12px; margin-bottom:16px; }
.service-detail-text > p{ color:var(--text-soft); font-size:15.5px; line-height:1.75; margin-bottom:22px; }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; }
.tag-list span{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 16px;
  font-size:13px;
  font-weight:600;
  color:var(--navy);
}
.subgroup{ margin-bottom:22px; }
.subgroup:last-child{ margin-bottom:0; }
.subgroup h4{ font-size:12.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:12px; }
.highlight-line{
  display:flex; align-items:center; gap:12px;
  margin-top:24px;
  padding:14px 18px;
  background:rgba(240,164,48,0.12);
  border-radius:var(--radius-sm);
  font-size:14px; font-weight:600; color:var(--gold-deep);
}

/* ---------- Testimonials ---------- */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.testimonial-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 26px;
  box-shadow:var(--shadow-sm);
}
.testimonial-card .stars{ color:var(--gold); font-size:14px; letter-spacing:1px; margin-bottom:14px; display:block; }
.testimonial-card p.quote{ font-size:14.5px; color:var(--text); line-height:1.7; margin-bottom:18px; }
.testimonial-card .who b{ display:block; font-size:14px; color:var(--navy); }
.testimonial-card .who span{ font-size:12.5px; color:var(--text-faint); }

/* ---------- Contact: hours + towns ---------- */
.hours-table{ width:100%; border-collapse:collapse; margin-top:4px; }
.hours-table tr{ border-top:1px solid var(--line); }
.hours-table tr:first-child{ border-top:none; }
.hours-table td{ padding:10px 0; font-size:14px; }
.hours-table td:first-child{ color:var(--text-soft); }
.hours-table td:last-child{ text-align:right; font-weight:600; color:var(--navy); }
.town-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.town-list span{
  font-size:12.5px; font-weight:600; color:var(--text-soft);
  background:var(--surface);
  border-radius:999px;
  padding:6px 13px;
}

/* ---------- Footer ---------- */
footer{ background:var(--navy-deep); color:rgba(255,255,255,0.62); padding:64px 0 28px; }
.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.footer-brand .logo .word{ color:var(--white); }
.footer-brand .tag{ font-size:13px; color:rgba(255,255,255,0.5); margin-top:12px; max-width:32ch; line-height:1.6; }
.footer-links{ display:flex; gap:52px; flex-wrap:wrap; }
.footer-col h4{ font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--white); margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; font-size:14px; padding:6px 0; color:rgba(255,255,255,0.62); }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  padding-top:24px;
  font-size:12.5px;
  flex-wrap:wrap;
  gap:10px;
  color:rgba(255,255,255,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .showcase-grid{ grid-template-columns:1fr; }
  .quote-grid{ grid-template-columns:1fr; }
  .trust-card{ grid-template-columns:1fr 1fr; }
  .story-grid{ grid-template-columns:1fr; }
  .service-detail-grid{ grid-template-columns:1fr; }
  .service-detail-grid.reverse .service-detail-media{ order:0; }
  .testimonial-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 900px){
  .service-grid{ grid-template-columns:1fr 1fr; }
  .timeline-track{ grid-template-columns:1fr 1fr; row-gap:44px; }
  .timeline-track::before{ display:none; }
  .nav-links{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 600px){
  .wrap{ padding:0 20px; }
  .nav{ padding:0 20px; }
  section{ padding:80px 0 64px; }
  .service-grid{ grid-template-columns:1fr; }
  .timeline-track{ grid-template-columns:1fr; }
  .trust-card{ grid-template-columns:1fr; padding:24px; }
  .trust-bar{ margin-top:-40px; }
  .hero-photo{ padding:48px 0 100px; min-height:520px; }
  .form-row{ grid-template-columns:1fr; }
  .quote-form-card{ padding:28px 22px; }
  .cta-banner{ padding:40px 28px; }
  .nav-call .num{ display:none; }
  .service-detail{ padding:64px 0; }
  .testimonial-grid{ grid-template-columns:1fr; }
  .mission-card{ padding:32px 24px; }
  .service-detail-media.split{ grid-template-columns:1fr; }
}
