/* =========================================================
   AMP MOVERS AND PACKERS — DESIGN SYSTEM
   Colors:  --red (brand/primary), --red-dark, --black, --white,
            --grey-light (surface), --grey-mid (secondary text)
   Type:    Poppins (display/headings) + Inter (body/UI)
   Signature: the "route line" motif in How We Work echoes the
   speed-lines in the AMP logo — a dashed road connecting each
   step of the move.
   ========================================================= */

:root{
  --red: #D2232A;
  --red-dark: #A11B21;
  --red-light: #FDECEC;
  --black: #17181B;
  --white: #FFFFFF;
  --grey-light: #F5F5F6;
  --grey-mid: #6B6F76;
  --grey-border: #E7E7E9;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-w: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(23,24,27,0.06);
  --shadow-md: 0 10px 30px rgba(23,24,27,0.10);
  --shadow-red: 0 10px 24px rgba(210,35,42,0.28);

  --header-h: 78px;
  --notice-h: 40px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

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

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--black);
  line-height:1.2;
  margin:0 0 0.5em;
}

p{ margin:0 0 1em; color:#3C3E43; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

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

.eyebrow{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:0.78rem;
  margin-bottom:0.7em;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:0.95rem;
  border:2px solid transparent;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
  box-shadow:var(--shadow-red);
}
.btn-primary:hover{ background:var(--red-dark); transform:translateY(-2px); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,0.55);
  color:var(--white);
}
.btn-outline:hover{ background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.btn-lg{ padding:15px 30px; font-size:1rem; }
.btn-block{ width:100%; }

/* ===== Notice bar ===== */
.notice-bar{
  background:var(--red);
  color:var(--white);
  height:var(--notice-h);
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
}
.notice-track{
  display:flex;
  white-space:nowrap;
  animation:scrollNotice 28s linear infinite;
}
.notice-track span{
  padding:0 40px;
  font-size:0.82rem;
  font-weight:500;
}
@keyframes scrollNotice{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:var(--header-h);
  display:flex;
  align-items:center;
  background:transparent;
  transition:background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(8px);
  box-shadow:0 2px 16px rgba(0,0,0,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  width:100%;
}
.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand-logo{ height:52px; width:auto; object-fit:contain; }

.main-nav ul{ display:flex; gap:30px; }
.main-nav a{
  font-family:var(--font-display);
  font-weight:500;
  font-size:0.92rem;
  color:var(--white);
  position:relative;
  padding:6px 0;
  transition:color 0.25s ease;
}
.site-header.scrolled .main-nav a{ color:var(--black); }
.main-nav a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px; background:var(--red);
  transition:width 0.25s ease;
}
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.header-phone{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:0.92rem;
  color:var(--white); transition:color 0.25s ease;
}
.site-header.scrolled .header-phone{ color:var(--black); }
.header-cta{ padding:11px 22px; font-size:0.88rem; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  background:none; border:none;
  flex-shrink:0;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background:var(--white);
  transition:all 0.25s ease;
}
.site-header.scrolled .nav-toggle span{ background:var(--black); }

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  margin-top:calc(-1 * var(--header-h));
  padding-top:var(--header-h);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-photo{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.hero-photo--movers{
  background:
    linear-gradient(135deg, rgba(23,24,27,0.55), rgba(23,24,27,0.75)),
    repeating-linear-gradient(120deg, #2b2c30 0 60px, #232427 60px 120px),
    linear-gradient(160deg,#3a3b40,#1c1d20);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(23,24,27,0.35) 0%, rgba(23,24,27,0.55) 55%, rgba(23,24,27,0.85) 100%);
}
.hero-content{
  position:relative; z-index:1;
  max-width:720px;
  padding-top:60px; padding-bottom:70px;
  color:var(--white);
}
.hero-content .eyebrow{ color:#FFB3B3; }
.hero h1{
  font-size:clamp(2.3rem, 5vw, 3.6rem);
  font-weight:700;
  color:var(--white);
  margin-bottom:0.4em;
}
.hero-sub{
  font-size:1.08rem;
  color:rgba(255,255,255,0.88);
  max-width:600px;
  margin-bottom:1.8em;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:2.4em; }

.trust-badges{
  display:flex; flex-wrap:wrap; gap:12px 22px;
}
.trust-badges li{
  display:flex; align-items:center; gap:8px;
  font-size:0.88rem; font-weight:500;
  color:rgba(255,255,255,0.92);
}
.badge-dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 4px rgba(210,35,42,0.25);
  flex-shrink:0;
}

/* ===== Section basics ===== */
.section{ padding:96px 0; }
.section--grey{ background:var(--grey-light); }
.section--dark{ background:var(--black); }
.section--dark h2, .section--dark .route-step h3{ color:var(--white); }
.section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.3rem); }
.section-head--light .eyebrow{ color:#FF8A8A; }
.section-note{ font-size:0.85rem; color:var(--grey-mid); margin-top:0.5em; }

/* ===== About ===== */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.about-media{ position:relative; }
.about-photo{
  border-radius:var(--radius);
  height:460px;
  box-shadow:var(--shadow-md);
}
.hero-photo--packing{
  position:relative;
  background:
    linear-gradient(135deg, rgba(210,35,42,0.14), rgba(210,35,42,0.02)),
    repeating-linear-gradient(45deg, #eceded 0 26px, #e2e3e4 26px 52px);
}
.about-photo-badge{
  position:absolute; left:-20px; bottom:-24px;
  background:var(--white);
  padding:18px 22px;
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-md);
  display:flex; flex-direction:column; gap:2px;
  max-width:260px;
  border-left:4px solid var(--red);
}
.about-photo-badge strong{ font-family:var(--font-display); font-size:0.92rem; }
.about-photo-badge span{ font-size:0.8rem; color:var(--grey-mid); }

.about-copy h2{ font-size:clamp(1.6rem, 3vw, 2.2rem); }
.about-points{ display:grid; gap:18px; margin-top:28px; }
.about-point{
  display:grid; grid-template-columns:auto 1fr; gap:4px 14px;
  padding-left:18px; border-left:3px solid var(--red-light);
}
.about-point strong{ grid-column:1/-1; font-family:var(--font-display); font-size:0.98rem; }
.about-point span{ grid-column:1/-1; font-size:0.9rem; color:var(--grey-mid); }

/* ===== Feature / Why choose us ===== */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:22px;
}
.feature-card{
  background:var(--white);
  border:1px solid var(--grey-border);
  border-radius:var(--radius);
  padding:28px 24px;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.feature-icon{ font-size:1.7rem; margin-bottom:14px; }
.feature-card h3{ font-size:1.02rem; margin-bottom:8px; }
.feature-card p{ font-size:0.88rem; color:var(--grey-mid); margin:0; }

/* ===== Services ===== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:26px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:var(--shadow-sm);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  border-top:3px solid transparent;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-top-color:var(--red);
}
.service-icon{ font-size:1.9rem; margin-bottom:16px; }
.service-card h3{ font-size:1.08rem; margin-bottom:10px; }
.service-card p{ font-size:0.9rem; color:var(--grey-mid); }
.service-link{
  display:inline-block; margin-top:8px;
  font-family:var(--font-display); font-weight:600; font-size:0.85rem;
  color:var(--red);
}

/* ===== Route timeline (signature element) ===== */
.route-timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:44px 30px;
  padding-top:10px;
}
.route-line{
  display:none;
}
.route-step{
  position:relative;
  padding-top:38px;
  color:rgba(255,255,255,0.82);
}
.route-step h3{ font-size:1rem; margin-bottom:6px; }
.route-step p{ font-size:0.86rem; color:rgba(255,255,255,0.6); }
.route-marker{
  position:absolute; top:0; left:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--black);
  border:2px solid var(--red);
  box-shadow:0 0 0 4px rgba(210,35,42,0.15);
}
.route-step::after{
  content:'';
  position:absolute; top:12px; left:26px;
  width:calc(100% - 26px);
  height:2px;
  background-image:repeating-linear-gradient(90deg, var(--red) 0 8px, transparent 8px 16px);
}
.route-step:nth-child(4n)::after{ display:none; }

/* ===== Businesses served ===== */
.logos-grid{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
}
.logo-chip{
  padding:14px 26px;
  background:var(--white);
  border:1px solid var(--grey-border);
  border-radius:999px;
  font-family:var(--font-display); font-weight:500; font-size:0.88rem;
  color:var(--grey-mid);
}

/* ===== Testimonials ===== */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--grey-border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.stars{ color:var(--red); letter-spacing:2px; margin-bottom:12px; }
.testimonial-card p{ font-size:0.92rem; color:#3C3E43; margin-bottom:18px; }
.testimonial-author strong{ display:block; font-family:var(--font-display); font-size:0.9rem; }
.testimonial-author span{ font-size:0.8rem; color:var(--grey-mid); }

/* ===== Service areas ===== */
.areas-list{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
}
.areas-list li{
  padding:12px 24px;
  background:var(--white);
  border-radius:999px;
  font-family:var(--font-display); font-weight:600; font-size:0.9rem;
  box-shadow:var(--shadow-sm);
}

/* ===== FAQ ===== */
.faq-layout{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:60px;
}
.faq-head{ text-align:left; margin:0; }
.faq-head a{ color:var(--red); font-weight:600; }
.faq-item{
  border-bottom:1px solid var(--grey-border);
}
.faq-question{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  background:none; border:none;
  padding:20px 0;
  text-align:left;
  font-family:var(--font-display); font-weight:600; font-size:0.98rem;
  color:var(--black);
}
.faq-icon{
  font-size:1.3rem; color:var(--red);
  transition:transform 0.25s ease;
  flex-shrink:0; margin-left:16px;
}
.faq-question[aria-expanded="true"] .faq-icon{ transform:rotate(45deg); }
.faq-answer{
  max-height:0; overflow:hidden;
  transition:max-height 0.3s ease;
}
.faq-answer p{ padding-bottom:20px; font-size:0.9rem; color:var(--grey-mid); margin:0; }

/* ===== Contact ===== */
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:60px;
  align-items:start;
}
.contact-detail{
  display:flex; gap:16px; align-items:flex-start;
  margin:22px 0;
}
.contact-icon{ font-size:1.3rem; }
.contact-detail strong{ display:block; font-family:var(--font-display); font-size:0.92rem; margin-bottom:2px; }
.contact-detail a, .contact-detail span{ font-size:0.92rem; color:var(--grey-mid); }
.contact-detail a:hover{ color:var(--red); }
.map-embed{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  margin-top:28px;
}

.contact-form-wrap{
  background:var(--white);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow-md);
}
.enquiry-form h3{ font-size:1.2rem; margin-bottom:20px; }
.form-row{ margin-bottom:18px; display:flex; flex-direction:column; gap:6px; }
.form-row--split{
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.form-row--split > div{ display:flex; flex-direction:column; gap:6px; }
label{ font-size:0.84rem; font-weight:600; font-family:var(--font-display); }
input, select, textarea{
  font-family:var(--font-body);
  font-size:0.94rem;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  border:1.5px solid var(--grey-border);
  background:var(--grey-light);
  color:var(--black);
  transition:border-color 0.2s ease, background 0.2s ease;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:var(--red);
  background:var(--white);
}
input.invalid, select.invalid, textarea.invalid{ border-color:var(--red); }
.field-error{
  font-size:0.78rem; color:var(--red);
  min-height:1em;
}
.form-status{
  margin-top:16px;
  font-size:0.88rem;
  font-weight:500;
  text-align:center;
  min-height:1.2em;
}
.form-status.success{ color:#1E8E3E; }
.form-status.error{ color:var(--red); }

.btn[disabled]{ opacity:0.7; cursor:not-allowed; }
.btn .spinner{
  width:16px; height:16px;
  border:2px solid rgba(255,255,255,0.5);
  border-top-color:var(--white);
  border-radius:50%;
  animation:spin 0.7s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ===== Footer ===== */
.site-footer{
  background:var(--black);
  color:rgba(255,255,255,0.75);
  padding-top:70px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo{ height:48px; margin-bottom:16px; filter:brightness(0) invert(1); }
.footer-brand p{ font-size:0.86rem; color:rgba(255,255,255,0.55); max-width:280px; }
.footer-col h4{ color:var(--white); font-size:0.92rem; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:0.86rem; color:rgba(255,255,255,0.65); transition:color 0.2s ease; }
.footer-col a:hover{ color:var(--red); }
.footer-col li{ font-size:0.86rem; color:rgba(255,255,255,0.65); }

.footer-legal{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
  padding:24px 0;
  font-size:0.8rem;
  color:rgba(255,255,255,0.5);
}
.footer-legal-links{ display:flex; gap:20px; }
.footer-legal-links a:hover{ color:var(--red); }

/* ===== Back to top ===== */
.back-to-top{
  position:fixed; right:24px; bottom:24px;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  border:none;
  font-size:1.2rem;
  box-shadow:var(--shadow-red);
  opacity:0; visibility:hidden;
  transform:translateY(10px);
  transition:all 0.3s ease;
  z-index:90;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--red-dark); }

/* ===== Modal ===== */
.modal-overlay{
  position:fixed; inset:0;
  background:rgba(23,24,27,0.6);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity 0.25s ease, visibility 0.25s ease;
  z-index:200;
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-box{
  background:var(--white);
  border-radius:var(--radius);
  padding:36px;
  max-width:640px; width:100%;
  max-height:80vh; overflow-y:auto;
  position:relative;
}
.modal-close{
  position:absolute; top:16px; right:16px;
  background:none; border:none;
  font-size:1.6rem; line-height:1;
  color:var(--grey-mid);
}
.modal-body h4{ font-size:0.98rem; margin-top:20px; }
.modal-body p{ font-size:0.9rem; color:var(--grey-mid); }

/* ===== Focus visibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid var(--red);
  outline-offset:2px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .faq-layout{ grid-template-columns:1fr; }
  .route-timeline{ grid-template-columns:repeat(2, 1fr); }
  .route-step:nth-child(4n)::after{ display:block; }
  .route-step:nth-child(2n)::after{ display:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav{
    position:fixed; top:calc(var(--header-h) + var(--notice-h)); left:0; right:0;
    background:var(--white);
    box-shadow:0 12px 20px rgba(0,0,0,0.08);
    max-height:0; overflow:hidden;
    transition:max-height 0.3s ease;
  }
  .main-nav.open{ max-height:520px; }
  .main-nav ul{ flex-direction:column; padding:10px 24px 20px; gap:0; }
  .main-nav a{ display:block; padding:14px 0; color:var(--black) !important; border-bottom:1px solid var(--grey-border); }
  .main-nav a::after{ display:none; }
  .header-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
}

@media (max-width: 640px){
  .section{ padding:64px 0; }
  .hero{ min-height:auto; padding-bottom:60px; }
  .hero-content{ padding-top:40px; }
  .form-row--split{ grid-template-columns:1fr; }
  .route-timeline{ grid-template-columns:1fr; }
  .route-step::after{ display:none !important; }
  .about-photo-badge{ position:static; margin-top:16px; }
  .footer-grid{ grid-template-columns:1fr; }
  .notice-track span{ font-size:0.76rem; padding:0 24px; }
}
