/* =============================================
   INTER FONT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  background: #fff;
  padding-bottom: 70px;
}

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

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

ul {
  list-style: none;
}

/* =============================================
   TOP HEADER BAR
   ============================================= */
.topbar {
  background-color: #ffffff;
  border-top: 4px solid #1c2d42;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-logo img {
  width: 193px;
}

.topbar-agent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-label {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgb(2, 133, 189);
  white-space: nowrap;
  text-align: right;
}

.topbar-agent img {
  width: 111px;
}

.topbar-phone {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 173, 3, 1);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-phone:hover {
  background: rgba(220, 148, 0, 1);
}

.btn-callback-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0057a5;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-callback-header:hover {
  background: #00448a;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background-image: url('images/long-distance-moving-ppc-banner.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 55px 0 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero-left {
  flex: 1 1 auto;
  color: #fff;
  padding-top: 10px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 28px;
}

.hero-list {
  margin-bottom: 30px;
}

.hero-list li {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-arrow {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-trust img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.hero-form-wrap {
  flex: 0 0 465px;
  min-width: 0;
}

.hero-form-card {
  background: rgba(8, 70, 108, 0.62);
  border-radius: 8px;
  padding: 37px 37px 41px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
}

.move-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.move-form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.move-form label {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.move-form input,
.move-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  outline: none;
  min-width: 0;
}

.move-form input:focus,
.move-form select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.btn-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #f5a623;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: #e0941a;
}

/* =============================================
   TRUST BADGES STRIP
   ============================================= */
.trust-strip {
  background: transparent;
  padding: 0 30px;
  margin-top: -67px;
  margin-bottom: -67px;
  position: relative;
  z-index: 10;
}

.trust-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
  padding: 26px 48px;
}

.trust-strip-inner img {
  max-height: 80px;
  width: auto;
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.ppc-about {
  background: #0285bd;
  padding: 54px 30px;
  padding-top: 110px;
  text-align: center;
}

.ppc-about-inner {
  max-width: 860px;
  margin: 0 auto;
}

.ppc-about h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.ppc-about h3 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.ppc-about p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.78;
}

.btn-talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #28a745;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  margin-top: 28px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-talk:hover {
  background: #218838;
}

/* =============================================
   OUR SERVICES
   ============================================= */
.services {
  padding-bottom: 40px;
  background: #fff;
}

.services-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.services-heading {
  font-size: 48px;
  font-weight: 700;
  color: rgb(52, 52, 52);
  text-align: center;
  padding: 48px 0 20px;
}

.services-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 30px 36px;
  max-width: 1260px;
  margin: 0 auto;
}

.tab-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #fff;
  border: 1px solid #dde1ea;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.tab-link:hover {
  background: #eef1fb;
  border-color: #b0b8d8;
}

.tab-arrow {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  filter: invert(27%) sepia(92%) saturate(600%) hue-rotate(185deg) brightness(90%);
}

.svc-block,
.svc-white,
.svc-gray {
  background: #fff;
  padding: 10px 30px;
}

.svc-inner {
  max-width: 1260px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e4e7ee;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 30px;
  gap: 0;
}

.svc-img {
  overflow: hidden;
  flex: 0 0 45%;
  border-radius: 10px;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-text {
  flex: 1;
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-text:first-child {
  padding-left: 0;
}

.svc-img+.svc-text {
  padding-right: 0;
}

.svc-text h3 {
  font-size: 36px;
  font-weight: 700;
  color: rgb(2, 133, 189);
  margin-bottom: 16px;
}

.svc-text p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.78;
}

.svc-cta-wrap {
  text-align: center;
  padding: 36px 0 10px;
}

.btn-svc-quote {
  display: inline-block;
  background: rgba(255, 173, 3, 1);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 40px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-svc-quote:hover {
  background: rgba(220, 148, 0, 1);
}

/* =============================================
   SPECIALIZED SENIORS
   ============================================= */
.ppc-seniors {
  background: #f0f4f8;
  padding: 60px 30px;
}

.ppc-seniors-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ppc-seniors-text {
  flex: 1;
}

.ppc-seniors-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: rgb(2, 133, 189);
  margin-bottom: 18px;
  line-height: 1.3;
}

.ppc-seniors-text p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.78;
}

.ppc-seniors-img {
  flex: 0 0 45%;
}

.ppc-seniors-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* =============================================
   WHY COAST VALLEY
   ============================================= */
.ppc-why {
  background: #fff;
  padding: 60px 30px;
}

.ppc-why-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 44px;
}

.ppc-why-img {
  flex: 0 0 45%;
}

.ppc-why-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.ppc-why-text {
  flex: 1;
}

.ppc-why-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1c2d42;
  margin-bottom: 18px;
  line-height: 1.3;
}

.ppc-why-text p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.78;
}

.ppc-why-list-wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.ppc-why-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 30px;
  list-style: none;
  padding: 0;
}

.ppc-why-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.why-arrow {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  filter: invert(27%) sepia(92%) saturate(600%) hue-rotate(185deg) brightness(90%);
}

/* =============================================
   PREMIER COMMERCIAL
   ============================================= */
.ppc-premier {
  background: #f0f4f8;
  padding: 60px 30px;
}

.ppc-premier-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ppc-premier-text {
  flex: 1;
}

.ppc-premier-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1c2d42;
  margin-bottom: 18px;
  line-height: 1.3;
}

.ppc-premier-text p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.78;
}

.ppc-premier-img {
  flex: 0 0 45%;
}

.ppc-premier-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* =============================================
   CUSTOMER REVIEWS
   ============================================= */
.reviews {
  background-image: url('images/customer-reviews.jpg');
  background-size: cover;
  background-position: center;
  padding: 65px 0;
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.62);
}

.reviews-container {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.reviews-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.reviews-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.review-card {
  flex: 1;
  background: rgba(12, 52, 98, 0.82);
  border-radius: 10px;
  padding: 50px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

.review-quote-img {
  width: 60px;
  height: auto;
  display: block;
  position: absolute;
  top: -26px;
  right: 30px;
}

.review-card p {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-top: 18px;
}

.review-stars {
  color: #f5a623;
  font-size: 20px;
  display: block;
  margin-top: 10px;
  letter-spacing: 3px;
}

/* =============================================
   STICKY BOTTOM BAR
   ============================================= */
.ppc-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  padding: 10px 20px;
}

.ppc-sticky-quote {
  min-width: 249px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #ffad03;
  color: #fff;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.ppc-sticky-quote:hover {
  background: #e09900;
}

.ppc-sticky-call {
  min-width: 249px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(0, 87, 165, 1);
  color: #fff;
  transition: background 0.2s;
  text-decoration: none;
}

.ppc-sticky-call:hover {
  background: rgba(0, 68, 138, 1);
}

.ppc-sticky-callback {
  min-width: 249px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #0057a5;
  color: #fff;
  transition: background 0.2s;
  text-decoration: none;
}

.ppc-sticky-callback:hover {
  background: #00448a;
}

/* =============================================
   FOOTER
   ============================================= */
.ppc-footer {
  background: #222222;
  padding: 48px 30px 0;
}

.ppc-footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  padding-bottom: 36px;
}

.ppc-footer-logos {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.ppc-footer-logos img {
  background: #fff;
  padding: 10px 14px;
  height: 90px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.ppc-footer-info {
  flex: 1;
  max-width: 316px;
}

.ppc-footer-info p {
  color: #fff;
  font-size: 18px;
  line-height: 2;
}

.ppc-footer-map {
  flex: 0 0 340px;
}

.ppc-footer-map img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.ppc-footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 30px;
}

.ppc-footer-copy p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* =============================================
   CALLBACK PAGE
   ============================================= */
.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

body.page-center {
  padding-bottom: 0;
}

.callback-card {
  background: #0285bd;
  border-radius: 12px;
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.callback-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.callback-logo img {
  height: 80px;
  width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
}

.callback-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.callback-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}

.cb-form .form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.cb-form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.cb-form label {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.cb-form input,
.cb-form select {
  width: 100%;
  padding: 11px 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  outline: none;
}

.cb-form input:focus,
.cb-form select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.btn-callback {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  background: #ffad03;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-callback:hover {
  background: #e09900;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-card {
  background: #0285bd;
  border-radius: 12px;
  padding: 48px 50px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.thankyou-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.thankyou-logo img {
  height: 85px;
  width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
}

.checkmark {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.checkmark svg {
  width: 40px;
  height: 40px;
}

.thankyou-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.thankyou-sub {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 10px;
}

.thankyou-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- Tablet landscape 1024px --- */
@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 40px;
  }

  .svc-inner {
    padding: 20px;
  }

  .svc-text {
    padding: 20px 28px;
  }

  .svc-text h3 {
    font-size: 28px;
  }

  .services-heading {
    font-size: 38px;
  }

  .ppc-seniors-inner,
  .ppc-why-inner,
  .ppc-premier-inner {
    gap: 36px;
  }

  .ppc-footer-inner {
    gap: 36px;
  }
}

/* --- Tablet portrait 820px --- */
@media (max-width: 820px) {

  /* Header */
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
  }

  .topbar-logo img {
    width: 150px;
  }

  .topbar-agent {
    align-items: center;
  }

  .agent-label {
    font-size: 14px;
  }

  .topbar-agent img {
    width: 90px;
  }

  .btn-phone,
  .btn-callback-header {
    font-size: 15px;
    padding: 10px 16px;
    min-width: 0;
  }

  /* Hero */
  .hero {
    padding: 36px 0 80px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 28px;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-list li {
    font-size: 17px;
  }

  .hero-form-wrap {
    flex: none;
    width: 100%;
  }

  .hero-form-card {
    padding: 28px 24px 32px;
  }

  /* Trust strip */
  .trust-strip {
    margin-top: -44px;
    padding: 0 20px;
  }

  .trust-strip-inner {
    gap: 24px;
    padding: 20px 28px;
  }

  .trust-strip-inner img {
    max-height: 54px;
  }

  /* About */
  .ppc-about {
    padding: 54px 20px;
    padding-top: 100px !important;
  }

  .ppc-about h2 {
    font-size: 26px;
  }

  .ppc-about h3 {
    font-size: 18px;
  }

  .ppc-about p {
    font-size: 15px;
  }

  .btn-talk {
    font-size: 16px;
    padding: 12px 28px;
  }

  /* Services */
  .services-heading {
    font-size: 30px;
    padding: 36px 20px 16px;
  }

  .services-tabs {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 24px;
  }

  .tab-link {
    width: 100%;
    white-space: normal;
  }

  .svc-block {
    padding: 8px 16px;
  }

  .svc-inner {
    flex-direction: column;
    padding: 0;
  }

  .svc-img {
    flex: none;
    width: 100%;
    height: 240px;
    border-radius: 0;
  }

  .svc-text {
    padding: 24px 20px;
    align-items: flex-start;
    text-align: left;
  }

  .svc-text h3 {
    font-size: 22px;
  }

  .svc-text p {
    font-size: 15px;
  }

  .svc-text:first-child {
    padding-left: 20px;
  }

  .svc-img + .svc-text {
    padding-right: 20px;
  }

  /* Seniors */
  .ppc-seniors {
    padding: 40px 20px;
  }

  .ppc-seniors-inner {
    flex-direction: column;
    gap: 24px;
  }

  .ppc-seniors-text {
    text-align: center;
  }

  .ppc-seniors-text h2 {
    font-size: 24px;
  }

  .ppc-seniors-text p {
    font-size: 15px;
  }

  .ppc-seniors-img {
    flex: none;
    width: 100%;
  }

  /* Why */
  .ppc-why {
    padding: 40px 20px;
  }

  .ppc-why-inner {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .ppc-why-img {
    flex: none;
    width: 100%;
  }

  .ppc-why-text {
    text-align: center;
  }

  .ppc-why-text h2 {
    font-size: 24px;
  }

  .ppc-why-text p {
    font-size: 15px;
  }

  .ppc-why-list-wrap {
    padding: 0 4px;
  }

  .ppc-why-checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
  }

  .ppc-why-checklist li {
    font-size: 14px;
  }

  /* Premier */
  .ppc-premier {
    padding: 40px 20px;
  }

  .ppc-premier-inner {
    flex-direction: column;
    gap: 24px;
  }

  .ppc-premier-text {
    text-align: center;
  }

  .ppc-premier-text h2 {
    font-size: 24px;
  }

  .ppc-premier-text p {
    font-size: 15px;
  }

  .ppc-premier-img {
    flex: none;
    width: 100%;
  }

  /* Reviews */
  .reviews {
    padding: 50px 0;
  }

  .reviews-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .reviews-container {
    padding: 0 16px;
  }

  .reviews-grid {
    flex-direction: column;
    gap: 40px;
  }

  .review-card {
    padding: 50px 20px 24px;
  }

  .review-card p {
    font-size: 15px;
  }

  /* Footer */
  .ppc-footer {
    padding: 40px 20px 0;
  }

  .ppc-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .ppc-footer-logos {
    justify-content: center;
  }

  .ppc-footer-logos img {
    height: 70px;
  }

  .ppc-footer-info {
    max-width: 100%;
  }

  .ppc-footer-info p {
    font-size: 15px;
    line-height: 1.8;
  }

  .ppc-footer-map {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  /* Sticky */
  .ppc-sticky-bar {
    padding: 8px 12px;
    gap: 8px;
  }

  .ppc-sticky-quote,
  .ppc-sticky-call,
  .ppc-sticky-callback {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    padding: 10px 8px;
    letter-spacing: 0;
  }

  /* Callback / Thank-you */
  .callback-card {
    padding: 32px 28px 36px;
    max-width: 100%;
  }

  .thankyou-card {
    padding: 40px 28px;
    max-width: 100%;
  }

  .page-center {
    padding: 30px 16px;
    align-items: flex-start;
  }
}

/* --- Hide header phone below 610px --- */
@media (max-width: 610px) {
  .topbar-phone {
    display: none;
  }
}

/* --- Mobile 520px --- */
@media (max-width: 520px) {

  /* Header */
  .topbar-inner {
    padding: 8px 16px;
    gap: 8px;
  }

  .topbar-logo img {
    width: 130px;
  }

  .topbar-agent img {
    width: 80px;
  }

  /* Hero */
  .hero {
    padding: 28px 0 70px;
  }

  .hero-inner {
    padding: 0 16px;
    gap: 22px;
  }

  .hero-left h1 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hero-list li {
    font-size: 15px;
  }

  .hero-form-card {
    padding: 22px 16px 26px;
  }

  .form-title {
    font-size: 22px;
  }

  .move-form .form-row {
    flex-direction: column;
    gap: 8px;
  }

  /* Trust strip */
  .trust-strip {
    margin-top: -36px;
    padding: 0 14px;
  }

  .trust-strip-inner {
    gap: 14px;
    padding: 16px 18px;
    border-radius: 8px;
  }

  .trust-strip-inner img {
    max-height: 36px;
  }

  /* About */
  .ppc-about {
    padding: 40px 16px;
  }

  .ppc-about h2 {
    font-size: 22px;
  }

  .ppc-about h3 {
    font-size: 16px;
  }

  .ppc-about p {
    font-size: 14px;
  }

  .btn-talk {
    font-size: 14px;
    padding: 12px 20px;
    margin-top: 20px;
  }

  /* Services */
  .services-heading {
    font-size: 24px;
    padding: 28px 16px 12px;
  }

  .services-tabs {
    padding: 8px 16px 18px;
  }

  .tab-link {
    font-size: 14px;
    padding: 10px 14px;
  }

  .svc-block {
    padding: 6px 10px;
  }

  .svc-img {
    height: 200px;
  }

  .svc-text {
    padding: 18px 16px;
  }

  .svc-text:first-child {
    padding-left: 16px;
  }

  .svc-img + .svc-text {
    padding-right: 16px;
  }

  .svc-text h3 {
    font-size: 20px;
  }

  .svc-text p {
    font-size: 14px;
  }

  .btn-svc-quote {
    font-size: 15px;
    padding: 12px 28px;
  }

  /* Seniors / Why / Premier */
  .ppc-seniors,
  .ppc-why,
  .ppc-premier {
    padding: 32px 16px;
  }

  .ppc-seniors-text h2,
  .ppc-why-text h2,
  .ppc-premier-text h2 {
    font-size: 20px;
  }

  .ppc-seniors-text p,
  .ppc-why-text p,
  .ppc-premier-text p {
    font-size: 14px;
  }

  .ppc-why-checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ppc-why-checklist li {
    font-size: 14px;
  }

  /* Reviews */
  .reviews {
    padding: 36px 0;
  }

  .reviews-heading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .reviews-container {
    padding: 0 12px;
  }

  .reviews-grid {
    gap: 36px;
  }

  .review-card {
    padding: 50px 16px 20px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-author {
    font-size: 15px;
  }

  .review-stars {
    font-size: 17px;
  }

  /* Footer */
  .ppc-footer {
    padding: 28px 14px 0;
  }

  .ppc-footer-logos img {
    height: 56px;
    padding: 6px 10px;
  }

  .ppc-footer-info p {
    font-size: 13px;
    line-height: 1.7;
  }

  .ppc-footer-copy p {
    font-size: 12px;
  }

  /* Sticky */
  .ppc-sticky-bar {
    padding: 7px 10px;
    gap: 6px;
  }

  .ppc-sticky-quote,
  .ppc-sticky-call,
  .ppc-sticky-callback {
    font-size: 12px;
    padding: 9px 6px;
    border-radius: 3px;
  }

  /* Callback / Thank-you */
  .callback-card {
    padding: 26px 16px 28px;
  }

  .callback-title {
    font-size: 24px;
  }

  .callback-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cb-form .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .cb-form input,
  .cb-form select {
    padding: 10px;
    font-size: 13px;
  }

  .btn-callback {
    font-size: 14px;
    padding: 14px;
  }

  .thankyou-card {
    padding: 32px 16px;
  }

  .thankyou-title {
    font-size: 26px;
  }

  .thankyou-sub {
    font-size: 15px;
  }

  .thankyou-note {
    font-size: 13px;
  }

  .thankyou-logo img,
  .callback-logo img {
    height: 60px;
  }

  .checkmark {
    width: 58px;
    height: 58px;
  }

  .checkmark svg {
    width: 30px;
    height: 30px;
  }
}

/* --- Small phones 380px --- */
@media (max-width: 380px) {

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-left h1 {
    font-size: 20px;
  }

  .hero-list li {
    font-size: 14px;
  }

  .trust-strip-inner img {
    max-height: 28px;
  }

  .ppc-about h2 {
    font-size: 19px;
  }

  .services-heading {
    font-size: 20px;
  }

  .svc-text h3 {
    font-size: 18px;
  }

  .ppc-sticky-quote,
  .ppc-sticky-call,
  .ppc-sticky-callback {
    font-size: 11px;
    padding: 8px 4px;
  }

  .callback-title {
    font-size: 20px;
  }

  .thankyou-title {
    font-size: 22px;
  }

  .page-center {
    padding: 20px 10px;
  }
}