/* =========================================================
   Raj International Cargo Packers & Movers
   Clean responsive stylesheet
   ========================================================= */

:root {
  --primary: #d22a1c;
  --primary-dark: #b51f14;
  --primary-light: #e4625a;
  --primary-soft: #fff0ee;

  --black: #131010;
  --charcoal: #2d2726;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --grey: #797f82;

  --text: #1c1c1c;
  --text-muted: #666666;
  --border: #e2e2e2;
  --success: #1f9d55;
  --whatsapp: #25d366;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 8px 24px rgba(19, 16, 16, 0.08);
  --shadow-md: 0 14px 38px rgba(19, 16, 16, 0.12);
  --shadow-lg: 0 26px 80px rgba(0, 0, 0, 0.2);

  --transition: 180ms ease;
}

/* ---------- Reset / base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(210, 42, 28, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: 92px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Utility bar ---------- */

.utility-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--black);
  font-size: 0.85rem;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-links a {
  transition: color var(--transition);
}

.utility-links a:hover {
  color: var(--white);
}

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 226, 226, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(19, 16, 16, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 112px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  min-width: 0;
  display: grid;
  line-height: 1.08;
}

.brand strong {
  color: var(--black);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--text-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-weight: 700;
}

.primary-nav > a:not(.btn) {
  transition: color var(--transition);
}

.primary-nav > a:not(.btn):hover {
  color: var(--primary);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 8px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--black);
}

/* ---------- Buttons ---------- */

.btn {
  min-height: 50px;
  padding-inline: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(210, 42, 28, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  color: var(--black);
  border-color: var(--border);
  background: var(--white);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  color: var(--black);
  background: var(--white);
}

.btn-ghost-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.btn-sm {
  min-height: 42px;
  padding-inline: 16px;
}

.btn-block {
  width: 100%;
}

/* ---------- Shared headings ---------- */

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.why-copy h2,
.seo-grid h2,
.faq-intro h2 {
  margin: 8px 0 14px;
  color: var(--black);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.why-copy > p,
.seo-grid p,
.faq-intro > p {
  margin: 0;
  color: var(--text-muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 50px;
}

.split-heading p {
  max-width: 520px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(210, 42, 28, 0.28), transparent 34%),
    linear-gradient(120deg, rgba(19, 16, 16, 0.99), rgba(45, 39, 38, 0.97));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.22;
}

.hero-glow-one {
  width: 390px;
  height: 390px;
  top: -180px;
  right: 12%;
  background: var(--primary);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  bottom: -160px;
  left: -100px;
  background: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow,
.process-section .eyebrow {
  color: #f3b2ad;
}

.hero-copy h1 {
  max-width: 830px;
  margin: 12px 0 20px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero-actions {
  margin: 30px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-points {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.trust-points li::before {
  content: "✓";
  margin-right: 7px;
  color: #f3b2ad;
  font-weight: 900;
}

.hero-stats {
  max-width: 710px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  padding: 18px 16px;
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  color: var(--white);
  font-size: 1.05rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

/* ---------- Quote form ---------- */

.quote-card {
  min-width: 0;
  padding: 28px;
  color: var(--text);
  border: 1px solid var(--border);
  border-top: 5px solid var(--primary);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-card-top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.35rem;
  font-weight: 900;
}

.quote-card h2 {
  margin: 2px 0 0;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mini-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-card form {
  display: grid;
  gap: 15px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding-inline: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(210, 42, 28, 0.1);
}

.form-note,
.form-status {
  margin: -2px 0 0;
  text-align: center;
  font-size: 0.8rem;
}

.form-note {
  color: var(--text-muted);
}

.form-status {
  min-height: 1.2em;
  color: var(--success);
  font-weight: 750;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-grid > div {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.trust-strip-grid > div:last-child {
  border-right: 0;
}

.trust-strip-grid > div > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: var(--primary-soft);
  font-weight: 900;
}

.trust-strip-grid p {
  margin: 0;
  display: grid;
  line-height: 1.25;
}

.trust-strip-grid strong {
  font-size: 0.9rem;
}

.trust-strip-grid small {
  margin-top: 3px;
  color: var(--text-muted);
}

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 42, 28, 0.45);
  box-shadow: var(--shadow-md);
}

.service-card.featured-card {
  border-color: #f0c3be;
  background: linear-gradient(160deg, #fff7f6, var(--white));
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.5rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--black);
  font-size: 1.18rem;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.service-card a {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

/* ---------- Locations ---------- */

.locations {
  background: var(--light-grey);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.location-card {
  min-width: 0;
  min-height: 210px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 42, 28, 0.45);
  box-shadow: var(--shadow-md);
}

.location-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(150deg, var(--black), var(--primary));
}

.location-art::before,
.location-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.location-art::before {
  width: 150px;
  height: 150px;
}

.location-art::after {
  width: 92px;
  height: 92px;
}

.location-art span {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.location-copy {
  padding: 25px;
  align-self: center;
}

.location-tag {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 6px 0 8px;
  color: var(--black);
  line-height: 1.2;
}

.location-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.location-card strong {
  color: var(--primary);
  font-size: 0.9rem;
}

/* ---------- Why choose us / illustration ---------- */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
}

.visual-panel {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  background: #f5f5f5;
}
.visual-panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Move smarter card */
.visual-badge {
  position: absolute;
  top: 36px;
  left: 36px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 5px;

  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);

  border-radius: 16px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10);
}

.visual-badge strong {
  font-size: 17px;
  color: #111;
}

.visual-badge span {
  font-size: 13px;
  color: #555;
}

.visual-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -70px;
  border-radius: 50%;
  background: #fbe3e0;
}

.box-stack {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff6e5;
  border: 2px solid rgba(100, 56, 19, 0.2);
  background: #b97a3f;
  box-shadow: 0 16px 30px rgba(73, 46, 21, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.box-one {
  width: 138px;
  height: 120px;
  bottom: 82px;
  left: 56px;
  transform: rotate(-4deg);
}

.box-two {
  width: 165px;
  height: 112px;
  bottom: 88px;
  left: 145px;
  transform: rotate(3deg);
}

.truck-illustration {
  position: absolute;
  width: 290px;
  height: 150px;
  right: 38px;
  bottom: 86px;
}

.truck-box {
  position: absolute;
  width: 190px;
  height: 105px;
  left: 0;
  bottom: 35px;
  display: grid;
  place-items: center;
  border-radius: 12px 8px 4px 8px;
  color: var(--white);
  background: var(--black);
  font-size: 1.15rem;
  font-weight: 900;
}

.truck-cabin {
  position: absolute;
  width: 96px;
  height: 82px;
  right: 7px;
  bottom: 35px;
  border-radius: 10px 20px 6px 4px;
  background: var(--primary);
  clip-path: polygon(0 23%, 70% 23%, 100% 55%, 100% 100%, 0 100%);
}

.wheel {
  position: absolute;
  width: 44px;
  height: 44px;
  bottom: 18px;
  border: 9px solid #3a3a3a;
  border-radius: 50%;
  background: #171717;
}

.wheel-one {
  left: 47px;
}

.wheel-two {
  right: 35px;
}

.visual-badge {
  position: absolute;
  top: 35px;
  left: 35px;
  padding: 16px 18px;
  display: grid;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(19, 16, 16, 0.12);
}

.visual-badge strong {
  color: var(--black);
}

.visual-badge span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.feature-list > div {
  padding-block: 16px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.feature-list > div:last-child {
  border-bottom: 0;
}

.feature-list > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
}

.feature-list p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.feature-list strong {
  color: var(--black);
}

.feature-list small {
  color: var(--text-muted);
  font-size: 0.9rem;
}
@media (max-width: 820px) {

  .visual-panel {
    min-height: 430px;
  }

  .visual-badge {
    top: 22px;
    left: 22px;
  }
}
@media (max-width: 520px) {

  .visual-panel {
    min-height: 340px;
    border-radius: 22px;
  }

  .visual-panel-image {
    object-position: center;
  }

  .visual-badge {
    top: 16px;
    left: 16px;
    padding: 14px 16px;
  }
}
/* ---------- Process ---------- */

.process-section {
  color: var(--white);
  background: var(--black);
}

.light-heading h2 {
  color: var(--white);
}

.light-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  position: relative;
  min-width: 0;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 8px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* ---------- SEO content ---------- */

.seo-content {
  background: var(--white);
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 60px;
}

.seo-grid p + p {
  margin-top: 16px;
}

.seo-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--light-grey);
}

.seo-card h3 {
  margin: 0 0 14px;
  color: var(--black);
}

.seo-card ul {
  margin: 0;
  padding-left: 21px;
  display: grid;
  gap: 9px;
  color: var(--text-muted);
}

.text-link {
  margin-top: 22px;
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
}

/* ---------- Reviews ---------- */

.reviews {
  background: var(--light-grey);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.stars {
  color: #f5a623;
  letter-spacing: 0.08em;
}

.review-card > p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.review-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
}

.review-author p {
  margin: 0;
  display: grid;
}

.review-author small {
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 70px;
}

.faq-intro .btn {
  margin-top: 26px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--black);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.accordion-trigger:hover,
.accordion-trigger b {
  color: var(--primary);
}

.accordion-trigger b {
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.accordion-panel {
  padding: 0 40px 22px 0;
  color: var(--text-muted);
}

.accordion-panel p {
  margin: 0;
}

/* ---------- CTA ---------- */

.cta-band {
  padding-block: 50px;
  color: var(--white);
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.light-eyebrow {
  color: #ffd1cd;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 64px 0 100px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 52px;
}

.brand-footer {
  align-items: flex-start;
}

.brand-footer img {
  width: 128px;
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.56);
}

.footer-brand > p {
  max-width: 360px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
}

.footer-grid h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid a {
  transition: color var(--transition);
}

.footer-grid a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mobile-actions {
  display: none;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
    font-size: 0.94rem;
  }

  .brand img {
    width: 100px;
  }

  .hero-grid,
  .why-grid,
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .quote-card {
    max-width: 760px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .section-pad {
    padding-block: 72px;
  }

  .utility-bar {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 92px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 10px;
  }

  .primary-nav .btn {
    margin-top: 6px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .hero-stats div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section-pad {
    padding-block: 60px;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 82px;
  }

  .brand strong {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-points {
    display: grid;
    gap: 9px;
  }

  .quote-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  .quote-card-top {
    align-items: flex-start;
  }

  .form-grid.two-col,
  .trust-strip-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div,
  .trust-strip-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-art {
    min-height: 120px;
  }

  .why-grid {
    gap: 36px;
  }

  .visual-panel {
    min-height: 430px;
  }

  .truck-illustration {
    right: 15px;
    transform: scale(0.76);
    transform-origin: bottom right;
  }

  .box-one {
    left: 18px;
    bottom: 55px;
  }

  .box-two {
    left: 95px;
    bottom: 56px;
  }

  .visual-badge {
    top: 18px;
    left: 18px;
  }

  .accordion-panel {
    padding-right: 0;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brand-footer img {
    width: 108px;
  }

  .brand-footer strong {
    max-width: none;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    height: 68px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--black);
    box-shadow: 0 -10px 30px rgba(19, 16, 16, 0.1);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-actions a:nth-child(2) {
    background: var(--whatsapp);
  }

  .mobile-actions a:nth-child(3) {
    background: var(--primary);
  }

  .mobile-actions span {
    color: inherit;
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 72px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 0.86rem;
  }

  .quote-card h2 {
    font-size: 1.35rem;
  }

  .service-card,
  .review-card,
  .seo-card,
  .location-copy {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   SCROLL / LOAD ANIMATIONS
========================================================= */

.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-init.reveal-left {
  transform: translateX(-35px);
}

.reveal-init.reveal-right {
  transform: translateX(35px);
}

.reveal-init.reveal-scale {
  transform: scale(0.96);
}

.reveal-init.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


/* Hero load animation */

.hero-copy {
  animation: heroCopyIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quote-card {
  animation: heroFormIn 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFormIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Image animation */

.visual-panel img {
  transition: transform 0.7s ease;
}

.visual-panel:hover img {
  transform: scale(1.025);
}


/* Cards */

.service-card,
.location-card,
.review-card,
.feature-list > div {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.location-card:hover,
.review-card:hover {
  transform: translateY(-5px);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
  }
}
.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  color: #198754;
}

.form-status.error {
  color: #d92d20;
}

.quote-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}