/* ============================
           Shifting Service Page Styles
        ============================ */
:root {
  --primary: #1a73e8;
  --primary-dark: #1558b0;
  --accent: #27ae60;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --border: #e5e7eb;
  --white: #ffffff;
}

/* Hero */
.shifting-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d2644 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.shifting-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-headline h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-headline h1 span {
  color: #4fc3f7;
}
.hero-headline p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}
.hero-stat i {
  color: #4fc3f7;
  font-size: 22px;
}
.hero-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Quote Form */
.quote-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.quote-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.quote-form-card p.sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.quote-form-card .form-group {
  margin-bottom: 14px;
}
.quote-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  display: block;
}
.quote-form-card .form-control {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  height: 44px;
  font-size: 14px;
  padding: 0 12px;
  transition: border-color 0.2s;
}
.quote-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
  outline: none;
}
.quote-form-card select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.btn-get-price {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.btn-get-price:hover {
  background: #219a52;
  transform: translateY(-1px);
}
.form-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}
.form-trust span {
  margin: 0 6px;
  color: #4fc3f7;
  font-weight: 600;
}

/* Hero CTA Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}
.btn-hero-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-hero-call:hover {
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Section titles */
.ss-section-title {
  text-align: center;
  margin-bottom: 44px;
}
.ss-section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ss-section-title .divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 14px;
  border-radius: 2px;
}
.ss-section-title p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.shifting-services-section {
  padding: 80px 0 60px;
  background: var(--bg-light);
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 22px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.13);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.service-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.service-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.service-card .learn-more {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.service-card .learn-more:hover {
  text-decoration: underline;
}

/* Icon color variants */
.icon-blue {
  background: #e8f0fe;
  color: var(--primary);
}
.icon-green {
  background: #e6f4ea;
  color: #27ae60;
}
.icon-orange {
  background: #fef3e2;
  color: #f59e0b;
}
.icon-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}
.icon-teal {
  background: #e0f7fa;
  color: #0097a7;
}
.icon-red {
  background: #fce8e6;
  color: #e53935;
}

/* How It Works */
.how-it-works-section {
  padding: 80px 0 70px;
  background: #fff;
}
.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}
.step-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  position: relative;
  padding: 0 10px;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 8px,
    transparent 8px,
    transparent 18px
  );
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
  position: relative;
  z-index: 1;
}
.step-circle i {
  font-size: 24px;
}
.step-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.step-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why Choose */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.why-choose-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.why-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8f0fe;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-text h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.why-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Vehicles */
.vehicles-section {
  padding: 80px 0 60px;
  background: #fff;
}
.vehicle-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px 18px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.vehicle-card:hover {
  box-shadow: 0 8px 28px rgba(26, 115, 232, 0.12);
  border-color: var(--primary);
}
.vehicle-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 14px;
}
.vehicle-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.vehicle-card .vehicle-type {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.vehicle-card .vehicle-cap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 14px;
}
.vehicle-card .vehicle-cap i {
  color: var(--primary);
  font-size: 14px;
}
.btn-select {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-select:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}

/* Pet Relocation */
.pet-section {
  background: linear-gradient(135deg, #1a3a5c, #0a1628);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.pet-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.1) 0%,
    transparent 70%
  );
}
.pet-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.pet-section h2 span {
  color: #4fc3f7;
}
.pet-section .tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.pet-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.pet-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pet-features-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pet-features-list li i {
  color: #4fc3f7;
  font-size: 16px;
  flex-shrink: 0;
}
.btn-book-pet {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s;
}
.btn-book-pet:hover {
  background: #219a52;
  color: #fff;
  text-decoration: none;
}
.pet-img-wrap {
  text-align: center;
}
.pet-img-wrap img {
  max-width: 340px;
  width: 100%;
  border-radius: 16px;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0 70px;
  background: var(--bg-light);
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  height: 100%;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  padding: 80px 0 70px;
  background: #fff;
}
.faq-accordion .card {
  border: 1.5px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .card-header {
  background: #fff;
  border-bottom: none;
  padding: 0;
}
.faq-accordion .btn-link {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-accordion .btn-link:hover {
  color: var(--primary);
}
.faq-accordion .btn-link::after {
  content: "+";
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-accordion .btn-link[aria-expanded="true"]::after {
  content: "−";
}
.faq-accordion .card-body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a3a5c, #0a1628);
  padding: 36px 0;
}
.cta-banner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}
.btn-cta-quote {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-cta-quote:hover {
  background: #219a52;
  color: #fff;
  text-decoration: none;
}
.btn-cta-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.btn-cta-call:hover {
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  text-decoration: none;
}

/* Add-ons */
.addons-section {
  padding: 60px 0;
  background: var(--bg-light);
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  margin-bottom: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.addon-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.1);
}
.addon-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f0fe;
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.addon-item h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.addon-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero-headline h1 {
    font-size: 30px;
  }
  .shifting-hero {
    padding: 40px 0 30px;
    min-height: auto;
  }
  .quote-form-card {
    margin-top: 30px;
  }
  .step-item:not(:last-child)::after {
    display: none;
  }
  .steps-wrapper {
    gap: 20px;
  }
  .step-item {
    min-width: 120px;
    flex: 0 0 30%;
  }
}
@media (max-width: 767px) {
  .hero-headline h1 {
    font-size: 26px;
  }
  .hero-stats {
    gap: 16px;
  }
  .ss-section-title h2 {
    font-size: 24px;
  }
  .step-item {
    flex: 0 0 45%;
  }
  .cta-banner .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
