/* Pressure Clean LA — Modern, clean stylesheet */
:root{
  --bg: #0b1220;
  --bg-elev: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #0ea5e9;
  --primary-2: #22d3ee;
  --accent: linear-gradient(90deg, var(--primary), var(--primary-2));
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(14,165,233,.20), transparent 40%),
              radial-gradient(900px 500px at -10% 10%, rgba(34,211,238,.15), transparent 40%),
              var(--bg);
  line-height: 1.6;
}

/* Header / Nav */
.site-header{
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.logo{ display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: .2px;}
.logo img{ filter: drop-shadow(0 6px 14px rgba(14,165,233,.35)); }
.nav{ display: flex; align-items: center; gap: 18px; }
.nav a{ color: var(--text); text-decoration: none; font-weight: 600; opacity: .9; }
.nav a:hover{ opacity: 1; }
.nav .btn{ margin-left: 6px; }

.nav-toggle{ display: none; background: none; border: none; cursor: pointer;}
.nav-toggle span{ display: block; width: 26px; height: 2px; background: #e5e7eb; margin: 5px 0; }

/* Buttons */
.btn{ display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); text-decoration: none; color: var(--text); font-weight: 700; transition: transform .05s ease; }
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-primary{ background: var(--accent); border: 0; color: #06111b; }
.btn-ghost{ background: rgba(255,255,255,.06); }

.btn-lg{ padding: 14px 20px; border-radius: 14px; font-size: 1.05rem; }

/* Layout helpers */
.container{ width: min(1200px, 92%); margin: 0 auto; }
.section-head{ text-align: center; margin-bottom: 24px; }
.section-head.compact{ margin-bottom: 8px; }
.section-head h2{ font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem); margin: 0 0 6px; }
.section-head p{ color: var(--muted); margin: 0; }
.accent{ background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Hero */
.hero{ position: relative; min-height: 78vh; display: grid; align-items: center; }
.hero-media{ position: absolute; inset: 0; overflow: hidden; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05) brightness(.8); }
.hero-overlay{ position: absolute; inset: 0; background:
  radial-gradient(800px 400px at 20% 10%, rgba(14,165,233,.35), transparent 55%),
  linear-gradient(0deg, rgba(0,0,0,.65), rgba(0,0,0,.4));
}
.hero-inner{ position: relative; padding: 80px 0; }
.hero h1{ font-size: clamp(2rem, 3vw + 1rem, 3.2rem); margin: 0 0 12px; }
.hero p{ color: #d1d5db; max-width: 720px; }
.hero-cta{ display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;}
.hero-badges{ display: flex; gap: 16px; list-style: none; padding: 0; margin: 18px 0 0; color: #cbd5e1; flex-wrap: wrap; }
.hero-badges li{ background: rgba(255,255,255,.06); padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.08); }

/* Highlights */
.highlights{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 42px auto; }
.highlights article{ background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.highlights h3{ margin: 0 0 6px; font-size: 1.05rem; }
.highlights p{ margin: 0; color: var(--muted); }

/* Services */
.services{ padding: 42px 0 16px; }
.service-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.card{ background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card img{ width: 100%; height: 200px; object-fit: cover; }
.card-body{ padding: 16px; }
.card h3{ margin: 0 0 6px; }
.card p{ margin: 0; color: var(--muted); }

/* Pricing */
.pricing{ padding: 42px 0; }
.price-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.price-card{ background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.price-card.featured{ outline: 2px solid rgba(14,165,233,.5); transform: translateY(-2px); }
.price{ font-size: 2rem; font-weight: 800; margin: 0 0 8px; }
.price span{ font-size: .9rem; color: var(--muted); margin-right: 6px; }
.price-card ul{ margin: 0 0 14px 18px; }
.fineprint{ color: var(--muted); font-size: .9rem; }

/* Before/After slider */
.before-after{ margin: 36px auto 12px; }
.ba-wrapper{ position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); background: #0a0f1c; }
.ba-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before{ filter: contrast(.9) brightness(.9); }
.ba-after{ clip-path: inset(0 0 0 50%); }
.ba-range{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.ba-handle{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 4px; height: 100%; background: rgba(255,255,255,.7); box-shadow: 0 0 0 2px rgba(14,165,233,.6); }
.ba-handle span{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(255,255,255,.8); background: rgba(11,18,32,.85); display: grid; place-items: center; }
.ba-handle span::before{ content: '↔'; font-size: 1.2rem; color: #e5e7eb; }

.gallery-grid{ margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-grid img{ width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); }

/* Reviews */
.reviews{ padding: 36px 0; }
.review-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote{ margin: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
blockquote p{ margin: 0 0 8px; }
blockquote footer{ color: var(--muted); font-weight: 600; }

/* FAQs */
.faqs details{ background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 14px 16px; margin: 8px 0; }
.faqs summary{ cursor: pointer; font-weight: 700; }
.faqs p{ color: var(--muted); }

/* Contact */
.contact{ padding: 42px 0 80px; }
.contact-grid{ display: grid; grid-template-columns: 1.4fr .9fr; gap: 18px; align-items: start; }
.contact-card{ background: linear-gradient(180deg, rgba(34,211,238,.08), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.form-row{ display: grid; gap: 6px; margin: 10px 0; }
input, textarea{ width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 12px; color: var(--text); font: inherit; }
input::placeholder, textarea::placeholder{ color: #94a3b8; }
.map-embed iframe{ width: 100%; border-radius: 12px; }

.contact-info.card{ background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.contact-list{ list-style: none; padding: 0; margin: 0 0 12px; }
.contact-list li{ margin: 4px 0; }
.footer-links{ list-style: none; padding: 0; margin: 6px 0 0; }
.footer-links li{ margin: 4px 0; }
.footer-links a{ color: var(--text); opacity: .9; text-decoration: none; }
.footer-links a:hover{ opacity: 1; }

/* Footer */
.site-footer{ border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0 40px; background: rgba(11,18,32,.5); }
.footer-grid{ display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.footer-logo{ font-weight: 800; gap: 8px; color: var(--text); text-decoration: none; }

/* Responsive */
@media (max-width: 980px){
  .service-grid, .price-grid, .review-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .highlights{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav{ display: none; position: absolute; top: 64px; right: 12px; background: rgba(11,18,32,.95); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px; flex-direction: column; gap: 12px; width: calc(100% - 24px); }
  .nav.open{ display: flex; }
  .nav-toggle{ display: inline-block; }
  .service-grid, .price-grid, .review-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero{ min-height: 70vh; }
}

svg {
  width: 70px;
  height: 70px;
}


svg:hover path {
    fill: #0ea5e9;
}

a.ex1:link {
  	color: #fff;
  	text-decoration: none;
	}
a.ex1:visited {color: #fff;}
a.ex1:hover, a.ex1:active {color: #0ea5e9;}

img.ex1:hover{
  filter: invert(46%) sepia(65%) saturate(3661%) hue-rotate(190deg) brightness(99%) contrast(72%);
}

