/* ==========================================================================
   MoveFlex — clean, simple light theme
   ========================================================================== */
:root {
  --ink: #1f2933;
  --muted: #667085;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --border: #e6e9ee;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eaf1ff;
  --green: #22c55e;
  --green-dark: #16a34a;

  --radius: 14px;
  --radius-sm: 8px;
  --max: 1160px;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --surface: #ffffff;
  --header-bg: rgba(255,255,255,0.92);
  --shadow-card: 0 12px 28px rgba(15,23,42,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-weight: 700; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--muted); }
button { font-family: var(--font); cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---- Section eyebrow / badge ---- */
.tailgate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.tailgate::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,0.3); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: var(--surface); border-color: var(--border); color: var(--ink); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(34,197,94,0.3); }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}
.logo span { color: var(--blue); }
.logo small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  display: none;
}
@media (min-width: 500px) { .logo small { display: inline; } }

.main-nav {
  display: none;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 600;
}
.main-nav a { text-decoration: none; color: var(--muted); }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
}
.header-wa {
  background: var(--green);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (min-width: 880px) {
  .main-nav { display: flex; }
  .header-call { display: inline-flex; }
}

/* ==========================================================================
   Trust strip (badges)
   ========================================================================== */
.ticker {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-track span {
  flex: 0 0 auto;
  white-space: nowrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}


/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #3b82f6 100%);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: 0.28; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,78,216,0.55) 0%, rgba(29,78,216,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 20px 60px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 auto;
}
.hero h1 em { font-style: normal; color: #dbeafe; }
.hero-sub {
  margin: 20px auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 46ch;
  color: #e6efff;
}
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.hero-strip {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.hero-strip div {
  font-size: 0.82rem;
  font-weight: 600;
  color: #dbeafe;
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
section { padding: 68px 0; }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-top: 16px; }
.section-head p { margin-top: 14px; font-size: 1.02rem; }

.alt { background: var(--bg-alt); }
.dark { background: #0f172a; color: #fff; }
.dark .section-head p { color: #94a3b8; }
.dark p { color: #94a3b8; }

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,23,42,0.08); }
.service-num {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card h3 { font-size: 1.2rem; margin: 16px 0 8px; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-card a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue);
}
.service-card a:hover { color: var(--blue-dark); }

/* ==========================================================================
   Why us / risk section
   ========================================================================== */
.risk-block {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .risk-block { grid-template-columns: 1fr 1fr; } }
.risk-copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.15; color: #fff; }
.risk-copy h2 .hi { color: #93c5fd; }
.risk-copy p { color: #94a3b8; font-size: 1.02rem; max-width: 46ch; }
.risk-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.risk-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}
.risk-list li::before {
  content: "✓";
  width: 22px; height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.risk-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.risk-photo img { width: 100%; }
.risk-callout {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Why-choose-us grid
   ========================================================================== */
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-rail {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .process-rail { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Job log / gallery
   ========================================================================== */
.joblog-slider { position: relative; }
.joblog-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
  scrollbar-width: none;
}
.joblog-track::-webkit-scrollbar { display: none; }
.joblog-track .ticket {
  flex: 0 0 78%;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .joblog-track .ticket { flex-basis: 46%; } }
@media (min-width: 1000px) { .joblog-track .ticket { flex-basis: 30%; } }
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(15,23,42,0.15);
}
.slider-nav:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.slider-nav.prev { left: -10px; }
.slider-nav.next { right: -10px; }
@media (min-width: 1000px) {
  .slider-nav.prev { left: -22px; }
  .slider-nav.next { right: -22px; }
}
.ticket {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ticket:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,23,42,0.08); }
.ticket-photo { aspect-ratio: 4/5; overflow: hidden; }
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; }
.ticket-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
}
.ticket-tag .job-type { color: var(--blue-dark); }
.ticket-tag .job-loc { color: var(--muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.testi-quote { font-size: 1rem; color: var(--ink); margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.testi-loc { font-size: 0.8rem; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.faq-q .plus { color: var(--blue); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 0.95rem; transition: max-height 0.25s ease; }
.faq-a-inner { padding: 0 0 20px; color: var(--muted); }
.faq-item[data-open="true"] .faq-a { max-height: 300px; }

/* ==========================================================================
   Quote form
   ========================================================================== */
.quote-section { background: var(--bg-alt); }
.quote-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.quote-info h2 { font-size: clamp(1.8rem, 4vw, 2.3rem); }
.quote-info p { max-width: 40ch; }
.quote-perks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.quote-perks li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.quote-perks li::before { content: "✓"; color: var(--green-dark); font-weight: 700; }
.quote-call {
  margin-top: 30px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.quote-call a { font-size: 1.25rem; font-weight: 700; text-decoration: none; color: var(--blue); }

.quote-form {
  background: var(--surface);
  color: var(--ink);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-two { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .form-two { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ==========================================================================
   WhatsApp float button
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(34,197,94,0.4);
}
.wa-float svg { width: 20px; height: 20px; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { background: #0f172a; color: #94a3b8; padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 14px; color: #fff; }
.footer-brand .logo span { color: #93c5fd; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { text-decoration: none; font-size: 0.88rem; color: #94a3b8; }
.footer-col a:hover { color: #93c5fd; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: #64748b;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 20px; }

/* ---- Logo mark ---- */
.logo-img { height: 30px; width: auto; }
.footer-brand .logo-img { height: 34px; }
@media (min-width: 880px) { .logo-img { height: 34px; } }

/* ==========================================================================
   Dark mode
   ========================================================================== */
html[data-theme="dark"] {
  --ink: #e8edf5;
  --muted: #9aa7bd;
  --bg: #0b1220;
  --bg-alt: #111a2b;
  --surface: #131d30;
  --border: #23304a;
  --blue: #3b82f6;
  --blue-dark: #93c5fd;
  --blue-light: #16233c;
  --header-bg: rgba(11,18,32,0.9);
}
html[data-theme="dark"] .dark { background: #060c17; }
html[data-theme="dark"] footer { background: #060c17; }
html[data-theme="dark"] .service-card:hover,
html[data-theme="dark"] .ticket:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.5); }
html[data-theme="dark"] .testi-card,
html[data-theme="dark"] .quote-form { box-shadow: 0 12px 32px rgba(0,0,0,0.45); }
html[data-theme="dark"] .form-row input:focus,
html[data-theme="dark"] .form-row select:focus,
html[data-theme="dark"] .form-row textarea:focus { background: var(--surface); }
html[data-theme="dark"] .header-logo-light { display: none; }
html[data-theme="dark"] .header-logo-dark { display: block; }
.header-logo-dark { display: none; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.theme-toggle:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
