/* Skyward Pressure Washing — a bright, cloud-themed exterior-cleaning site.
   Signature elements: puffy cloud row dividers between sections (a CSS mask so
   one shape works in every section colour) and cloud-shaped photo cut-outs
   (an SVG clipPath defined in index.html). */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --sky-1: #eaf6ff;
  --sky-2: #cfe9ff;
  --sky-3: #bfe1ff;
  --blue: #2f83e0;
  --blue-d: #1f6fd0;
  --blue-grad: linear-gradient(180deg, #4aa6ff 0%, #2f83e0 100%);
  --btn-grad: linear-gradient(180deg, #46a0ff, #2f80ed);
  --navy: #0e2a4d;
  --ink: #143a63;
  --muted: #5c7189;
  --line: rgba(14, 42, 77, 0.1);
  --white: #ffffff;
  --pale: #eff8ff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px rgba(20, 58, 99, 0.12);
  --shadow-sm: 0 8px 22px rgba(20, 58, 99, 0.09);
  /* Cloud-scallop mask: a filled band with puffy bumps along its top edge. */
  --cloud-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,90 L0,58 Q80,8 160,54 Q236,16 320,52 Q398,4 480,54 Q560,20 640,50 Q718,6 800,54 Q882,18 960,52 Q1040,4 1120,54 Q1200,16 1280,52 Q1362,8 1440,56 L1440,90 Z' fill='%23000'/%3E%3C/svg%3E");
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  font-family: 'Poppins', sans-serif; transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--btn-grad); color: #fff; box-shadow: 0 12px 24px rgba(47, 128, 237, 0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(47, 128, 237, 0.4); }
.btn-ghost { background: #fff; color: var(--blue-d); border: 1.5px solid var(--sky-3); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--blue-d); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--blue);
}
.eyebrow svg { width: 15px; height: 15px; flex: 0 0 auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- cloud divider ---------- */
/* Sits at the top of a section and bulges up into the previous one, tinted to
   the section's own background via --sec so clouds always "rise" from it. */
.sec { position: relative; }
.cloud-cap::before {
  content: ''; position: absolute; left: -2px; right: -2px; top: 0;
  height: 90px; transform: translateY(-98%);
  background: var(--sec);
  -webkit-mask: var(--cloud-mask) bottom / 100% 100% no-repeat;
  mask: var(--cloud-mask) bottom / 100% 100% no-repeat;
  z-index: 2; pointer-events: none;
}

/* ---------- decorative floating clouds ---------- */
.cloud {
  position: absolute; background: #fff; border-radius: 100px; opacity: .9;
  pointer-events: none;
}
.cloud::before, .cloud::after {
  content: ''; position: absolute; background: #fff; border-radius: 50%;
}
.cloud::before { width: 55%; height: 150%; left: 12%; top: -60%; }
.cloud::after { width: 45%; height: 130%; right: 12%; top: -40%; }
.cloud.c-sm { width: 90px; height: 26px; }
.cloud.c-md { width: 140px; height: 38px; }
.cloud.c-lg { width: 200px; height: 52px; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { width: 42px; height: 42px; flex: 0 0 auto; }
.brand .bname { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); line-height: 1; }
.brand .btag { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-family: 'Poppins',sans-serif; color: var(--navy); font-size: 15px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #cdeaff 0%, #e9f6ff 78%, #f4fbff 100%);
  padding: 62px 0 120px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 44px; align-items: center; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; }
.hero .lede { font-size: 18px; color: #35597e; margin: 18px 0 26px; max-width: 30em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.trust { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); background: rgba(255, 255, 255, 0.6); padding: 8px 16px 8px 8px; border-radius: 99px; border: 1px solid rgba(47, 128, 237, 0.15); box-shadow: 0 4px 12px rgba(20, 58, 99, 0.04); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.trust:hover { transform: translateY(-3px); background: #ffffff; border-color: var(--blue); box-shadow: 0 8px 20px rgba(47, 128, 237, 0.15); }
.trust .ic { width: 36px; height: 36px; border-radius: 50%; background: var(--btn-grad); display: grid; place-items: center; color: #ffffff; transition: transform 0.3s ease; }
.trust:hover .ic { transform: rotate(8deg) scale(1.1); }
.trust .ic svg { width: 18px; height: 18px; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: 26px; overflow: hidden; box-shadow: 0 30px 60px rgba(20,58,99,.22);
  border: 6px solid #fff; aspect-ratio: 4/3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -14px; bottom: 26px; background: #fff; border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; z-index: 4;
}
.hero-badge .star { color: #ffb020; display: flex; }
.hero-badge .star svg { width: 15px; height: 15px; }
.hero-badge b { font-family: 'Poppins',sans-serif; font-size: 16px; color: var(--navy); }
.hero-badge small { display: block; font-size: 12px; color: var(--muted); }
.hero .cloud { z-index: 2; }

/* ---------- generic section spacing ---------- */
.block { padding: 78px 0; }
.block-sm { padding: 60px 0; }

/* ---------- intro / cloud-cutout ---------- */
.cut-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.cloud-cut-frame { position: relative; }
.cloud-cut {
  clip-path: url(#cloudCut); -webkit-clip-path: url(#cloudCut);
  width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover;
}
.cloud-cut-frame .halo {
  position: absolute; inset: -6% -4%; background: var(--sky-2);
  clip-path: url(#cloudCut); -webkit-clip-path: url(#cloudCut); z-index: -1; opacity: .55;
}
.intro-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
.intro-text p { color: var(--muted); font-size: 16.5px; margin: 16px 0; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-photo { height: 150px; overflow: hidden; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 19px; font-weight: 600; margin-bottom: 7px; }
.svc-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--blue); font-weight: 600; font-size: 14px; font-family: 'Poppins',sans-serif; }
.svc-link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ---------- before / after ---------- */
.ba-wrap { max-width: 860px; margin: 0 auto; }
.ba {
  position: relative; aspect-ratio: 16/10; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); user-select: none; touch-action: none; border: 6px solid #fff;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .before { filter: grayscale(.65) brightness(.82) contrast(.95); }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .lbl { position: absolute; bottom: 14px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(14,42,77,.6); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.ba .lbl.b { left: 14px; } .ba .lbl.a { right: 14px; background: rgba(47,131,224,.85); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(20,58,99,.12); }
.ba .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(20,58,99,.3); display: grid; place-items: center; color: var(--blue-d); }
.ba .knob svg { width: 20px; height: 20px; }
.ba-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.ba-thumbs img { border-radius: 14px; height: 110px; width: 100%; object-fit: cover; box-shadow: var(--shadow-sm); }
.center-cta { text-align: center; margin-top: 26px; }

/* ---------- why choose ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.feature-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.feature { display: flex; gap: 13px; }
.feature .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: var(--pale); display: grid; place-items: center; color: var(--blue); }
.feature .ic svg { width: 22px; height: 22px; }
.feature h4 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.feature p { font-size: 13.5px; color: var(--muted); }
.why-photo img { border-radius: 24px; box-shadow: var(--shadow); border: 6px solid #fff; width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--sky-3) 0 8px, transparent 8px 16px); }
.step { text-align: center; position: relative; }
.step .num {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: var(--btn-grad); color: #fff; font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 22px;
  box-shadow: 0 10px 22px rgba(47,128,237,.35); border: 4px solid #fff;
}
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ---------- testimonials (night sky) ---------- */
.night { position: relative; background: linear-gradient(180deg, #0e2a4d 0%, #123a6b 100%); color: #eaf3ff; }
.night .stars { position: absolute; inset: 0; background-image:
  radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
  radial-gradient(1.5px 1.5px at 70% 20%, #cfe4ff, transparent),
  radial-gradient(1px 1px at 45% 60%, #fff, transparent),
  radial-gradient(1.5px 1.5px at 85% 55%, #fff, transparent),
  radial-gradient(1px 1px at 33% 80%, #bcd6ff, transparent),
  radial-gradient(1.5px 1.5px at 60% 75%, #fff, transparent),
  radial-gradient(1px 1px at 10% 65%, #fff, transparent);
  opacity: .8; pointer-events: none; }
.night .section-head h2 { color: #fff; }
.night .section-head p { color: #b8cfec; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.rev-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 24px; backdrop-filter: blur(6px); }
.rev-stars { display: flex; gap: 3px; color: #ffb020; margin-bottom: 12px; }
.rev-stars svg { width: 16px; height: 16px; }
.rev-card p { font-size: 15px; color: #dbe8fb; }
.rev-who { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.rev-who img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); }
.rev-who .n { font-weight: 600; font-size: 14px; color: #fff; font-family: 'Poppins',sans-serif; }
.rev-who .g { font-size: 12px; color: #9fbce4; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.faq-aside .photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; aspect-ratio: 3/4; }
.faq-aside .photo img { width: 100%; height: 100%; object-fit: cover; }
.faq-callcard {
  position: absolute; left: 14px; right: 14px; bottom: 14px; background: rgba(255,255,255,.95);
  border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow-sm);
}
.faq-callcard .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--btn-grad); color: #fff; display: grid; place-items: center; }
.faq-callcard .ic svg { width: 20px; height: 20px; }
.faq-callcard small { font-size: 12px; color: var(--muted); display: block; }
.faq-callcard b { font-family: 'Poppins',sans-serif; font-size: 17px; color: var(--navy); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
details.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
details.faq[open] { border-color: var(--sky-3); box-shadow: var(--shadow-sm); }
details.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 16px; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq .chev { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--pale); color: var(--blue); display: grid; place-items: center; transition: transform .25s; }
details.faq .chev svg { width: 16px; height: 16px; }
details.faq[open] .chev { transform: rotate(180deg); }
details.faq .a { padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: center; }
.contact-photo img { border-radius: 22px; box-shadow: var(--shadow); border: 6px solid #fff; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.form-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow); border: 1px solid var(--line); padding: 30px; }
.form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--sky-3);
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fbfdff; outline: none; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 84px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; margin-top: 6px; }

/* ---------- final CTA ---------- */
.final-cta { position: relative; overflow: hidden; background: var(--blue-grad); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.final-cta p { color: #e4f2ff; font-size: 17px; margin: 14px auto 26px; max-width: 34em; }
.final-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 3; }
.final-cta .cloud { opacity: .5; }

/* ---------- footer ---------- */
.footer { position: relative; background: var(--navy); color: #b9cbe4; padding: 66px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand .bname { color: #fff; }
.footer .about { font-size: 14px; color: #93aacb; margin: 16px 0; max-width: 25em; }
.footer .social { display: flex; gap: 10px; }
.footer .social a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; color: #cdddf3; transition: background .2s, color .2s; }
.footer .social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer .social svg { width: 18px; height: 18px; }
.footer h5 { color: #fff; font-family: 'Poppins',sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 14px; letter-spacing: .02em; }
.footer .fcol a, .footer .fcol .li { display: block; font-size: 14px; color: #93aacb; padding: 5px 0; transition: color .2s; }
.footer .fcol a:hover { color: #fff; }
.footer .fcol .li { display: flex; align-items: center; gap: 8px; }
.footer .fcol .li svg { width: 15px; height: 15px; color: var(--blue); flex: 0 0 auto; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; font-size: 13px; color: #6f89ad; flex-wrap: wrap; gap: 10px; }

/* ---------- responsive ---------- */
.only-mobile { display: none; }
@media (max-width: 940px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .cut-grid, .why-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { order: -1; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--line); gap: 6px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 8px 0; }
}
@media (max-width: 560px) {
  .svc-grid, .rev-grid, .feature-2, .form-row, .steps, .ba-thumbs { grid-template-columns: 1fr; }
  .trust-row { gap: 14px; }
  .footer-top { grid-template-columns: 1fr; }
}
