/* =========================================================
   VoltFlow Services — PREMIUM unified CSS (keeps ALL pages)
   - One design system (tokens, buttons, cards, forms)
   - Home hero (blobs + glass) stays premium
   - Services + Contact match the same style
   - Sticky footer maintained
========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- Tokens ---------- */
:root{
  --max: 1160px;

  --bgA: #f6f8ff;
  --bgB: #ffffff;

  --text: #0b1226;
  --muted: rgba(15,23,42,.62);

  --stroke: rgba(15, 23, 42, .10);
  --card: rgba(255,255,255,.62);

  --violet: #6d28d9;
  --cyan:   #06b6d4;
  --pink:   #fb7185;
  --amber:  #f59e0b;
  --green:  #2eca7f;

  --headerH: 90px;
  --footerH: 90px;

  --shadow: 0 18px 60px rgba(15,23,42,.12);
  --shadow2: 0 10px 26px rgba(15,23,42,.10);
  --shadow3: 0 22px 70px rgba(15,23,42,.14);

  --r: 22px;
  --r2: 16px;

  --glass: rgba(255,255,255,.70);
  --glass2: rgba(255,255,255,.82);
}

/* ---------- Base / Reset ---------- */
*{ box-sizing: border-box; }

body{
  padding-top: 0;
  margin: 0;
  padding-top: var(--headerH);
  min-height: 100vh; /* ✅ prevents 100vh+padding overflow */
  display: flex;
  flex-direction: column;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  text-align: left;

  background:
    radial-gradient(900px 520px at 15% 0%, rgba(6,182,212,.16), transparent 60%),
    radial-gradient(900px 650px at 85% 12%, rgba(109,40,217,.14), transparent 60%),
    radial-gradient(800px 520px at 50% 110%, rgba(251,113,133,.12), transparent 60%),
    linear-gradient(180deg, var(--bgA), #eef2ff 40%, var(--bgB));
  background-repeat: no-repeat;
  background-size: cover;
}
/*
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
*/
  /* IMPORTANT: don't offset the whole body */
 /* padding-top: 0;*/
  
  
/* Your main content wrapper becomes the "flex filler" */
#app{
  flex: 1;                       /* key line */
  display: flex;
  flex-direction: column;
}
img{ width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--max), 92%); margin: 0 auto; }
.muted{ color: var(--muted); }

::selection{ background: rgba(6,182,212,.18); }

/* ---------- Core UI ---------- */
.card{
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section{ padding: 44px 0; }

.section__head{
  display:grid;
  gap: 8px;
  margin-bottom: 18px;
}
.section__head.center{ text-align: center; }
.section__head h2{
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.03em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  padding:.78rem 1.0rem;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.78);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 16px 42px rgba(15,23,42,.12);
}
.btn:active{ transform: translateY(0) scale(.99); }

.btn--full, .btnFull{ width: 100%; }

.btn--primary{
  border-color: rgba(6,182,212,.35);
  background: linear-gradient(135deg, rgba(109,40,217,.18), rgba(6,182,212,.18));
}
.btn--primary:hover{
  filter: brightness(1.02);
  border-color: rgba(6,182,212,.55);
}

/* Your home-specific button aliases (keep your HTML unchanged) */
.btnPrimary{
  border: none;
  color:#fff;
  background: linear-gradient(135deg,#6d28d9,#06b6d4);
  box-shadow: 0 14px 36px rgba(109,40,217,.35);
}
.btnPrimary:hover{
  filter: brightness(1.03);
  box-shadow: 0 18px 50px rgba(109,40,217,.38);
}
.btnGlass{
  background: rgba(255,255,255,.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.10);
}
.btnGlass:hover{
  background: rgba(255,255,255,.80);
  border-color: rgba(15,23,42,.14);
}

/* ---------- Header (sticky) ---------- */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.header.is-sticky{
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 40px rgba(15,23,42,.14);
  border-bottom-color: rgba(15,23,42,.08);
}

.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; }
.brand__logo{ height: 54px; width: auto; display:block; }

.nav{
  display: flex;
  justify-content: center;
  gap: 22px;
}
.nav__link{
  color: rgba(11,18,38,.86);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 12px;
  position: relative;
}
.nav__link:hover{
  background: rgba(15,23,42,.04);
  transform: translateY(-1px);
}
.nav__link::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(6,182,212,.75), rgba(109,40,217,.65));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav__link:hover::after{ transform: scaleX(1); }

.header__actions{
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}



.header__cta{
  border: 1px solid rgba(15,23,42,.10);
}

/* Mobile */
.iconbtn{
  display:none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.55);
  color: rgba(15,23,42,.65);
  cursor: pointer;
}
.iconbtn:hover{ background: rgba(255,255,255,.78); }

.mobile[hidden]{ display:none; }
.mobile{
  padding: 10px 0 16px;
  display: grid;
  gap: 10px;
}
.mobile a{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.12);
  font-weight: 800;
  color: rgba(15,23,42,.82);
}
.mobile__cta{ margin-top: 4px; }
































:root{
  --ink: #0f172a;
  --muted: rgba(15,23,42,.68);
  --muted2: rgba(15,23,42,.56);
  --line: rgba(15,23,42,.10);
  --glass: rgba(255,255,255,.78);
  --glass2: rgba(255,255,255,.66);
  --shadow: 0 22px 70px rgba(15,23,42,.12);
  --shadow2: 0 34px 110px rgba(15,23,42,.16);

  --g1: #6d28d9;
  --g2: #06b6d4;
}

*{ box-sizing:border-box; }
img{ max-width:100%; display:block; }
a{ color:inherit; }

.container{
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* =========================
   HEADER (premium + clean)
========================= */

.siteHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.headerWrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brandLogo{ width: 34px; height: 34px; }
.brandName{ color: rgba(15,23,42,.92); }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.navLink{
  text-decoration:none;
  font-weight: 800;
  font-size: .88rem;
  color: rgba(15,23,42,.72);
  padding: 10px 10px;
  border-radius: 12px;
}
.navLink:hover{
  background: rgba(15,23,42,.04);
}
.navLink.isActive{
  color: rgba(15,23,42,.92);
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
}

.headerActions{
  display:flex;
  gap: 10px;
}
.iconBtn{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  text-decoration:none;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
}
.iconBtn:hover{
  background: rgba(15,23,42,.06);
}

/* =========================
   HERO (Agency-grade)
========================= */

.hero{
  position: relative;
  overflow: hidden;
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 20% 15%, rgba(109,40,217,.14), transparent 45%),
    radial-gradient(circle at 80% 18%, rgba(6,182,212,.14), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(251,113,133,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.94));
}

/* subtle texture */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.12) 0, transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,.10) 0, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,.08) 0, transparent 50%);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items: start;
  position:relative;
  z-index:1;
}

/* LEFT */
.heroKickerRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  font-weight: 900;
  font-size: .86rem;
  color: rgba(15,23,42,.82);
}
.kDot{
  width: 10px; height: 10px; border-radius: 99px;
  background: linear-gradient(135deg, var(--g2), var(--g1));
  box-shadow: 0 10px 20px rgba(109,40,217,.22);
}
.kPill{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  font-size: .78rem;
  font-weight: 900;
}

.availability{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  font-weight: 900;
  font-size: .86rem;
  color: rgba(15,23,42,.82);
}
.aDot{
  width: 10px; height: 10px; border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 10px 20px rgba(34,197,94,.22);
}

.heroTitle{
  margin: 0 0 14px;
  font-size: clamp(3rem, 4.3vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: rgba(15,23,42,.92);
}
.heroTitle span{
  background: linear-gradient(135deg, var(--g2), var(--g1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heroSub{
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.heroAlert{
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
  color: rgba(15,23,42,.74);
  font-weight: 800;
}
.heroAlert b{ color: rgba(15,23,42,.92); }
.heroAlert span{ color: rgba(109,40,217,.90); }

.heroCtas{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,.10);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  position: relative;
}

.btnHint{
  display:block;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.86);
  opacity: .92;
}

.btnPrimary{
  color:#fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 26px 70px rgba(109,40,217,.34);
  padding: 16px 22px;
  border: 0;
}
.btnPrimary:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 90px rgba(109,40,217,.40);
}

.btnGlass{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  color: rgba(15,23,42,.88);
}
.btnGlass .btnHint{ color: rgba(15,23,42,.62); }
.btnGlass:hover{ transform: translateY(-2px); }

.btnGhost{
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.86);
}
.btnGhost:hover{ background: rgba(15,23,42,.06); transform: translateY(-2px); }

.btnPulse{ isolation: isolate; }

/* Trust chips */
.trustRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}
.trustChip{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 46px rgba(15,23,42,.08);
  font-weight: 900;
  font-size: .86rem;
  color: rgba(15,23,42,.76);
}

/* Steps */
.steps{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.step{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.70);
  font-weight: 900;
  font-size: .86rem;
}
.step span{
  width: 22px; height: 22px;
  border-radius: 99px;
  display:grid; place-items:center;
  color:#fff;
  font-size: .82rem;
  background: linear-gradient(135deg, var(--g2), var(--g1));
  box-shadow: 0 12px 26px rgba(109,40,217,.22);
}

/* Proof bar */
.proofBar{
  display:flex;
  gap: 14px;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 70ch;
}
.ratingBlock{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
}
.stars{
  font-weight: 1000;
  letter-spacing: .14em;
}
.ratingMeta b{
  display:block;
  letter-spacing: -0.02em;
}
.ratingMeta span{
  display:block;
  font-size: .86rem;
  color: var(--muted2);
  font-weight: 800;
}

.reviewMini{
  flex: 1;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
  color: rgba(15,23,42,.72);
  font-weight: 800;
}
.reviewMini span{
  display:block;
  margin-top: 8px;
  color: rgba(15,23,42,.54);
  font-weight: 800;
  font-size: .86rem;
}

/* RIGHT */
.heroRight{
  position: relative;
  min-height: 620px;
}

.rightPanel{
  position:absolute;
  inset: 6px -22px 10px -22px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.40), rgba(255,255,255,.16));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 44px 140px rgba(15,23,42,.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 0;
}

/* service cards */
.serviceCards{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.svcCard{
  text-decoration:none;
  padding: 14px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .16s ease, box-shadow .16s ease;
}
.svcCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 32px 80px rgba(15,23,42,.14);
}
.svcTop{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 6px;
}
.svcIcon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color:#fff;
  background: linear-gradient(135deg, var(--g2), var(--g1));
  box-shadow: 0 14px 34px rgba(109,40,217,.20);
}
.svcCard b{
  font-size: .98rem;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.92);
}
.svcMeta{
  display:block;
  font-size: .86rem;
  font-weight: 800;
  color: rgba(15,23,42,.62);
  line-height: 1.25;
}

/* request card */
.requestCard{
  position: relative;
  z-index: 2;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.requestHead b{
  display:block;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}
.micro{
  display:block;
  margin-top: 4px;
  color: rgba(15,23,42,.62);
  font-weight: 800;
  font-size: .86rem;
}

.requestForm{
  margin-top: 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field{
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  outline: none;
  font-weight: 800;
  color: rgba(15,23,42,.84);
}
.field:focus{
  border-color: rgba(109,40,217,.35);
  box-shadow: 0 0 0 4px rgba(109,40,217,.12);
}

.btnFull{ width: 100%; }

.formNote{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
  color: rgba(15,23,42,.62);
  font-weight: 900;
  font-size: .84rem;
}
.formNote span{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
}

.contactQuick{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}
.quickLink{
  flex:1;
  text-align:center;
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  font-weight: 900;
  color: rgba(15,23,42,.78);
}
.quickLink:hover{ background: rgba(15,23,42,.06); }

/* floating blobs (subtle) */
.blob{
  position:absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: .55;
  z-index: 1;
  pointer-events:none;
}
.blob1{
  width: 220px; height: 220px;
  top: -40px; right: -50px;
  background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.55), transparent 60%);
}
.blob2{
  width: 260px; height: 260px;
  bottom: 120px; left: -70px;
  background: radial-gradient(circle at 30% 30%, rgba(109,40,217,.55), transparent 60%);
}
.blob3{
  width: 220px; height: 220px;
  bottom: -70px; right: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(251,113,133,.42), transparent 62%);
}

/* Accessibility helper */
.srOnly{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   Subtle urgency animation
========================= */

@media (prefers-reduced-motion: no-preference){
  .btnPulse::before{
    content:"";
    position:absolute;
    inset: -6px;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.30), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(109,40,217,.26), transparent 60%);
    z-index: -1;
    opacity: .55;
    filter: blur(10px);
    animation: pulseGlow 2.2s ease-in-out infinite;
  }

  .btnPulse{
    animation: pulseLift 2.2s ease-in-out infinite;
    will-change: transform;
  }

  @keyframes pulseGlow{
    0%,100%{ transform: scale(1); opacity: .45; }
    50%{ transform: scale(1.05); opacity: .70; }
  }

  @keyframes pulseLift{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-2px); }
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1020px){
  .nav{ display:none; } /* optional: keep if you want a burger menu later */
  .heroGrid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .heroRight{
    min-height: 0;
  }
  .rightPanel{ display:none; }
  .serviceCards{
    grid-template-columns: 1fr;
  }
  .formRow{
    grid-template-columns: 1fr;
  }
  .contactQuick{
    flex-direction: column;
  }
}

@media (max-width: 560px){
  .hero{
    padding: 56px 0 72px;
  }
  .heroTitle{
    font-size: clamp(2.35rem, 7.4vw, 3.05rem);
  }
  .kicker, .availability{
    width: 100%;
    justify-content: center;
  }
  .btn{
    width: 100%;
  }
  .heroCtas{
    gap: 10px;
  }
}


































/* =========================================================
   SERVICES PAGE — PREMIUM (matches HOME hero)
========================================================= */

.servicesPage{
  padding: 64px 0 70px;
}

/* hero header */
.servicesHero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
}

.servicesBadge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  color:#fff;
  background: linear-gradient(135deg,#6d28d9,#06b6d4);
  box-shadow: 0 14px 40px rgba(109,40,217,.22);
}

.servicesTitle{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 3.3vw, 3.0rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.servicesTitle span{
  background: linear-gradient(135deg,#06b6d4,#6d28d9);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.servicesLead{
  margin: 0 0 14px;
  max-width: 60ch;
  color: rgba(15,23,42,.72);
  font-size: 1.06rem;
}


.servicesPills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.servicesPill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: .88rem;
  color: rgba(15,23,42,.74);
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
}

/* right panel */
.servicesPanel{
  position: relative;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  overflow: hidden;
}

.servicesPanel::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(109,40,217,.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(6,182,212,.18), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(251,113,133,.14), transparent 50%);
  filter: blur(40px);
  opacity: .9;
  pointer-events:none;
}

.servicesPanel__top{
  position: relative;
  z-index: 1;
  display:grid;
  gap: 6px;
  margin-bottom: 12px;
}
.servicesPanel__note{
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-weight: 700;
}

/* tiles grid */
.svcTiles{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* premium tile */
.svcTile{
  position: relative;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.svcTile::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(680px 300px at 12% 0%, var(--svcA, rgba(6,182,212,.18)), transparent 55%),
    radial-gradient(680px 300px at 88% 10%, var(--svcB, rgba(109,40,217,.14)), transparent 55%);
  opacity: .95;
  pointer-events:none;
}

.svcTile:hover{
  transform: translateY(-5px);
  background: rgba(255,255,255,.72);
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 26px 90px rgba(15,23,42,.14);
}

.svcTile__head{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

.svcTile__icon{
  width: 46px;
  height: 46px;
  display:grid;
  place-items:center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(15,23,42,.10);
  font-size: 20px;
}

.svcTile__title b{
  display:block;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.svcTile__title .muted{
  display:block;
  font-size: .92rem;
  margin-top: 2px;
}

.svcTile__cta{
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.svcTile__cta:hover{
  transform: translateX(2px);
  background: rgba(255,255,255,.82);
}

.svcTile__desc{
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: rgba(15,23,42,.72);
}

.svcTile__list{
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;
}

.svcTile__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(15,23,42,.70);
  font-weight: 650;
}

.svcTile__list li::before{
  content:"✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.74);
  color: rgba(15,23,42,.70);
  margin-top: 1px;
}

.svcTile__foot{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.08);
  font-weight: 750;
}

/* themes */
.svcTile--electric{ --svcA: rgba(6,182,212,.22); --svcB: rgba(59,130,246,.12); }
.svcTile--plumbing{ --svcA: rgba(251,113,133,.20); --svcB: rgba(245,158,11,.12); }
.svcTile--heating{  --svcA: rgba(245,158,11,.22); --svcB: rgba(250,204,21,.12); }
.svcTile--gas{      --svcA: rgba(109,40,217,.20); --svcB: rgba(6,182,212,.12); }

/* responsive */
@media (max-width: 980px){
  .servicesHero{ grid-template-columns: 1fr; }
  .svcTiles{ grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICES – Mobile: move the right panel AFTER the tiles
   (CSS-only, no HTML change)
========================================================= */
@media (max-width: 980px){

  /* stack everything */
  .servicesPage .container{
    display: flex;
    flex-direction: column;
  }

  /* IMPORTANT: unwrap hero so left/right become container children */
  .servicesHero{
    display: contents;
  }

  /* order: hero text -> tiles -> panel */
  .servicesHero__left{ order: 1; }
  .svcTiles{ order: 2; }
  .servicesHero__right{
    order: 3;
    margin-top: 18px;
  }

  /* optional: make the bottom panel look intentional */
  .servicesPanel{
    max-width: 560px;
    margin: 0 auto;
  }
}



/* =========================================================
   CONTACT PAGE — PREMIUM PACK (FULL)
   Includes:
   1) Site-wide premium forms (used by Contact + any other forms)
   2) Contact page layout + cards + quick-help tiles
   3) Responsive rules
   Paste at END of style.css and remove older Contact/Form blocks
========================================================= */


/* =========================================================
   1) FORMS — Premium upgrade (site-wide)
========================================================= */
.form__row{ display:grid; gap: 8px; }

label{
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.86);
}

/* base fields */
input, select, textarea{
  width: 100%;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.80);
  color: var(--text);
  outline: none;

  box-shadow:
    0 12px 30px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.70);

  transition:
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    transform .18s ease;
}

/* placeholder */
input::placeholder,
textarea::placeholder{
  color: rgba(15,23,42,.42);
}

/* hover */
input:hover,
select:hover,
textarea:hover{
  background: rgba(255,255,255,.90);
  border-color: rgba(15,23,42,.14);
}

/* focus ring */
input:focus,
select:focus,
textarea:focus{
  border-color: rgba(6,182,212,.60);
  background: rgba(255,255,255,.96);
  box-shadow:
    0 0 0 5px rgba(6,182,212,.14),
    0 18px 50px rgba(15,23,42,.12);
  transform: translateY(-1px);
}

/* textarea */
textarea{
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

/* two-column rows */
.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fineprint{
  margin: 0;
  color: rgba(15,23,42,.62);
  font-weight: 650;
  font-size: .92rem;
}

/* SELECT arrow */
select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15,23,42,.55) 50%),
    linear-gradient(135deg, rgba(15,23,42,.55) 50%, transparent 50%),
    linear-gradient(to right, rgba(15,23,42,.10), rgba(15,23,42,.10));
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 14px) 52%,
    calc(100% - 38px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 56%;
  background-repeat: no-repeat;
}

select:invalid{ color: rgba(15,23,42,.45); }

/* autofill (chrome) */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill{
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,.94) inset;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.94) inset;
}

/* disabled */
input:disabled,
select:disabled,
textarea:disabled{
  opacity: .7;
  cursor: not-allowed;
  background: rgba(255,255,255,.62);
}


/* =========================================================
   2) CONTACT — Premium layout + cards
========================================================= */
.contactPage{
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}

/* premium colorful glow bg */
.contactPage::before{
  content:"";
  position:absolute;
  inset:-25% -15% -25% -15%;
  background:
    radial-gradient(720px 460px at 18% 18%, rgba(6,182,212,.22), transparent 55%),
    radial-gradient(760px 480px at 82% 22%, rgba(109,40,217,.22), transparent 58%),
    radial-gradient(760px 520px at 52% 92%, rgba(251,113,133,.18), transparent 60%);
  filter: blur(52px);
  opacity: .85;
  z-index: 0;
  pointer-events:none;
}

/* subtle texture */
.contactPage::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.16) 0, transparent 38%),
    radial-gradient(circle at 90% 18%, rgba(255,255,255,.10) 0, transparent 44%),
    radial-gradient(circle at 60% 92%, rgba(255,255,255,.10) 0, transparent 48%);
  opacity:.55;
  z-index:0;
  pointer-events:none;
}

.contactPage > .container{ position: relative; z-index: 1; }

/* stronger page heading */
.contactPage .section__head{
  margin-bottom: 22px;
  max-width: 860px;
}
.contactPage .section__head h2{
  font-size: clamp(2.1rem, 3.1vw, 2.6rem);
  letter-spacing: -0.045em;
}
.contactPage .section__head p{
  font-size: 1.02rem;
  color: rgba(15,23,42,.68);
}

/* layout */
.contactLayout{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: start;
}

/* premium card surface */
.contactSide.card,
.contactMain.card{
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.35);
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  box-shadow:
    0 28px 90px rgba(15,23,42,.16),
    0 10px 30px rgba(15,23,42,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.contactSide.card::before,
.contactMain.card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 25% 0%, rgba(255,255,255,.70), transparent 60%),
    radial-gradient(600px 240px at 80% 15%, rgba(6,182,212,.14), transparent 55%),
    radial-gradient(700px 260px at 70% 90%, rgba(109,40,217,.12), transparent 60%);
  opacity: .9;
  pointer-events:none;
}

.contactSide{ padding: 18px; }
.contactMain{ padding: 18px; }

.contactSide__top h3,
.contactMain__head h3{
  margin: 0 0 6px;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
  color: #0b1226;
}
.contactSide__top p,
.contactMain__head p{
  margin: 0;
  color: rgba(15,23,42,.64);
}

/* quick-help tiles */
.contactCards{ display:grid; gap: 12px; margin-top: 14px; }

.contactMini{
  position: relative;
  display:grid;
  grid-template-columns: 52px 1fr auto;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 46px rgba(15,23,42,.10);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.contactMini::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.55), transparent 48%);
  opacity: .8;
  pointer-events:none;
}

.contactMini:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.82);
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 22px 70px rgba(15,23,42,.14);
}

.contactMini__icon{
  width: 52px; height: 52px;
  display:grid;
  place-items:center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.40), transparent 55%),
    linear-gradient(135deg, rgba(109,40,217,.18), rgba(6,182,212,.20));
  box-shadow: 0 18px 44px rgba(15,23,42,.14);
  font-size: 20px;
}

.contactMini__text b{
  display:block;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: #0b1226;
}
.contactMini__text .muted{
  color: rgba(15,23,42,.60);
  font-weight: 700;
}

.contactMini__arrow{
  color: rgba(15,23,42,.40);
  font-weight: 900;
  transition: transform .18s ease, color .18s ease;
}
a.contactMini:hover .contactMini__arrow{
  transform: translateX(3px);
  color: rgba(15,23,42,.75);
}

/* form spacing */
.contactForm{
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

/* slightly “richer” fields inside contact card */
.contactMain input,
.contactMain select,
.contactMain textarea{
  background: rgba(255,255,255,.84);
  border-color: rgba(15,23,42,.10);
}

/* footer inside form */
.contactForm__foot{
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.08);
}

/* submit button: match home hero gradient */
.contactMain .btn--primary{
  border: 0;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 22px 70px rgba(109,40,217,.28);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.contactMain .btn--primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 28px 90px rgba(109,40,217,.34);
}
.contactMain .btn--primary:active{
  transform: translateY(0px) scale(.99);
}


/* =========================================================
   3) RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .contactLayout{ grid-template-columns: 1fr; }
  .contactPage{ padding: 56px 0 70px; }
}

@media (max-width: 560px){
  .two{ grid-template-columns: 1fr; }
  .contactMini{ grid-template-columns: 50px 1fr auto; }
  .contactMini__icon{ width: 50px; height: 50px; border-radius: 16px; }
}




/* =========================================================
   WORKS PAGE
========================================================= */

.worksPage{
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}

.worksHero{
  text-align: center;
  margin-bottom: 36px;
}

.worksHero h1{
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.worksHero h1 span{
  background: linear-gradient(135deg, #06b6d4, #6d28d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.worksHero p{
  color: rgba(15,23,42,.70);
  max-width: 640px;
  margin: 0 auto;
}

/* filters */
.worksFilters{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 30px;
}

.worksFilter{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  font-weight:700;
  cursor:pointer;
}

.worksFilter.active{
  background: linear-gradient(135deg,#6d28d9,#06b6d4);
  color:#fff;
  border:none;
}

/* grid */
.worksGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.workCard{
  border-radius:22px;
  overflow:hidden;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(15,23,42,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.workCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(15,23,42,.18);
}

.workCard__img img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.workCard__content{
  padding:16px;
}

.workCard__content b{
  display:block;
  margin-bottom:4px;
}

.workCard__content p{
  margin:6px 0 0;
  font-size:.92rem;
  color:rgba(15,23,42,.70);
}

/* responsive */
@media (max-width: 980px){
  .worksGrid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .worksGrid{
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   REVIEWS PAGE
========================================================= */

.reviewsPage{
  padding: 72px 0 90px;
  position: relative;
}

.reviewsHero{
  text-align:center;
  margin-bottom:40px;
}

.reviewsHero h1{
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing:-0.04em;
  margin:0 0 10px;
}
.reviewsHero h1 span{
  background: linear-gradient(135deg,#06b6d4,#6d28d9);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.reviewsHero p{
  color: rgba(15,23,42,.70);
}

.reviewsGrid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}

.reviewCard{
  padding:22px;
  border-radius:22px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(15,23,42,.12);
  transition: transform .2s ease;
}

.reviewCard:hover{
  transform: translateY(-6px);
}

.reviewStars{
  color:#f59e0b;
  font-size:1.2rem;
  margin-bottom:10px;
}

.reviewCard p{
  font-size:.95rem;
  color: rgba(15,23,42,.72);
  margin:0 0 14px;
}

.reviewAuthor b{
  display:block;
}

@media (max-width:980px){
  .reviewsGrid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:560px){
  .reviewsGrid{
    grid-template-columns:1fr;
  }
}


/* ---------- Footer ---------- */
/* footer should be natural height */
.footer{
  margin-top: auto;           /* sticky footer push */
  min-height: var(--footerH);


  /* keep your styling */
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 0 34px;
}

.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 14px;
  align-items:center;
}
.footer__links{ display:flex; gap: 12px; flex-wrap: wrap; }
.footer__links a{
  color: rgba(15,23,42,.72);
  font-weight: 800;
}
.footer__links a:hover{ color: rgba(11,18,38,.95); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .header__inner{ grid-template-columns: auto auto; }
  .nav{ display:none; }
  .iconLink{ display:none; }
  .iconbtn{ display:grid; place-items:center; }

  .heroWrap{ grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .heroButtons{ justify-content: center; }
  .heroStats{ justify-content: center; }
  .heroVisual{ margin-top: 18px; }

  .svcGrid{ grid-template-columns: 1fr; }
  .contactLayout{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .two{ grid-template-columns: 1fr; }
  .heroStats{ gap: 16px; }
}
