/* =====================
       MOBILE-FIRST THEME
       Urgent palette: red/orange with dark base
    ====================== */
:root {
  --bg: #0e0a12;
  --bg-soft: #15111b;
  --card: #16121f;
  --stroke: #2d2138;
  --text: #f6f7fb;
  --muted: #c7c9d6;
  --brand: #ff3b30; /* urgent red */
  --brand-2: #ff9f0a; /* amber */
  --ok: #22c55e;
  --bad: #ef4444;
  --maxw: 1100px;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    "Helvetica Neue",
    Arial,
    "Noto Sans";
  background:
    radial-gradient(
      1200px 500px at 50% -200px,
      rgba(255, 63, 48, 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), #0a0a11 70%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

/* Top alert strip (kept, but could be used later if needed) */
.alert {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    #ff5e57 60%,
    var(--brand-2) 100%
  );
  color: #170b0b;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.alert .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}
.alert small {
  font-weight: 800;
}

/* Header */
header {
  position: sticky;
  top: 0px;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(21, 17, 27, 0.9);
  border-bottom: 1px solid var(--stroke);
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0 8px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 900;
  text-align: center;
}
.brand-title {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7f5;
}
.brand-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.live-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1b1625;
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.bulb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
  animation: glow 1.2s infinite alternate;
  display: inline-block;
}
@keyframes glow {
  from {
    opacity: 0.5;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.6);
  }
  to {
    opacity: 1;
    box-shadow: 0 0 12px rgba(34, 197, 94, 1);
  }
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand), #ff5e57);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 0;
  min-height: 48px;
}
.cta.secondary {
  background: linear-gradient(135deg, var(--brand-2), #ffd166);
  color: #1a130f;
}
.cta:active {
  transform: scale(0.98);
}

/* Sticky bottom bar on mobile */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(12, 10, 16, 0.9);
  border-top: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}
@media (min-width: 920px) {
  .sticky-bar {
    display: none;
  }
}

/* Coverage chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: #191624;
  color: #e7e8f5;
  font-weight: 700;
  font-size: 14px;
}

/* Hero */
.hero {
  padding: 18px 0 8px;
}
.title {
  font-size: clamp(26px, 6vw, 48px);
  line-height: 1.08;
  font-weight: 1000;
  background: linear-gradient(180deg, #fff, #f5e7e7 45%, #ffd2c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0 10px;
}
.sub {
  color: var(--muted);
  font-size: clamp(14px, 3.6vw, 18px);
}
.quick-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}
.tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #191624;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-weight: 800;
}
.tile svg {
  width: 20px;
  height: 20px;
}

/* Urgency panels */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.panel {
  background: #181426;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px;
}
.big {
  font-size: 26px;
  font-weight: 1000;
}
.muted {
  color: var(--muted);
}
.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #ffd9a8;
  font-weight: 900;
}

/* Sections */
section {
  padding: 20px 0;
}
.section-title {
  font-size: 22px;
  font-weight: 1000;
  margin-bottom: 12px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.job-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
}
.illus {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #110d1a;
  display: grid;
  place-items: center;
}
.job-card .illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* "How it works" */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step-title {
  font-weight: 900;
  margin-bottom: 2px;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #1b1625;
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-right: 6px;
}

/* Testimonials */
.testis {
  display: flex;
  gap: 6px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.testi {
  flex: 0 0 250px;
  scroll-snap-align: start;
}
.stars {
  color: #ffd166;
  margin-bottom: 0px;
}

/* FAQ */
details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  background: #181426;
}
details + details {
  margin-top: 8px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}

/* Footer */
footer {
  border-top: 1px solid var(--stroke);
  background: #0b0910;
  color: var(--muted);
}
.footgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  padding-top: 18px;
}
@media (max-width: 800px) {
  .footgrid {
    grid-template-columns: 1fr;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  margin-top: 10px;
}
.footer-nav a {
  color: var(--muted);
  padding: 4px 8px;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.copyright {
  text-align: center;
  padding: 14px 0 18px;
  border-top: 1px solid var(--stroke);
  margin-top: 12px;
  font-size: 13px;
}

/* Utilities */
.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sep {
  border: 0;
  border-top: 1px dashed var(--stroke);
  margin: 14px 0;
}
.center {
  text-align: center;
}
.hidden {
  display: none !important;
}

/* WHY US: compact horizontal cards with contextual illustrations */
.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 12px;
}
.illus-sm {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #100c17;
  display: grid;
  place-items: center;
}
.illus-sm svg {
  width: 36px;
  height: 36px;
}
.why-card h3 {
  margin: 0 0 4px 0;
}
.why-card p {
  margin: 0;
}

/* Pulse animation for top CTA */
@keyframes ctaPulse {
  0% {
    transform: translateZ(0) scale(1);
    box-shadow: var(--shadow);
  }
  50% {
    transform: translateZ(0) scale(1.03);
    box-shadow: 0 16px 40px rgba(255, 94, 87, 0.35);
  }
  100% {
    transform: translateZ(0) scale(1);
    box-shadow: var(--shadow);
  }
}
.cta.pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .cta.pulse {
    animation: none;
  }
}

/* Pre-services image slot */
.pre-services-image {
  padding: 10px 0 0;
}
.image-slot {
  border: 1px dashed var(--stroke);
  border-radius: 12px;
  background: #0f0c15;
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make testimonials gaps tighter (legacy) */
.testimonials,
.testimonial-grid,
.testimonial-list {
  gap: 3px !important;
  grid-gap: 3px !important;
}
.testimonial {
  margin: 3px !important;
}
.testimonials,
.testimonial-grid,
.testimonial-list,
.what-locals-say {
  display: grid !important;
  grid-gap: 3px !important;
  gap: 3px !important;
}
.testimonial {
  margin: 0 !important;
  padding: 8px !important;
}

#book-service {
  display: flex;
  align-items: center;
  justify-content: center;
}
#book-service > button {
  padding: 16px 30px;
  cursor: pointer;
  font-size: 24px;
}

/* Request Form Overlay */
.request-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 10, 18, 0.9);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (min-width: 768px) {
  .request-form-overlay {
    padding: 40px;
  }
}

.request-form-container {
  background: white;
  width: 100%;
  max-width: 672px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  border-radius: 15px;
}

.request-form-header {
  background: #191624;
  padding: 24px;
  position: relative;
  flex-shrink: 0;
}

.close-form-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 32px;
  height: 32px;
}

.close-form-btn:hover {
  color: white;
}

.request-form-header h3 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0 0 4px 0;
}

.request-form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.form-divider {
  height: 4px;
  background: var(--brand);
  flex-shrink: 0;
}

.request-form {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.form-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group-full {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .form-group-full {
    grid-column: span 2;
  }
}

.form-label {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.form-label-optional {
  color: #9ca3af;
  font-weight: normal;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #1b0b0b;
  outline: none;
}

.form-input-uppercase {
  text-transform: uppercase;
}

.form-select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  background: white;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-select:focus {
  border-color: #1b0b0b;
  outline: none;
}

.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-textarea:focus {
  border-color: #1b0b0b;
  outline: none;
}

.form-footer {
  padding: 0 24px 24px 24px;
  flex-shrink: 0;
}

.form-submit-btn {
  width: 100%;
  background: var(--brand);
  color: white;
  font-weight: bold;
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit-btn:hover {
  background: #dc2626;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
}

.form-status-success {
  color: #059669;
}

.form-status-error {
  color: #dc2626;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 12px;
}