/* ==========================================================================
   Ameen Movers — design tokens
   Palette: deep navy (trust, logistics) + amber accent (motion, energy)
   Type: Poppins (display/headings) + Inter (body) — both geometric/humanist
   sans so they sit together without clashing.
   ========================================================================== */
:root {
  --navy-950: #0b1524;
  --navy-900: #0f1e33;
  --navy-800: #16293f;
  --navy-700: #1f374f;
  --amber-500: #f2932b;
  --amber-600: #dd7f16;
  --amber-100: #fdecd4;
  --ink: #1b2430;
  --ink-soft: #5a6472;
  --paper: #fbf9f5;
  --paper-alt: #f2ede3;
  --line: #e6e0d4;
  --white: #ffffff;
  --success: #2e7d4f;
  --error: #c0392b;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow-card: 0 18px 40px -22px rgba(11, 21, 36, 0.35);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-950);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}
p { margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy-950); color: var(--paper); }
.section--navy p { color: rgba(251, 249, 245, 0.72); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--alt { background: var(--paper-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber-500);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--amber-600); box-shadow: 0 14px 28px -14px rgba(242, 147, 43, 0.65); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--amber-500); }
.btn-navy { background: var(--navy-950); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 36, 0.96);
  backdrop-filter: blur(6px);
}
.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(251, 249, 245, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar a { color: inherit; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > li { position: relative; }
.nav-links a {
  color: rgba(251, 249, 245, 0.85);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 8px 2px;
}
.nav-links > li > a.active,
.nav-links > li > a:hover { color: var(--amber-500); }
.has-dropdown > .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; color: var(--ink); padding: 9px 12px; border-radius: 6px; font-size: 0.92rem; }
.dropdown a:hover { background: var(--paper-alt); color: var(--navy-950); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: var(--white);
  padding: 8px 10px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 46%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 120px;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); color: var(--white); }
.hero p.lead { color: rgba(251, 249, 245, 0.78); font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-call { display: flex; align-items: center; gap: 12px; }
.hero-call .dot {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(242,147,43,0.18); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero-call small { display: block; color: rgba(251,249,245,0.6); }
.hero-call strong { font-size: 1.05rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); }
.hero-media .badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--white); color: var(--navy-950);
  border-radius: var(--radius-m); padding: 18px 22px;
  box-shadow: var(--shadow-card);
  max-width: 200px;
}
.hero-media .badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--amber-600); }
.hero-media .badge span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Quote strip ---------- */
.quote-strip {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
  padding: 30px 34px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
}
.quote-strip h3 { margin-bottom: 18px; font-size: 1.1rem; }
.quote-grid { display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 16px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber-500); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: center; padding: 24px 12px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy-950); display: block; }
.stat span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-l); }
.about-media .exp-badge {
  position: absolute; top: 24px; right: -24px;
  background: var(--amber-500); color: var(--navy-950);
  padding: 18px 20px; border-radius: var(--radius-m);
  font-family: var(--font-display); font-weight: 700; text-align: center;
  box-shadow: var(--shadow-card);
}
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy-900); }
.check-list li::before {
  content: "✓";
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--amber-100); color: var(--amber-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex: none;
}

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card img { height: 210px; width: 100%; object-fit: cover; }
.service-card .body { padding: 24px; }
.service-card .body p { margin-bottom: 14px; font-size: 0.95rem; }
.service-card .read-more { color: var(--amber-600); font-weight: 600; font-size: 0.92rem; }

/* ---------- Why choose / feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-m);
  padding: 26px;
}
.feature-item img { height: 46px; width: 46px; border-radius: 10px; object-fit: cover; margin-bottom: 14px; }
.feature-item h4 { color: var(--white); font-size: 1.05rem; }

.cta-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.cta-card {
  border-radius: var(--radius-m);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-card.solid { background: var(--amber-500); color: var(--navy-950); }
.cta-card.outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .stars { color: var(--amber-500); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.95rem; color: var(--navy-950); }
.testimonial-person span { font-size: 0.83rem; color: var(--ink-soft); }

/* ---------- Safe transport banner ---------- */
.safe-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 40px;
  background: var(--navy-900);
  border-radius: var(--radius-l);
  padding: 48px;
  color: var(--white);
}
.safe-banner p { color: rgba(251,249,245,0.75); }
.safe-banner img { border-radius: var(--radius-m); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.faq-layout img { border-radius: var(--radius-l); }
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--amber-600);
  flex: none;
}
.accordion-item[open] summary::after { content: "–"; }
.accordion-item .accordion-body { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { color: rgba(251,249,245,0.65); font-size: 0.92rem; }
.breadcrumb a { color: rgba(251,249,245,0.85); }
.breadcrumb .sep { margin: 0 8px; }

/* ---------- Sidebar layout (service/blog detail) ---------- */
.layout-sidebar { display: grid; grid-template-columns: 0.75fr 2fr; gap: 44px; align-items: start; }
.sidebar-box { background: var(--white); border-radius: var(--radius-m); box-shadow: var(--shadow-card); padding: 24px; margin-bottom: 24px; }
.sidebar-box h4 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-links li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 4px; border-bottom: 1px solid var(--line); font-size: 0.94rem; color: var(--ink);
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a.active, .sidebar-links li a:hover { color: var(--amber-600); }
.sidebar-box.dark { background: var(--navy-950); color: var(--white); text-align: center; }
.sidebar-box.dark p { color: rgba(251,249,245,0.7); }

.feature-list { display: grid; gap: 20px; margin: 28px 0; }
.feature-list .item { display: flex; gap: 16px; }
.feature-list .num {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-100); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display);
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); }
.blog-card img { height: 230px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 10px; }
.blog-single .meta { display: flex; gap: 18px; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 24px; }
.blog-single img.cover { border-radius: var(--radius-l); margin-bottom: 32px; }
.blog-single .content p { max-width: none; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info-card { background: var(--navy-950); color: var(--white); border-radius: var(--radius-l); padding: 36px; }
.contact-info-card p { color: rgba(251,249,245,0.75); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-line .ic { color: var(--amber-500); font-size: 1.1rem; }
.contact-form-card { background: var(--white); border-radius: var(--radius-l); padding: 36px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--navy-900); }
.form-group input, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--paper);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--amber-500); }
.form-group .error-text { color: var(--error); font-size: 0.82rem; margin-top: 6px; }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--error); }
.alert { padding: 16px 20px; border-radius: var(--radius-s); margin-bottom: 22px; font-size: 0.95rem; }
.alert-success { background: #e4f5eb; color: var(--success); border: 1px solid #b9e2c9; }
.alert-error { background: #fbe9e7; color: var(--error); border: 1px solid #f2c1bb; }
.map-frame { border-radius: var(--radius-l); overflow: hidden; margin-top: 40px; box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(251,249,245,0.8); padding-top: 80px; }
.footer-cta {
  background: var(--amber-500);
  color: var(--navy-950);
  border-radius: var(--radius-l);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 24px;
  transform: translateY(-40px);
  box-shadow: var(--shadow-card);
  max-width: calc(var(--container) - 48px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer-grid h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 18px; }
.footer-grid p { color: rgba(251,249,245,0.65); font-size: 0.92rem; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid li a:hover { color: var(--amber-500); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 38px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(251,249,245,0.55);
}
.footer-bottom a { color: var(--amber-500); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 120px 0; }
.error-page .code { font-family: var(--font-display); font-size: 7rem; color: var(--amber-500); font-weight: 700; line-height: 1; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--amber-500); color: var(--navy-950);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container, .about-grid, .contact-grid, .faq-layout, .layout-sidebar, .safe-banner { grid-template-columns: 1fr; }
  .card-grid, .feature-strip, .testimonial-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline, .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .card-grid, .feature-strip, .testimonial-grid, .blog-grid, .footer-grid, .check-list, .cta-duo, .quote-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .footer-cta { flex-direction: column; text-align: center; }
}

/* Mobile nav (JS toggled) */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-950);
  padding: 18px 24px;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-links.is-open .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); display: none; }
.nav-links.is-open .has-dropdown.open .dropdown { display: block; }

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