body{
  padding: 0px;
}


  /* ===== SPM HEADER ===== */

.spm-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.spm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}

/* Logo */
.spm-logo img {
  height: 38px;
  width: auto;
}

/* Action Buttons */
.spm-header-actions {
  display: flex;
  gap: 10px;
}

.spm-header-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

/* Call Button */
.spm-call-btn {
  background: #d2c2c2; /* Brand Red */
}

/* WhatsApp Button */
.spm-whatsapp-btn {
  background: #25d366;
}

/* ===== HERO SECTION ===== *//* ===== HERO SECTION FIXED ===== */
/* ===== NEW HERO SECTION ===== */

.spm-hero-new {
  background: #f7f8fa;
  padding: 70px 20px;
}

.spm-hero-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text Side */
.spm-hero-text h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
}

.spm-hero-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
}

.spm-hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.spm-hero-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #222;
}

/* CTA */
.spm-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.spm-btn-primary {
  background: #d32f2f;
  color: #fff;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(211,47,47,0.35);
}

.spm-btn-link {
  color: #d32f2f;
  font-weight: 600;
  text-decoration: none;
}

/* Image Side */
.spm-hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .spm-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spm-hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .spm-hero-text h1 {
    font-size: 28px;
  }
}

/* ===== QUOTE SECTION ===== */

.spm-quote-section {
  padding: 60px 16px;
  background: linear-gradient(180deg, #f7f8fa, #ffffff);
}

.spm-quote-card {
  max-width: 420px;
  margin: auto;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-radius: 20px;
  padding: 28px 22px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid #eee;
}

/* Heading */
.spm-quote-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 6px;
}

.spm-quote-sub {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 26px;
}

/* Form */
.spm-quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spm-form-group input {
  width: 100%;
  padding: 15px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  transition: all 0.25s ease;
}

/* Input focus */
.spm-form-group input:focus {
  outline: none;
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211,47,47,0.12);
}

/* CTA Button */
.spm-form-btn {
  margin-top: 10px;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 30px rgba(211,47,47,0.45);
  transition: all 0.25s ease;
}

.spm-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(211,47,47,0.55);
}

/* Trust Badge */
.spm-form-trust {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* Global box sizing fix */
*, *::before, *::after {
  box-sizing: border-box;
}

.spm-form-group {
  width: 100%;
}

.spm-form-group input {
  width: 100%;
  max-width: 100%;
  padding: 15px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  display: block;
}

/* ===== WHY CHOOSE US ===== */

.spm-why {
  padding: 80px 20px;
  background: #ffffff;
}

.spm-why-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.spm-why h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.spm-why-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 50px;
}

/* Grid */
.spm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Item */
.spm-why-item {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spm-why-item span {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

.spm-why-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.spm-why-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Hover */
.spm-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* CTA */
.spm-why-cta {
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 900px) {
  .spm-why-grid {
    grid-template-columns: 1fr;
  }

  .spm-why h2 {
    font-size: 26px;
  }

  .spm-why-item {
    text-align: center;
  }
}

/* ===== HOW IT WORKS ===== */

.spm-process {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7f8fa, #ffffff);
}

.spm-process-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.spm-process h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.spm-process-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 60px;
}

/* Steps */
.spm-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Step card */
.spm-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 26px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spm-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

/* Number */
.spm-step-num {
  font-size: 28px;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 14px;
}

/* Title */
.spm-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* Text */
.spm-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* CTA */
.spm-process-cta {
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 1000px) {
  .spm-process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .spm-process-steps {
    grid-template-columns: 1fr;
  }

  .spm-process h2 {
    font-size: 26px;
  }

  .spm-step {
    text-align: center;
  }
}

/* ===== SERVICES SECTION ===== */

/* ===== SERVICES CARD STYLE ===== */

.spm-services-cards {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    rgba(211, 47, 47, 0.06),
    rgba(211, 47, 47, 0.02)
  );
}

.spm-services-cards::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(211, 47, 47, 0.15);
  margin-bottom: 60px;
}



.spm-services-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.spm-services-container h2 {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.spm-services-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 60px;
}

/* Grid */
.spm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.spm-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  border: 1.5px solid rgba(211, 47, 47, 0.25);
  transition: all 0.25s ease;
}


.spm-service-card:hover {
  transform: translateY(-6px);
  border-color: #edafaf;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


/* Icon */
.spm-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(211,47,47,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.spm-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #d32f2f;
  stroke-width: 1.8;
}

.spm-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #d32f2f;
  stroke-width: 1.8;
}


/* Text */
.spm-service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.spm-service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* CTA */
.spm-services-cta {
  margin-top: 70px;
}

/* Responsive */
@media (max-width: 1000px) {
  .spm-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .spm-services-grid {
    grid-template-columns: 1fr;
  }

  .spm-services-container h2 {
    font-size: 26px;
  }

  .spm-service-card {
    text-align: center;
  }

  .spm-service-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== REVIEWS SECTION ===== */

.spm-reviews {
  padding: 100px 20px;
  background: #ffffff;
}

/* ===== FINAL CTA WITH IMAGE ===== */

.spm-final-cta {
  position: relative;
  padding: 100px 20px;
  background: url("assets/images/Packers\ and\ Movers\ Jaipur\ Contact\ Sanskar\ Packers\ CTA\ Image.webp") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

/* Gradient overlay */
.spm-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

/* Content above overlay */
.spm-final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* Text */
.spm-final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.spm-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 38px;
  line-height: 1.6;
}

/* Actions */
.spm-final-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Secondary CTA on dark bg */
.spm-btn-link.light {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
}

/* Trust line */
.spm-final-trust {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 600px) {
  .spm-final-cta h2 {
    font-size: 26px;
  }
}

/* ===== FOOTER ===== */

.spm-footer {
  background: #111;
  color: #ddd;
  padding: 80px 20px;
}

.spm-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 40px;
}

/* Brand */
.spm-footer-logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.spm-footer-logo span {
  background: #d32f2f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.spm-footer-about {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 16px;
}

.spm-footer-trust {
  font-size: 13px;
  color: #bbb;
}

/* Headings */
.spm-footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

/* Lists */
.spm-footer-col ul {
  list-style: none;
  padding: 0;
}

.spm-footer-col ul li {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

/* Links */
.spm-footer-col a {
  color: #ddd;
  text-decoration: none;
}

.spm-footer-col a:hover {
  color: #d32f2f;
}

/* Bottom */
.spm-footer-bottom {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .spm-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
