/* ==========================================================================
   Precision Laundry Sales — Design Tokens & Base
   ========================================================================== */
:root {
  /* Color — primary sampled from official Precision Laundry logo (Media/Precision Laundry Logo.pdf) */
  --color-primary: #003E72;
  --color-primary-light: #0B5A94;
  --color-on-primary: #FFFFFF;
  --color-secondary: #334155;
  --color-accent: #0369A1;
  --color-accent-light: #0EA5E9;
  --color-background: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-foreground: #0B1D2E;
  --color-muted: #E8ECF1;
  --color-muted-foreground: #64748B;
  --color-border: #E2E8F0;
  --color-destructive: #DC2626;
  --color-ring: #003E72;

  /* Typography */
  --font-heading: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-body: 'Noto Sans', system-ui, -apple-system, sans-serif;

  /* Spacing (8pt rhythm) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.10), 0 2px 4px rgba(15,23,42,0.06);
  --shadow-lg: 0 16px 40px rgba(15,23,42,0.16);
  --transition: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-secondary);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-3); max-width: 68ch; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }
li { margin-bottom: var(--space-2); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section { padding: var(--space-7) 0; }
@media (max-width: 640px) {
  section { padding: var(--space-6) 0; }
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(3, 105, 161, 0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  margin-bottom: var(--space-3);
}

.section-head { max-width: 720px; margin-bottom: var(--space-6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--color-muted-foreground); font-size: 1.08rem; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 48px;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: #045884; box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: #f1f5f9; box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--color-on-primary); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-outline-dark:hover { background: var(--color-muted); }

.btn-sm { padding: 10px 20px; font-size: 0.92rem; min-height: 40px; }
.btn-block { width: 100%; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.98);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 14px 0;
}
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-primary); text-decoration: none; border-bottom-color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-phone { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.header-phone .icon { color: var(--color-accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--color-surface);
    flex-direction: column;
    align-items: stretch;
    padding: 88px var(--space-4) var(--space-4);
    gap: var(--space-4);
    transform: translateX(100%);
    transition: transform 250ms ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { display: block; padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--color-border); }
  .header-actions { flex-direction: column; align-items: stretch; }
  .header-phone { justify-content: center; padding: 10px 0; }
}

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(160deg, var(--color-primary) 0%, #142238 55%, var(--color-accent) 160%);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(14,165,233,0.35), transparent 55%),
    linear-gradient(160deg, rgba(15,23,42,0.92) 0%, rgba(20,34,56,0.85) 55%, rgba(3,105,161,0.80) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-8) 0 var(--space-7);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BAE6FD;
  margin-bottom: var(--space-3);
}
.hero h1 { color: #fff; margin-bottom: var(--space-4); }
.hero-lede { color: #CBD5E1; font-size: 1.15rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat .num { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: #fff; }
.hero-stat .label { color: #A9B8C9; font-size: 0.92rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: var(--space-6); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
}

/* Page header (interior pages) */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-7) 0 var(--space-6);
}
.page-header .section-label { background: rgba(255,255,255,0.12); color: #BAE6FD; }
.page-header h1 { color: #fff; }
.page-header p { color: #CBD5E1; font-size: 1.1rem; max-width: 65ch; }
.breadcrumbs { font-size: 0.9rem; color: #A9B8C9; margin-bottom: var(--space-3); }
.breadcrumbs a { color: #BAE6FD; }

/* Shared background-video treatment (hero, page-header, panel-dark) */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-header-video, .panel-dark-video { position: relative; overflow: hidden; }
.page-header-video::after, .panel-dark-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(14,165,233,0.35), transparent 55%),
    linear-gradient(160deg, rgba(15,23,42,0.92) 0%, rgba(20,34,56,0.85) 55%, rgba(3,105,161,0.80) 100%);
  pointer-events: none;
}
.page-header-video > .container, .panel-dark-video > .container { position: relative; z-index: 2; }

/* Trust bar */
.trust-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: var(--space-4) 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-6); align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--color-secondary); font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; }
.trust-item .icon { color: var(--color-accent); width: 22px; height: 22px; }

/* Cards / grids
   ========================================================================== */
.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,105,161,0.1);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}
.card-icon .icon { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--space-2); }
.card p { margin-bottom: 0; color: var(--color-muted-foreground); font-size: 0.98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-3); padding: 6px 2px; font-family: var(--font-heading); font-weight: 600; font-size: 0.94rem; min-height: 24px; }

/* Process / operating cycle */
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-4); }
.process-step { display: flex; gap: var(--space-4); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); }
.process-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
}
.process-step h3 { margin-bottom: 4px; font-size: 1.1rem; }
.process-step p { margin-bottom: 0; font-size: 0.96rem; color: var(--color-muted-foreground); }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--space-5); } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.split-media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.check-list { list-style: none; padding: 0; margin: var(--space-4) 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--space-3); }
.check-list .icon { color: var(--color-accent); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* Dark panel sections */
.panel-dark { background: var(--color-primary); color: #E2E8F0; }
.panel-dark h2 { color: #fff; }
.panel-dark .section-head p { color: #A9B8C9; }

.bg-surface-alt { background: #EFF3F8; }

/* Why choose us / value props */
.value-card { text-align: left; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), #12233d 60%, var(--color-accent) 160%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: var(--space-2); }
.cta-band p { color: #CBD5E1; margin-bottom: 0; }
.cta-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  padding: var(--space-4) 4px;
  cursor: pointer;
}
.faq-question .icon { color: var(--color-accent); width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.faq-answer-inner { padding: 0 4px var(--space-4); color: var(--color-muted-foreground); }

/* Service area / map */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.area-chip-list { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip { background: var(--color-muted); color: var(--color-primary); font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; padding: 8px 14px; border-radius: 999px; }

/* Contact / quote form-free layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.contact-method { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.contact-method:last-child { border-bottom: none; }
.contact-method .card-icon { margin-bottom: 0; }
.contact-method h3 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-method p { margin-bottom: 0; }
.contact-method a { color: var(--color-primary); font-weight: 600; font-size: 1.05rem; }

/* Segment / market detail blocks (services page) */
.segment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}
.segment:last-child { border-bottom: none; }
.segment:nth-child(even) .segment-media { order: 2; }
@media (max-width: 900px) {
  .segment { grid-template-columns: 1fr; }
  .segment:nth-child(even) .segment-media { order: 0; }
}
.segment-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.segment-media img { width: 100%; height: auto; aspect-ratio: 5/4; object-fit: cover; }
.segment-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(3,105,161,0.1); color: var(--color-accent); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); }

/* Footer
   ========================================================================== */
.site-footer { background: var(--color-primary); color: #A9B8C9; padding: var(--space-7) 0 var(--space-4); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 34px; margin-bottom: var(--space-3); }
.footer-brand p { color: #A9B8C9; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #A9B8C9; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-3); padding-top: var(--space-4); font-size: 0.85rem; }
.footer-bottom a { color: #A9B8C9; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-family: var(--font-heading);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--color-primary);
  border-radius: 2px;
}
