/* ============================================================
   Online Movers & Storage — main stylesheet
   Salix-inspired layout · Online Movers brand (blue + pink)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --blue:#1976d3; --blue-dark:#1258a8; --blue-light:#e8f1fb; --blue-soft:#f3f8fd;
  --pink:#f23091; --pink-soft:#fde7f1;
  --ink:#0e1116; --text:#1b1f27; --muted:#6b7280; --line:#e7e9ee;
  --white:#ffffff; --bg:#ffffff; --bg-alt:#f7f9fc;
  --gray-50:#f9fafb; --gray-100:#f3f4f6; --gray-200:#e5e7eb; --gray-900:#111827;
  --radius:18px; --radius-sm:12px; --radius-lg:26px;
  --shadow-sm:0 4px 20px rgba(14,17,22,.06);
  --shadow:0 16px 44px -22px rgba(14,17,22,.22);
  --shadow-lg:0 30px 70px -30px rgba(14,17,22,.32);
  --maxw:1160px;
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font); color:var(--text); background:var(--bg);
  line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* ---------- layout ---------- */
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:96px 0; position:relative; }
.section-alt{ background:var(--bg-alt); }
.center{ text-align:center; }

.eyebrow{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--blue); background:var(--blue-light);
  padding:7px 15px; border-radius:999px; margin-bottom:18px;
}
.eyebrow.pink{ color:var(--pink); background:var(--pink-soft); }

h1,h2,h3,h4{ color:var(--ink); letter-spacing:-.02em; line-height:1.1; font-weight:800; }
h1{ font-size:clamp(40px,6vw,68px); line-height:1.04; letter-spacing:-.03em; }
h2{ font-size:clamp(30px,4vw,46px); }
h3{ font-size:21px; }
.lead{ font-size:clamp(16px,2vw,19px); color:var(--muted); line-height:1.7; }
.section-head{ max-width:680px; margin:0 auto 56px; }
.section-head.left{ margin-left:0; }
.accent{ color:var(--blue); }
.accent-pink{ color:var(--pink); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font:inherit; font-weight:700; font-size:15px; cursor:pointer; border:0;
  padding:14px 26px; border-radius:999px; transition:transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; }
.btn-primary{ background:var(--ink); color:#fff; }
.btn-primary:hover{ background:var(--blue); transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(37,99,235,.6); }
.btn-blue{ background:var(--blue); color:#fff; }
.btn-blue:hover{ background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(25,118,211,.55); }
.btn-pink{ background:var(--pink); color:#fff; }
.btn-pink:hover{ background:#d81b7a; transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(242,48,145,.55); }
.btn-ghost{ background:#fff; color:var(--ink); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); }
.btn-lg{ padding:16px 32px; font-size:16px; }

/* ---------- nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:90; height:74px;
  background:rgba(255,255,255,.85); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(14,17,22,.06); transition:box-shadow .25s ease;
}
.nav.scrolled{ box-shadow:0 6px 30px rgba(14,17,22,.07); }
.nav-inner{ max-width:var(--maxw); margin:0 auto; height:100%; padding:0 24px; display:flex; align-items:center; gap:18px; }
.nav-logo{ display:flex; align-items:center; gap:9px; flex-shrink:0; }
.nav-logo img{ height:34px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:4px; margin:0 auto; }
.nav-links a{ font-size:14px; font-weight:600; color:var(--text); padding:9px 14px; border-radius:10px; transition:background .18s, color .18s; }
.nav-links a:hover{ background:var(--gray-100); color:var(--blue); }
.nav-right{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-phone{ display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:700; color:var(--ink); padding:8px 12px; border-radius:10px; }
.nav-phone svg{ width:15px; height:15px; color:var(--blue); }
.nav-phone:hover{ color:var(--blue); }

/* language toggle */
.lang{ display:inline-flex; background:var(--gray-100); border-radius:999px; padding:3px; font-size:12.5px; font-weight:700; }
.lang button{ display:inline-flex; align-items:center; gap:6px; border:0; background:transparent; cursor:pointer; font:inherit; font-weight:700; color:var(--muted); padding:6px 11px; border-radius:999px; transition:all .2s ease; }
.lang button.active{ background:#fff; color:var(--blue); box-shadow:0 2px 8px rgba(14,17,22,.12); }
.lang button .flag{ width:18px; height:12px; border-radius:2px; flex:0 0 auto; box-shadow:0 0 0 1px rgba(14,17,22,.08); display:block; }

.nav-toggle{ display:none; background:transparent; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:.25s; }
.nav-toggle span+span{ margin-top:5px; }

/* ---------- hero ---------- */
.hero{ padding:128px 0 80px; position:relative; overflow:hidden; background:
  radial-gradient(1200px 500px at 70% -10%, rgba(25,118,211,.10), transparent 60%),
  radial-gradient(900px 500px at 10% 0%, rgba(242,48,145,.07), transparent 55%); }
.hero-inner{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.rebrand{
  display:inline-flex; align-items:center; gap:13px; flex-wrap:wrap; justify-content:center;
  background:#fff; border:1px solid var(--blue-light); border-radius:999px; padding:12px 24px 12px 13px;
  box-shadow:0 10px 30px -12px rgba(25,118,211,.32); font-size:clamp(15px,2.2vw,20px); font-weight:600; color:var(--text);
  margin-bottom:32px; animation:rebrandPulse 2.6s ease-in-out infinite;
}
.rebrand .pill{ background:var(--blue); color:#fff; font-size:12px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; padding:6px 13px; border-radius:999px; }
.rebrand b{ color:var(--ink); font-weight:800; }
.rebrand .now{ color:var(--pink); font-weight:800; }
@keyframes rebrandPulse{ 0%,100%{ box-shadow:0 10px 30px -12px rgba(25,118,211,.28); transform:scale(1); } 50%{ box-shadow:0 16px 44px -8px rgba(242,48,145,.45); transform:scale(1.015); } }
@media (prefers-reduced-motion:reduce){ .rebrand{ animation:none; } }
.hero-center{ text-align:center; max-width:840px; margin:0 auto; }
.hero h1{ margin-bottom:22px; }
.hero .lead{ max-width:600px; margin:0 auto 34px; }
.hero-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:46px; }
.hero-stats{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-stat{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:16px 22px; box-shadow:var(--shadow-sm); min-width:130px; }
.hero-stat .val{ font-size:26px; font-weight:900; color:var(--ink); letter-spacing:-.02em; }
.hero-stat .val span{ color:var(--pink); }
.hero-stat .lbl{ font-size:12.5px; color:var(--muted); font-weight:600; margin-top:2px; }
.hero-visual{ position:relative; margin:54px auto 0; max-width:1000px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--line); aspect-ratio:16/8; background:#0e1116; }
.hero-visual img{ width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1); animation:heroBreath 9s ease-in-out infinite; }
.hero-visual:hover img{ transform:scale(1.05); animation-play-state:paused; }
.hero-visual::after{ content:""; position:absolute; top:0; bottom:0; left:-35%; width:25%; background:linear-gradient(100deg,transparent,rgba(255,255,255,.30),transparent); transform:skewX(-18deg); pointer-events:none; animation:heroSheen 6.5s ease-in-out infinite; }
@keyframes heroBreath{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.035); } }
@keyframes heroSheen{ 0%{ left:-35%; } 45%{ left:130%; } 100%{ left:130%; } }
@media (prefers-reduced-motion:reduce){ .hero-visual img{ animation:none; } .hero-visual::after{ display:none; } }

/* ---------- trust strip ---------- */
.trust{ padding:56px 0; background:var(--bg); }
.trust-grid{ display:flex; flex-wrap:wrap; align-items:stretch; justify-content:center; gap:0; max-width:940px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:26px; box-shadow:var(--shadow); padding:20px 10px; }
.trust-card{ flex:1 1 190px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px; padding:22px 26px; text-align:center; }
.trust-card+.trust-card{ border-left:1px solid var(--line); }
.trust-logo{ height:44px; margin-bottom:10px; display:flex; align-items:center; }
.trust-logo img{ height:100%; width:auto; object-fit:contain; }
.trust-score{ font-size:42px; font-weight:900; color:var(--blue); letter-spacing:-.03em; line-height:1; }
.trust-lbl{ font-size:13.5px; color:var(--muted); font-weight:600; }

/* reviews embed (Elfsight) */
.reviews-embed{ max-width:1040px; margin:0 auto; min-height:200px; }

/* ---------- services / features ---------- */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px;
  box-shadow:var(--shadow-sm); transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease; position:relative; overflow:hidden;
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:#cfdbf7; }
.feature-ic{ width:52px; height:52px; border-radius:14px; background:var(--blue-light); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.feature-ic svg{ width:26px; height:26px; color:var(--blue); }
.feature-card.pink .feature-ic{ background:var(--pink-soft); }
.feature-card.pink .feature-ic svg{ color:var(--pink); }
.feature-card h3{ margin-bottom:9px; }
.feature-card p{ font-size:14.5px; color:var(--muted); }

/* ---------- why us (split) ---------- */
.split{ display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center; }
.why-list{ list-style:none; display:flex; flex-direction:column; gap:22px; margin-top:28px; }
.why-list li{ display:flex; gap:16px; }
.why-list .wic{ flex:0 0 44px; width:44px; height:44px; border-radius:12px; background:var(--blue-light); display:flex; align-items:center; justify-content:center; }
.why-list .wic svg{ width:22px; height:22px; color:var(--blue); }
.why-list h4{ font-size:16px; margin-bottom:3px; color:var(--ink); }
.why-list p{ font-size:14px; color:var(--muted); }
.why-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); aspect-ratio:4/5; }
.why-media img{ width:100%; height:100%; object-fit:cover; }

/* ---------- testimonials ---------- */
.tgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tcard{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px 26px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:14px; }
.tstars{ display:flex; gap:3px; color:#f5b400; }
.tstars svg{ width:18px; height:18px; }
.tcard p{ font-size:15px; color:var(--text); line-height:1.6; flex:1; }
.tperson{ display:flex; align-items:center; gap:12px; }
.tavatar{ width:42px; height:42px; border-radius:999px; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; }
.tperson .tn{ font-weight:700; font-size:14px; color:var(--ink); }
.tperson .tr{ font-size:12.5px; color:var(--muted); }

/* ---------- FAQ ---------- */
.faq{ max-width:780px; margin:0 auto; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius-sm); background:#fff; margin-bottom:12px; overflow:hidden; transition:box-shadow .2s; }
.faq-item.open{ box-shadow:var(--shadow-sm); border-color:#cfdbf7; }
.faq-q{ width:100%; text-align:left; background:transparent; border:0; cursor:pointer; font:inherit; font-weight:700; font-size:16px; color:var(--ink); padding:20px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq-q .chev{ flex:0 0 auto; width:20px; height:20px; transition:transform .25s ease; color:var(--blue); }
.faq-item.open .chev{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding:0 22px 20px; font-size:14.5px; color:var(--muted); line-height:1.65; }

/* ---------- CTA band ---------- */
.cta-band{ background:linear-gradient(135deg,var(--ink) 0%,#1a2233 60%,var(--blue-dark) 130%); border-radius:var(--radius-lg); padding:64px 40px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.cta-band::after{ content:""; position:absolute; inset:0; background:radial-gradient(600px 240px at 80% 0%, rgba(242,48,145,.25), transparent 60%); pointer-events:none; }
.cta-band h2{ color:#fff; margin-bottom:14px; position:relative; }
.cta-band p{ color:rgba(255,255,255,.78); max-width:520px; margin:0 auto 30px; font-size:17px; position:relative; }
.cta-band .hero-actions{ margin-bottom:0; position:relative; }

/* ---------- footer ---------- */
.footer{ background:var(--ink); color:rgba(255,255,255,.6); padding:64px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:42px; margin-bottom:48px; }
.footer img.flogo{ height:34px; margin-bottom:16px; }
.footer .ftag{ font-size:13.5px; line-height:1.7; max-width:260px; margin-bottom:20px; }
.fsocial{ display:flex; gap:10px; }
.fsocial a{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.7); transition:.2s; }
.fsocial a:hover{ background:var(--blue); color:#fff; border-color:var(--blue); }
.fsocial svg{ width:16px; height:16px; }
.footer h4{ color:#fff; font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; }
.footer-col a, .footer-col p{ display:block; font-size:13.5px; color:rgba(255,255,255,.62); margin-bottom:11px; transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.fcontact{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; margin-bottom:13px; color:rgba(255,255,255,.7); }
.fcontact svg{ width:16px; height:16px; flex:0 0 auto; margin-top:2px; color:var(--blue-2,#5b8cff); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap; font-size:12.5px; }
.footer-bottom a:hover{ color:#fff; }

/* ---------- reveal animations ---------- */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in{ opacity:1; transform:none; }
.d1{ transition-delay:.08s } .d2{ transition-delay:.16s } .d3{ transition-delay:.24s }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- responsive ---------- */
@media (max-width:960px){
  .feature-grid, .tgrid{ grid-template-columns:repeat(2,1fr); }
  .split{ grid-template-columns:1fr; gap:40px; }
  .why-media{ aspect-ratio:16/10; order:-1; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; }
}
@media (max-width:760px){
  section{ padding:72px 0; }
  .nav-links{ display:none; }
  .nav-phone{ display:none; }
  .nav-toggle{ display:block; }
  .nav-links.open{ display:flex; position:absolute; top:74px; left:0; right:0; flex-direction:column; align-items:stretch; background:#fff; border-bottom:1px solid var(--line); padding:12px; gap:2px; box-shadow:var(--shadow); }
  .nav-links.open a{ padding:13px 14px; }
  .feature-grid, .tgrid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .cta-band{ padding:48px 24px; }
  .trust-card{ padding:12px 16px; }
}
