/* ══════════════════════════════════════════════
   Riverview Electricians
   riverview-electricians.com
   Palette: storm teal / electric cyan / hot orange
   Type: Rajdhani (display) / Nunito Sans (body)
══════════════════════════════════════════════ */

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

:root {
  --night:    #0A1A1F;
  --deep:     #0E2B33;
  --teal:     #163A45;
  --plate:    #1E4A58;
  --cyan:     #00C2E0;
  --cyan-d:   #00A8C4;
  --cyan-glow:rgba(0,194,224,.18);
  --orange:   #FF5500;
  --orange-d: #E04A00;
  --frost:    #F2F8FA;
  --slate:    #6B99A8;
  --border:   rgba(0,194,224,.14);
  --disp:     'Rajdhani', 'Impact', sans-serif;
  --body:     'Nunito Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--night);
  color: var(--frost);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--cyan); color: var(--night);
  padding: .5rem 1rem; border-radius: 4px;
  font-weight: 800; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  #radar-canvas { display: none; }
}

/* ── RADAR PULSE CANVAS ── */
#radar-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ══ ANNOUNCE BAR ══ */
.announce {
  background: var(--orange);
  text-align: center; padding: 9px 5vw;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; color: #fff;
  position: relative; z-index: 101;
}
.announce a { color: #fff; text-decoration: underline; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 66px;
  background: rgba(10,26,31,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(10,26,31,.99); }

.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-icon {
  width: 36px; height: 36px; border-radius: 7px;
  background: var(--cyan); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon svg { width: 20px; height: 20px; }

.nav-wordmark {
  font-family: var(--disp);
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: .07em; color: var(--frost); line-height: 1.1;
}
.nav-wordmark small {
  display: block; font-family: var(--body);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate); margin-top: 1px;
}

.nav-right { display: flex; align-items: center; gap: .85rem; }
.nav-ph {
  font-size: .85rem; font-weight: 700;
  color: var(--cyan); text-decoration: none; display: none;
}
.nav-ph:hover { color: var(--cyan-d); }
@media(min-width:860px){ .nav-ph { display: block; } }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--orange); color: #fff;
  font-family: var(--disp); font-size: 1rem;
  font-weight: 700; letter-spacing: .1em;
  padding: 9px 18px; border-radius: 5px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-d); transform: translateY(-1px); }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

/* Teal radial wash — gives depth */
.hero-wash {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 65% 50%, rgba(0,194,224,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal accent bar */
.hero-diag {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(135deg, transparent 0%, rgba(0,194,224,.04) 100%);
  border-left: 1px solid rgba(0,194,224,.1);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: auto; width: 100%;
  display: grid; grid-template-columns: 55% 45%;
  gap: 3rem; align-items: center;
}

/* Tag */
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(0,194,224,.3);
  background: rgba(0,194,224,.07);
  color: var(--cyan); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 1.3rem;
}
.tag-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: tp 1.4s ease-in-out infinite;
}
@keyframes tp { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.2;transform:scale(.7)} }

/* H1 */
.hero-h1 {
  font-family: var(--disp);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700; line-height: .95;
  letter-spacing: .03em; color: var(--frost);
  margin-bottom: 1.4rem;
}
.hero-h1 .accent {
  color: var(--cyan);
  position: relative; display: inline-block;
}
/* Signature: cyan underline charges in */
.hero-h1 .accent::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--cyan), rgba(0,194,224,0));
  animation: charge 1s cubic-bezier(.4,0,.2,1) .8s forwards;
}
@keyframes charge { to { width: 100%; } }

.hero-sub {
  font-size: 1rem; color: rgba(242,248,250,.68);
  line-height: 1.78; max-width: 500px; margin-bottom: 2rem;
}

.hero-acts { display: flex; flex-wrap: wrap; gap: .9rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: #fff;
  font-family: var(--disp); font-size: 1.1rem;
  font-weight: 700; letter-spacing: .1em;
  padding: 14px 26px; border-radius: 5px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,85,0,.5);
  animation: octa 2.8s ease-in-out 2s infinite;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); animation: none; }
@keyframes octa {
  0%,100%{ box-shadow:0 0 0 0 rgba(255,85,0,.5); }
  50%{ box-shadow:0 0 0 16px rgba(255,85,0,0); }
}

.btn-cyan {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,194,224,.12);
  border: 1px solid rgba(0,194,224,.35);
  color: var(--cyan); font-size: .92rem; font-weight: 700;
  padding: 13px 22px; border-radius: 5px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-cyan:hover { background: rgba(0,194,224,.2); border-color: var(--cyan); }

/* Big phone under CTA */
.hero-ph-row {
  margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.ph-eyebrow { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); }
.ph-num {
  font-family: var(--disp); font-size: 2.2rem; font-weight: 700;
  letter-spacing: .06em; color: var(--cyan);
  text-decoration: none; transition: color .2s;
}
.ph-num:hover { color: var(--cyan-d); }

/* HERO RIGHT — photo mosaic */
.hero-right { position: relative; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 8px;
}
.mosaic-item {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(0,194,224,.12);
  position: relative;
}
.mosaic-item:first-child { grid-column: span 2; animation: mf 8s ease-in-out infinite; }
.mosaic-item:nth-child(2) { animation: mf 8s ease-in-out 1.3s infinite; }
.mosaic-item:nth-child(3) { animation: mf 8s ease-in-out 2.6s infinite; }
@keyframes mf { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.88) saturate(1.05);
  transition: filter .4s;
}
.mosaic-item:hover img { filter: brightness(1) saturate(1.15); }

/* Floating badge */
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--cyan); color: var(--night);
  padding: 12px 18px; border-radius: 8px;
  font-family: var(--disp); font-size: .85rem; font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 8px 28px rgba(0,194,224,.4);
  animation: bpop .6s cubic-bezier(.34,1.56,.64,1) 1.4s both;
}
@keyframes bpop { from{transform:scale(0) rotate(-6deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }
.hero-badge strong { display: block; font-size: 1.6rem; letter-spacing: .02em; }

/* ══ TRUST STRIP ══ */
.trust-strip {
  position: relative; z-index: 1;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 5vw;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1.6rem;
}
.trust-it {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; color: rgba(242,248,250,.85);
}
.trust-it svg { color: var(--cyan); flex-shrink: 0; }

/* ══ GENERIC SECTION ══ */
section { position: relative; z-index: 1; }
.wrap { max-width: 1200px; margin: auto; padding: 90px 5vw; }

.ew {
  font-size: .66rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .65rem;
}
h2 {
  font-family: var(--disp);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700; letter-spacing: .04em; line-height: 1.05;
  color: var(--frost); margin-bottom: 1rem;
}
h2 em { font-style: normal; color: var(--cyan); }
.sec-lead {
  font-size: .98rem; color: rgba(242,248,250,.62);
  line-height: 1.78; max-width: 600px; margin-bottom: 3rem;
}

/* ══ SERVICES — alternating card grid ══ */
.svc-bg { background: var(--deep); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
/* Wide card on each row */
.svc-grid .svc-card:nth-child(1) { grid-column: span 2; }
.svc-grid .svc-card:nth-child(5) { grid-column: span 2; }

.svc-card {
  background: var(--teal);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: default;
}
/* Animated cyan corner accent */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent var(--cyan) transparent transparent;
  transition: border-width .35s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover { transform: translateY(-5px); border-color: rgba(0,194,224,.35); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.svc-card:hover::before { border-width: 0 48px 48px 0; }

.svc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(0,194,224,.1);
  border: 1px solid rgba(0,194,224,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; color: var(--cyan);
  transition: background .25s;
}
.svc-card:hover .svc-icon { background: rgba(0,194,224,.2); }
.svc-card h3 {
  font-family: var(--disp);
  font-size: 1.3rem; font-weight: 700; letter-spacing: .05em;
  color: var(--frost); margin-bottom: .6rem;
}
.svc-card p { font-size: .88rem; color: var(--slate); line-height: 1.68; }
.svc-more {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.1rem; font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); text-decoration: none;
  opacity: 0; transition: opacity .25s;
}
.svc-card:hover .svc-more { opacity: 1; }

/* ══ PHOTO GALLERY ══ */
.gallery-bg { background: var(--night); }
.gallery-scroll {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  height: 340px; gap: 6px;
  border-radius: 10px; overflow: hidden;
}
.gal-cell { position: relative; overflow: hidden; }
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.78) saturate(.9);
  transition: transform .5s ease, filter .4s;
}
.gal-cell:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.15); }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem;
  background: linear-gradient(to top, rgba(10,26,31,.9) 0%, transparent 100%);
  font-family: var(--disp); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
  transform: translateY(100%); transition: transform .3s;
}
.gal-cell:hover .gal-label { transform: translateY(0); }

/* ══ PROCESS ══ */
.proc-bg { background: var(--deep); }
.proc-flex {
  display: flex; gap: 0;
  align-items: stretch;
}
.proc-item {
  flex: 1; text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  border-right: 1px solid var(--border);
}
.proc-item:last-child { border-right: none; }
/* Arrow between steps */
.proc-item:not(:last-child)::after {
  content: '›';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--cyan); opacity: .6; z-index: 1;
}
.proc-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--disp); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 20px rgba(0,194,224,.25), inset 0 0 20px rgba(0,194,224,.05);
}
.proc-item h3 {
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .05em; color: var(--frost); margin-bottom: .4rem;
}
.proc-item p { font-size: .84rem; color: var(--slate); line-height: 1.65; }

/* ══ REVIEWS ══ */
.rev-bg { background: var(--teal); }
.rev-overflow { overflow: hidden; }
.rev-track {
  display: flex; gap: 1.2rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.rev-card {
  flex: 0 0 calc(33.333% - .8rem);
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1.9rem 1.7rem;
  position: relative; overflow: hidden;
}
.rev-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--cyan);
  transition: height .4s;
}
.rev-card:hover::before { height: 100%; }
.rev-stars { color: #FFB800; font-size: .95rem; letter-spacing: .04em; margin-bottom: .75rem; }
.rev-quote {
  position: absolute; top: 1.4rem; right: 1.4rem;
  font-size: 3rem; line-height: 1; color: rgba(0,194,224,.08);
  font-family: Georgia, serif;
}
.rev-text { font-size: .9rem; color: rgba(242,248,250,.82); line-height: 1.72; margin-bottom: 1.1rem; }
.rev-foot { display: flex; align-items: center; gap: .75rem; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  color: var(--night); flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: .9rem; color: var(--frost); }
.rev-loc { font-size: .73rem; color: var(--slate); margin-top: .1rem; }
.rev-g-badge { display: flex; align-items: center; gap: .3rem; margin-top: .6rem; font-size: .7rem; color: var(--slate); }

.car-ctrl { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); border: 1px solid var(--border);
  color: var(--cyan); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s;
}
.car-btn:hover { background: rgba(0,194,224,.1); }
.car-dots { display: flex; gap: .5rem; }
.car-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,194,224,.2); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.car-dot.active { background: var(--cyan); transform: scale(1.35); }

/* ══ WHY US ══ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.why-list li:last-child { border-bottom: none; }
.why-ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 8px;
  background: rgba(0,194,224,.08);
  border: 1px solid rgba(0,194,224,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); margin-top: 2px;
}
.why-t strong { display: block; font-weight: 700; color: var(--frost); margin-bottom: .2rem; font-size: .98rem; }
.why-t p { font-size: .87rem; color: var(--slate); line-height: 1.65; }

/* Rating panel */
.rating-panel {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-d) 100%);
  border-radius: 12px; padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,194,224,.25);
}
.rp-big { font-family: var(--disp); font-size: 5.5rem; font-weight: 700; letter-spacing: .02em; color: var(--night); line-height: 1; }
.rp-lbl { font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: rgba(10,26,31,.6); margin-bottom: 1.8rem; text-transform: uppercase; }
.rp-rev {
  background: rgba(10,26,31,.15); border-radius: 8px;
  padding: 1.2rem; margin-top: 1rem; text-align: left;
}
.rp-rev .stars { color: var(--night); font-size: .9rem; margin-bottom: .4rem; }
.rp-rev p { font-size: .84rem; color: rgba(10,26,31,.88); line-height: 1.6; }
.rp-rev cite { font-size: .7rem; color: rgba(10,26,31,.55); font-style: normal; display: block; margin-top: .35rem; }

/* ══ EMERGENCY BAND ══ */
.emg {
  background: linear-gradient(135deg, #3a0f00 0%, #1a0800 100%);
  border-top: 1px solid rgba(255,85,0,.3);
  border-bottom: 1px solid rgba(255,85,0,.3);
  text-align: center;
}
.emg h2 { color: #fff; }
.emg p { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 2rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--orange);
  font-family: var(--disp); font-size: 1.15rem; font-weight: 700;
  letter-spacing: .1em; padding: 16px 32px; border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }

/* ══ CONTACT ══ */
.contact-bg { background: var(--deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-rows { display: flex; flex-direction: column; gap: 1.9rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,194,224,.08); border: 1px solid rgba(0,194,224,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.info-lbl { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); margin-bottom: .22rem; }
.info-val { color: var(--frost); font-size: 1rem; font-weight: 600; line-height: 1.5; }
.info-val a { color: var(--frost); text-decoration: none; }
.info-val a:hover { color: var(--cyan); }
.map-box {
  border-radius: 10px; overflow: hidden; height: 340px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ FAQ ══ */
.faq-bg { background: var(--teal); }
details {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
}
details summary {
  cursor: pointer; list-style: none;
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .04em; color: var(--frost);
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.fq { color: var(--cyan); font-size: 1.4rem; margin-left: 1rem; flex-shrink: 0; transition: transform .25s; }
details[open] .fq { transform: rotate(45deg); }
details p { margin-top: .85rem; font-size: .9rem; color: var(--slate); line-height: 1.72; }

/* ══ FOOTER ══ */
footer { background: #050f13; padding: 50px 5vw 26px; position: relative; z-index: 1; }
.ft-inner { max-width: 1200px; margin: auto; }
.ft-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.6rem;
}
.ft-brand p { font-size: .8rem; color: var(--slate); margin-top: .6rem; max-width: 285px; line-height: 1.68; }
.ft-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.ft-col h5 {
  font-family: var(--disp); font-size: .88rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .9rem;
}
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .45rem; }
.ft-col ul li a { font-size: .8rem; color: var(--slate); text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: var(--frost); }
.ft-bot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ft-bot p { font-size: .73rem; color: rgba(107,153,168,.4); }
.ft-nap { font-size: .73rem; color: rgba(107,153,168,.4); font-style: normal; }
.ft-nap a { color: inherit; text-decoration: none; }

/* ══ FLOATING CALL BUTTON ══ */
.fab-wrap {
  position: fixed; bottom: 24px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fab-lbl {
  background: rgba(10,26,31,.96); color: var(--cyan);
  font-size: .66rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 4px;
  white-space: nowrap; border: 1px solid rgba(0,194,224,.25);
  animation: flbl .5s 2.2s both;
}
@keyframes flbl { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.fab {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  box-shadow: 0 4px 24px rgba(255,85,0,.65);
  transition: transform .2s;
}
.fab::before, .fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--orange);
  animation: fr 2.4s ease-out infinite;
}
.fab::after { animation-delay: 1.2s; }
@keyframes fr { 0%{transform:scale(1);opacity:.75} 100%{transform:scale(2.6);opacity:0} }
.fab:hover { transform: scale(1.1); }
.fab svg { position: relative; z-index: 1; }

/* ══ SCROLL REVEAL ══ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s}
.d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══ RESPONSIVE ══ */
@media(max-width:980px){
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-diag { display: none; }
  .hero-mosaic { grid-template-rows: 240px 180px; }
  .mosaic-item:first-child { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rating-panel { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rev-card { flex: 0 0 calc(50% - .6rem); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid .svc-card:nth-child(1),
  .svc-grid .svc-card:nth-child(5) { grid-column: span 2; }
}
@media(max-width:680px){
  .gallery-scroll { grid-template-columns: 1fr 1fr; height: auto; }
  .gal-cell { height: 200px; }
  .proc-flex { flex-direction: column; }
  .proc-item { border-right: none; border-bottom: 1px solid var(--border); }
  .proc-item:last-child { border-bottom: none; }
  .proc-item::after { display: none; }
  .rev-card { flex: 0 0 100%; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid .svc-card:nth-child(1),
  .svc-grid .svc-card:nth-child(5) { grid-column: span 1; }
  .ft-top { flex-direction: column; }
}
@media(max-width:480px){
  .wrap { padding: 64px 5vw; }
  .trust-strip { gap: .8rem; }
  .fab { width: 58px; height: 58px; }
  .hero-badge { left: 0; bottom: -10px; }
  .gallery-scroll { grid-template-columns: 1fr; }
  .gal-cell { height: 180px; }
}
