/* =========================================================
   MoveKraft — style.css
   Mobile-first, modern, charcoal / orange / white
   ========================================================= */

:root {
  --color-dark: #1a1a1a;
  --color-dark-2: #242424;
  --color-dark-3: #2f2f2f;
  --color-orange: #ff6a1a;
  --color-orange-dark: #e05a0f;
  --color-white: #ffffff;
  --color-off-white: #f7f6f4;
  --color-text: #232323;
  --color-muted: #6b6b6b;
  --color-muted-light: #b9b9b9;
  --color-border: #e6e4e1;

  --font-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --container-w: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --header-h: 72px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

section[id] { scroll-margin-top: var(--header-h); }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 2000;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-orange);
  color: #fff;
}
.btn--primary:hover { background: var(--color-orange-dark); }
.btn--outline {
  background: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.btn--outline:hover { background: var(--color-dark); color: #fff; }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Icons ---------- */
.icon { width: 28px; height: 28px; }
.icon--sm { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(6px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-orange); }

.main-nav { display: none; }
.nav-list {
  display: flex;
  gap: 28px;
}
.nav-list a {
  color: #eee;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-list a:hover { color: var(--color-orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.lang-btn.active {
  background: var(--color-orange);
  color: #fff;
}

.header-call { display: none; }

.menu-toggle {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.main-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  display: block;
}
.main-nav.is-open { max-height: 400px; }
.main-nav .nav-list {
  flex-direction: column;
  gap: 0;
  padding: 8px 20px 20px;
}
.main-nav .nav-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(100deg, rgba(14,14,14,0.72) 0%, rgba(14,14,14,0.52) 40%, rgba(14,14,14,0.22) 75%, rgba(14,14,14,0.06) 100%),
    url('images/hero-bg.jpg') center 30% / cover no-repeat;
  color: #fff;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    background:
      linear-gradient(rgba(12,12,12,0.55), rgba(12,12,12,0.55)),
      url('images/hero-bg.jpg') center 30% / cover no-repeat;
  }
}
.hero .hero-text h1,
.hero .hero-sub,
.hero .eyebrow,
.hero .hero-trust li {
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,106,26,0.25) 0%, rgba(255,106,26,0) 70%);
  top: -160px;
  right: -160px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 640px;
}
.eyebrow {
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.hero-text h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: #d8d8d8;
  max-width: 46ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.88rem;
  color: #cfcfcf;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "✓";
  color: var(--color-orange);
  font-weight: 700;
}

/* ---------- Placeholder image blocks ---------- */
.img-placeholder {
  border: 2px dashed rgba(0,0,0,0.18);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0 10px, transparent 10px 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  text-align: center;
  padding: 40px 20px;
  min-height: 220px;
  font-size: 0.85rem;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.6; }
.img-placeholder--map { aspect-ratio: 4 / 3; }

/* ---------- Contact section: full-bleed map with overlay card ---------- */
.contact-section {
  position: relative;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-section .map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-off-white);
}
.contact-section .map-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border-width: 0;
  min-height: 100%;
}
.contact-section .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
  pointer-events: none;
}
.contact-card {
  pointer-events: auto;
  max-width: 460px;
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.contact-card .eyebrow { color: var(--color-orange); }
.contact-card h2 { color: #fff; }
.contact-card .section-sub { color: #dcdcdc; }
.contact-card .contact-list a:hover { color: var(--color-orange); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--dark {
  background: var(--color-dark);
  color: #f2f2f2;
}
.section--dark .section-sub { color: #bdbdbd; }

.section-header {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-header--light h2 { color: #fff; }
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-sub { color: var(--color-muted); font-size: 1.02rem; }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--services { grid-template-columns: 1fr; }
.grid--why { grid-template-columns: repeat(2, 1fr); }
.grid--reviews { grid-template-columns: 1fr; }

.card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,106,26,0.12);
  color: var(--color-orange);
  margin-bottom: 18px;
}
.card-icon .icon { width: 28px; height: 28px; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--color-muted); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}
.about-inner--no-media { max-width: 720px; }
.about-content .section-sub,
.about-content p { color: #cfcfcf; }
.about-content h2 { color: #fff; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 480px;
}
.stats--two { grid-template-columns: repeat(2, 1fr); }
.stat {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-orange);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: #cfcfcf;
  margin-top: 4px;
}

.why-item {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px 20px;
}
.why-item .icon { color: var(--color-orange); margin-bottom: 14px; }
.why-item h3 { color: #fff; font-size: 1.05rem; }
.why-item p { color: #bdbdbd; font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.stars {
  color: var(--color-orange);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.review-text {
  font-size: 0.98rem;
  color: var(--color-text);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.92rem; }
.review-loc { font-size: 0.8rem; color: var(--color-muted); }

/* ---------- Quote Form ---------- */
.quote-form { max-width: 900px; margin: 0 auto; }
.form-fieldset {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.form-fieldset legend {
  padding: 0 8px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.95rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.86rem;
  color: #e4e4e4;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #8c8c8c; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}
.form-field textarea { resize: vertical; }

.address-field { position: relative; }
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 260px;
  overflow-y: auto;
}
.address-suggestions[hidden] { display: none; }
.address-suggestions li {
  padding: 10px 12px;
  border-radius: 6px;
  color: #e4e4e4;
  font-size: 0.92rem;
  line-height: 1.3;
  cursor: pointer;
}
.address-suggestions li + li { margin-top: 2px; }
.address-suggestions li:hover,
.address-suggestions li.is-active {
  background: var(--color-orange);
  color: #fff;
}
.address-suggestions li .addr-sub {
  display: block;
  font-size: 0.78rem;
  color: #b9b9b9;
}
.address-suggestions li:hover .addr-sub,
.address-suggestions li.is-active .addr-sub { color: rgba(255,255,255,0.85); }
.address-suggestions li.is-loading,
.address-suggestions li.is-empty {
  cursor: default;
  color: #9c9c9c;
  text-align: center;
}
.address-suggestions li.is-loading:hover,
.address-suggestions li.is-empty:hover { background: none; }

.photo-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.photo-preview-list li {
  background: var(--color-dark-3);
  color: #ddd;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}

.form-submit { text-align: center; margin-top: 8px; }
.form-success {
  margin-top: 18px;
  color: #8adf9a;
  font-weight: 600;
}

/* ---------- Contact ---------- */
.contact-list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list .icon { color: var(--color-orange); flex-shrink: 0; }
.contact-list a:hover { color: var(--color-orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: #cfcfcf;
  padding: 44px 0 26px;
}
.footer-inner {
  display: grid;
  gap: 24px;
  text-align: center;
}
.footer-brand .logo { display: inline-block; }
.footer-brand p { color: #9c9c9c; margin-top: 6px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--color-orange); }
.footer-copy { font-size: 0.82rem; color: #7a7a7a; margin: 0; }

/* =========================================================
   Tablet — 768px+
   ========================================================= */
@media (min-width: 768px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--reviews { grid-template-columns: repeat(2, 1fr); }
  .about-inner:not(.about-inner--no-media) { grid-template-columns: 0.9fr 1.1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr auto 1fr; text-align: left; align-items: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: right; }
}

/* =========================================================
   Desktop — 1024px+
   ========================================================= */
@media (min-width: 1024px) {
  .main-nav {
    position: static;
    max-height: none;
    background: transparent;
    overflow: visible;
    display: block;
  }
  .main-nav .nav-list {
    flex-direction: row;
    padding: 0;
    gap: 28px;
  }
  .main-nav .nav-list a { border-bottom: none; padding: 0; }
  .menu-toggle { display: none; }
  .header-call { display: inline-flex; }

  .grid--services { grid-template-columns: repeat(4, 1fr); }
  .grid--why { grid-template-columns: repeat(3, 1fr); }
  .grid--reviews { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 96px 0; }
  .hero { padding: 96px 0 110px; }
}

/* =========================================================
   Floating action bar (call / email / WhatsApp / booking)
   ========================================================= */
.fab-bar {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: min-width var(--transition), transform var(--transition), background var(--transition);
}
.fab:hover,
.fab:focus-visible {
  transform: scale(1.08);
  background: var(--color-orange);
}

.fab-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab-icon svg { width: 24px; height: 24px; }

.fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: max-width var(--transition), opacity var(--transition), padding var(--transition);
}
.fab:hover .fab-label,
.fab:focus-visible .fab-label {
  max-width: 160px;
  opacity: 1;
  padding-right: 18px;
}

.fab--whatsapp:hover,
.fab--whatsapp:focus-visible { background: #25D366; }
.fab--calendly:hover,
.fab--calendly:focus-visible { background: #1f6feb; }

@media (max-width: 600px) {
  .fab-bar { right: 10px; gap: 10px; }
  .fab, .fab-icon { height: 46px; min-width: 46px; width: 46px; }
  .fab-label { display: none; }
}
