/* =========================================================
   PM Movers — Global Stylesheet
   ========================================================= */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --navy-light: #13315c;
  --orange: #ff6b1a;
  --orange-dark: #e2570a;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --grey-100: #eef1f6;
  --grey-300: #d7dee8;
  --grey-500: #6b7686;
  --grey-700: #3b4454;
  --text: #1c2534;
  --whatsapp: #25d366;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--grey-700); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #cfd9ea; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 26, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--navy .eyebrow { background: rgba(255, 107, 26, 0.18); }

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { font-size: 1.05rem; margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(255, 107, 26, 0.35);
}
.btn--orange:hover { background: var(--orange-dark); box-shadow: 0 10px 26px rgba(255, 107, 26, 0.45); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-light); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: #1ebe59; }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 0.9rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-100);
  height: var(--header-h);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(11,37,69,0.08); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
}
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .logo-mark svg { width: 22px; height: 22px; }
.logo span.accent { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a.active,
.main-nav a:hover { color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: 0.2s; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: flex-start;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

.section--navy .trust-strip li,
.hero .trust-strip li { color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, #eef3fa 0%, #ffffff 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead {
  font-size: 1.12rem;
  color: var(--grey-700);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-copy .btn-row { margin-bottom: 30px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media .badge-float {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-float .stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.badge-float strong { font-family: "Poppins", sans-serif; color: var(--navy); display: block; font-size: 0.95rem; }
.badge-float span { font-size: 0.8rem; color: var(--grey-500); }

/* Quick quote card */
.quick-quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
  border: 1px solid var(--grey-100);
  margin-top: 8px;
}
.quick-quote h3 { font-size: 1.05rem; margin-bottom: 4px; }
.quick-quote .sub { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 16px; }
.quick-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-quote-grid .full { grid-column: 1 / -1; }

/* ---------- Form elements ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-300);
  background: var(--white);
  color: var(--text);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.8rem; color: var(--grey-500); margin-top: 10px; }
.form-success {
  display: none;
  background: #e9f9ee;
  border: 1px solid #b7e6c5;
  color: #1c7a3c;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-success.visible { display: block; }

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(11, 37, 69, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--orange); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* Service preview / image cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .img-wrap { height: 200px; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .img-wrap img { transform: scale(1.06); }
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.94rem; margin-bottom: 18px; flex: 1; }

/* ---------- Pricing ---------- */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  border: 1.5px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.price-card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.price-card h3 { font-size: 1.1rem; color: var(--grey-700); font-family: "Poppins", sans-serif; margin-bottom: 14px; }
.price-card .price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--grey-500); }
.price-card .from { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 24px; }
.price-card ul { text-align: left; margin-bottom: 26px; flex: 1; }
.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--grey-700);
  padding: 7px 0;
  border-bottom: 1px dashed var(--grey-100);
}
.price-card ul li svg { width: 16px; height: 16px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.included-strip {
  margin-top: 32px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: center;
}
.included-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
}
.included-strip svg { width: 16px; height: 16px; color: var(--orange); }

/* ---------- Areas covered ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
}
.area-chip strong { display: block; font-family: "Poppins", sans-serif; color: var(--navy); font-size: 0.98rem; }
.area-chip span { font-size: 0.78rem; color: var(--orange); font-weight: 600; letter-spacing: 0.03em; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}
.testimonial-card .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.testimonial-card p.quote { font-size: 0.98rem; color: var(--grey-700); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-family: "Poppins", sans-serif; color: var(--navy); font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--grey-500); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.overall-rating .stars { color: var(--orange); font-size: 1.4rem; letter-spacing: 4px; }
.overall-rating strong { font-family: "Poppins", sans-serif; color: var(--navy); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: #cfd9ea; margin-bottom: 24px; }
.cta-band .btn-row { margin-bottom: 8px; }
.cta-band-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* ---------- Service detail rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--grey-100);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-detail-copy .num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
.service-detail-copy h2 { font-size: 1.7rem; margin-bottom: 14px; }
.service-detail-copy p { margin-bottom: 18px; }
.service-detail-copy ul { margin-bottom: 26px; }
.service-detail-copy ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--grey-700);
  padding: 6px 0;
}
.service-detail-copy ul li svg { width: 17px; height: 17px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* ---------- Contact page ---------- */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  background: var(--navy);
  overflow: hidden;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,26,51,0.95) 10%, rgba(11,37,69,0.75) 100%);
}
.page-banner .container { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.page-banner h1 { color: var(--white); margin-bottom: 14px; }
.page-banner p { color: #cfd9ea; font-size: 1.08rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-form-card,
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  padding: 34px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

.contact-info-card h3 { margin-bottom: 18px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method .icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-method strong { display: block; font-family: "Poppins", sans-serif; color: var(--navy); font-size: 0.92rem; }
.contact-method span, .contact-method a { font-size: 0.92rem; color: var(--grey-700); }

.hours-table { width: 100%; margin: 16px 0 22px; }
.hours-table tr { border-bottom: 1px solid var(--grey-100); }
.hours-table td { padding: 8px 0; font-size: 0.9rem; color: var(--grey-700); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--grey-100);
}
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #b9c5da;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo .logo-mark { background: var(--orange); }
.footer-brand p { color: #9fadc4; font-size: 0.92rem; max-width: 320px; margin-bottom: 16px; }
.footer-social a { color: #cfd9ea; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--orange); }
.footer-grid address { font-style: normal; font-size: 0.9rem; }
.footer-grid address p { color: #9fadc4; margin-bottom: 10px; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #7f8dab;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 600;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

/* ---------- Sticky mobile bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 590;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  box-shadow: 0 -6px 20px rgba(11,37,69,0.12);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-cta-bar a { flex: 1; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 26px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--grey-100);
  }
  .main-nav.nav-open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--grey-100); }
  .main-nav ul li a { display: block; padding: 14px 2px; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { height: 320px; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 26px; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .service-detail.reverse .service-detail-media { order: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  body { padding-bottom: 74px; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 90px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-quote-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .header-cta { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}
