/* Best Cargo Packers Movers — mobile-first responsive */

:root {
  --bg: #f7fbf8;
  --fg: #15231c;
  --card: #ffffff;
  --muted: #eef7f1;
  --muted-fg: #5b6b63;
  --border: #d7e5dc;
  --brand: #0b7a3b;
  --brand-light: #39a852;
  --brand-dark: #065a2c;
  --white: #ffffff;
  --danger: #dc2626;
  --shadow: 0 12px 36px -18px rgba(21, 35, 28, 0.22);
  --shadow-brand: 0 14px 32px -14px rgba(11, 122, 59, 0.48);
  --grad: linear-gradient(135deg, #065a2c 0%, #0b7a3b 50%, #39a852 100%);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --container: 72rem;
  --pad: clamp(1.15rem, 5vw, 1.75rem);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(4.75rem + var(--safe-b));
}

main,
.site-header,
.site-footer,
.hero,
.section,
.cta {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container > *,
.hero-grid > *,
.about-grid > *,
.contact-grid > *,
.form-grid > *,
.services-grid > *,
.reasons-grid > *,
.testimonials-grid > *,
.footer-grid > *,
.check-list > * {
  min-width: 0;
  max-width: 100%;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 248, 0.94);
  border-bottom: 1px solid rgba(215, 229, 220, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.75rem;
  padding-block: 0.55rem;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.logo img {
  height: 2rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-desktop,
.btn-header {
  display: none !important;
}

.menu-toggle {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--fg);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem var(--pad) 1rem;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.85rem 0.75rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-mobile a:active,
.nav-mobile a:hover {
  background: var(--muted);
  color: var(--brand);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 0;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-brand {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-outline {
  background: var(--white);
  color: var(--brand-dark);
  border: 1px solid rgba(11, 122, 59, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--brand-dark);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, rgba(57,168,82,0.18), transparent 55%),
    linear-gradient(180deg, #eaf6ee 0%, #f7fbf8 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,122,59,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,122,59,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: 1.75rem 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(11,122,59,0.22);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.85rem;
  font-size: clamp(1.45rem, 6.5vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-lead {
  margin-top: 0.85rem;
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-lead strong { color: var(--brand-dark); }

.check-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.check-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  font-size: 0.84rem;
}

.check-icon {
  flex: 0 0 auto;
  color: var(--brand);
  display: inline-flex;
  margin-top: 0.1rem;
}

.hero-actions {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.hero-actions .btn { width: 100%; }

/* ========== FORMS ========== */
.quote-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.quote-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.quote-card .sub {
  margin-top: 0.3rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 650;
}

input, textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--fg);
  font-size: 16px; /* stop iOS zoom */
  outline: none;
}

textarea { min-height: 7rem; resize: vertical; }

input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,122,59,0.12);
}

.field-error { margin-top: 0.25rem; color: var(--danger); font-size: 0.75rem; }
.btn-submit { width: 100%; margin-top: 1rem; }

.success-box {
  text-align: center;
  background: var(--muted);
  border: 1px solid rgba(11,122,59,0.2);
  border-radius: 1.1rem;
  padding: 1.35rem;
}

.success-box svg { margin: 0 auto; color: var(--brand); }
.success-box h3 { margin-top: 0.75rem; font-size: 1.15rem; font-weight: 800; }
.success-box p { margin: 0.45rem auto 0; color: var(--muted-fg); font-size: 0.875rem; max-width: 24rem; }
.success-actions { margin-top: 1rem; display: grid; gap: 0.55rem; }
.success-actions .btn { width: 100%; }

/* ========== SECTIONS ========== */
.section { padding: 2.5rem 0; }

.section-muted {
  background: linear-gradient(180deg, #eef7f1, #f3f9f5);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-head h2,
.about-copy h2,
.contact-info h2,
.cta h2 {
  font-size: clamp(1.4rem, 5.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 0.25rem;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: var(--grad);
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted-fg);
  font-size: 0.95rem;
}

.services-grid,
.reasons-grid,
.testimonials-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.service-card,
.reason-card,
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.15rem;
  height: 100%;
}

.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: var(--muted);
  color: var(--brand);
}

.icon-box.sm { width: 2.4rem; height: 2.4rem; }

.service-card h3,
.reason-card h3 {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p,
.reason-card p,
.testimonial-card blockquote {
  margin-top: 0.4rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
}

.service-card ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.service-card li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.84rem;
}

.service-card li svg,
.check-list svg { color: var(--brand); flex: 0 0 auto; }

.quote-mark { color: var(--brand); }

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card figcaption {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.testimonial-card figcaption strong { display: block; font-size: 0.875rem; }
.testimonial-card figcaption span { display: block; font-size: 0.75rem; color: var(--muted-fg); }

/* About / Contact */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-image {
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(11,122,59,0.14);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy p,
.contact-info > p {
  margin-top: 0.85rem;
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.75;
}

.seo-block {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(11,122,59,0.25);
}

.seo-block h3 {
  margin-top: 1rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brand-dark);
  overflow-wrap: anywhere;
}

.seo-block h3:first-child { margin-top: 0; }
.seo-block p { margin-top: 0.4rem; }
.seo-block strong { color: var(--brand-dark); }

.areas-grid {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.area-chip {
  border: 1px solid rgba(11,122,59,0.18);
  background: var(--white);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1rem 1rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
}

/* CTA */
.cta {
  background: var(--grad);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta p {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.cta-actions {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.cta-actions .btn { width: 100%; }

/* Contact */
.contact-info h3 {
  margin-top: 1.15rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.contact-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.65rem;
}

.contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--muted-fg);
}

.contact-list svg { color: var(--brand); flex: 0 0 auto; margin-top: 0.1rem; }
.contact-list a { font-weight: 700; color: var(--fg); word-break: break-word; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #074d26, #043419);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: 2.25rem;
}

.footer-brand .logo-wrap {
  display: inline-flex;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.4rem 0.65rem;
}

.footer-brand .logo-wrap img {
  height: 2rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
}

.footer-brand h2 { margin-top: 0.8rem; font-size: 1.05rem; font-weight: 800; }
.footer-brand p {
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-col h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  opacity: 0.9;
}

.footer-col ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.footer-col .spaced { margin-top: 1.15rem; }
.footer-contact li { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact svg { flex: 0 0 auto; margin-top: 0.1rem; }
.footer-contact a { word-break: break-word; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem var(--pad);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.75rem calc(0.6rem + var(--safe-b));
  background: rgba(247, 251, 248, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-bar .btn {
  min-height: 2.85rem;
  width: 100%;
  max-width: 100%;
  padding-inline: 0.4rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ========== sm: 640+ ========== */
@media (min-width: 640px) {
  .logo img { height: 2.35rem; }
  .check-list { grid-template-columns: 1fr 1fr; }
  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }
  .cta-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
  .success-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== md: 768+ ========== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }

  .section { padding: 4rem 0; }
  .hero-grid { padding-block: 2.75rem 3rem; gap: 1.75rem; }
  .quote-card { padding: 1.5rem; }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full { grid-column: 1 / -1; }

  .services-grid,
  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========== lg: 1024+  (desktop nav only here) ========== */
@media (min-width: 1024px) {
  .menu-toggle { display: none !important; }
  .nav-mobile { display: none !important; }

  .nav-desktop {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
  }

  .nav-desktop a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(21, 35, 28, 0.75);
  }
  .nav-desktop a:hover { color: var(--brand); }

  .btn-header {
    display: inline-flex !important;
    flex: 0 0 auto;
    min-height: 2.6rem;
    padding: 0.55rem 1.1rem;
  }

  .logo { flex: 0 0 auto; }
  .logo img { height: 2.7rem; }

  .header-inner { min-height: 4.25rem; }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
    padding-block: 4rem;
  }

  .hero-actions {
    display: flex;
    grid-template-columns: none;
  }
  .hero-actions .btn { width: auto; min-width: 10rem; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.75rem;
  }

  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.1fr;
  }
  .footer-brand { grid-column: auto; }

  .cta-actions {
    display: flex;
    justify-content: center;
    max-width: none;
  }
  .cta-actions .btn { width: auto; }

  .success-actions {
    display: flex;
    justify-content: center;
  }
  .success-actions .btn { width: auto; }

  .section { padding: 5.5rem 0; }
}

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .service-card:hover,
  .reason-card:hover,
  .testimonial-card:hover {
    border-color: rgba(11,122,59,0.35);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    transition: 0.2s ease;
  }
  .service-card:hover .icon-box {
    background: var(--grad);
    color: #fff;
  }
}
