:root {
  --wtp-primary: #428fe0;        /* Light Blue */
  --wtp-primary-dark: #0e2f53;   /* Dark Blue / Black */
  --wtp-accent: #f2b84b;         /* Warm accent for CTA/buttons */

  --wtp-text: #0e2f53;
  --wtp-muted: #5d7188;

  --wtp-bg: #f4f8fc;
  --wtp-bg-alt: #eaf2fb;
  --wtp-white: #ffffff;
  --wtp-border: #d6e3f3;

  --wtp-shadow: 0 10px 30px rgba(14, 47, 83, 0.08);

  --wtp-radius: 18px;
  --wtp-radius-sm: 12px;
  --wtp-max: 1200px;
}

body {
  color: var(--wtp-text);
}

.wtp-container {
  width: min(92%, var(--wtp-max));
  margin: 0 auto;
}

.wtp-section {
  padding: 70px 0;
}

.wtp-section-alt {
  background: var(--wtp-bg-alt);
}

.center {
  text-align: center;
}

.wtp-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f2b84b !important;
}

.wtp-section h2,
.wtp-hero h1,
.wtp-final-cta h2 {
  margin: 0 0 16px;
  line-height: 1.15;
}

.wtp-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.wtp-hero h1,
.wtp-final-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.wtp-subhead,
.wtp-section-head p,
.wtp-content p,
.wtp-card p,
.wtp-step p,
.wtp-final-cta p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--wtp-muted);
}

.wtp-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(14, 47, 83, 0.88), rgba(66, 143, 224, 0.82)),
    url('/images/hero-dog-yard.jpg') center center / cover no-repeat;
  color: #fff;
}

.wtp-overlay {
  position: absolute;
  inset: 0;
}

.wtp-hero-inner {
  position: relative;
  z-index: 2;
}

.wtp-hero-copy {
  max-width: 760px;
}

.wtp-hero .wtp-eyebrow,
.wtp-hero h1,
.wtp-hero .wtp-subhead,
.wtp-final-cta .wtp-eyebrow,
.wtp-final-cta h2,
.wtp-final-cta p {
  color: #fff;
}

.wtp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wtp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
  border: 2px solid transparent;
}

.wtp-btn-primary {
  background: var(--wtp-accent);
  color: #1f1f1f;
}

.wtp-btn-primary:hover {
  background: #e0a63d;
  transform: translateY(-2px);
}

.wtp-btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.wtp-btn-secondary:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.wtp-btn-tertiary {
  background: transparent;
  border: 2px solid rgba(66,143,224,.7);
  color: #000000;
}

.wtp-btn-tertiary:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.wtp-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 24px;
}

.wtp-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .95rem;
}

.wtp-trust-bar {
  padding: 22px 0;
  background: var(--wtp-bg-alt);
  border-top: 1px solid var(--wtp-border);
  border-bottom: 1px solid var(--wtp-border);
}

.wtp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wtp-trust-item {
  text-align: center;
}

.wtp-trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.wtp-trust-item span {
  color: var(--wtp-muted);
  line-height: 1.5;
}

.wtp-two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.wtp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.wtp-card {
  background: var(--wtp-white);
  border: 1px solid var(--wtp-border);
  border-radius: var(--wtp-radius);
  padding: 28px;
  box-shadow: var(--wtp-shadow);
  transition: all 0.3s ease;
}

.wtp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14, 47, 83, 0.12);
}

.wtp-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.wtp-card-cta {
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
}

.wtp-highlight-card {
  background: linear-gradient(180deg, #f8fbff, #eaf2fb);
}

.wtp-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.wtp-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.wtp-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wtp-primary);
  font-weight: 700;
}

.wtp-section-head {
  max-width: 820px;
  margin: 0 auto 20px;
}

.wtp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.wtp-step {
  background: #fff;
  padding: 28px;
  border-radius: var(--wtp-radius);
  border: 1px solid var(--wtp-border);
  box-shadow: var(--wtp-shadow);
}

.wtp-step-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wtp-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
}

.wtp-benefits-band {
  background: linear-gradient(180deg, #eef5fd, #f8fbff);
}

.wtp-review-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--wtp-border);
  border-radius: var(--wtp-radius);
  box-shadow: var(--wtp-shadow);
}

.wtp-review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wtp-final-cta {
  padding: 85px 0;
  background: linear-gradient(135deg, var(--wtp-primary-dark), var(--wtp-primary));
}

@media (max-width: 991px) {
  .wtp-two-col,
  .wtp-card-grid,
  .wtp-steps,
  .wtp-trust-grid,
  .wtp-review-cta {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .wtp-card-grid,
  .wtp-steps,
  .wtp-trust-grid {
    display: grid;
  }

  .wtp-review-cta {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .wtp-section {
    padding: 54px 0;
  }

  .wtp-hero {
    padding: 80px 0;
  }

  .wtp-card,
  .wtp-step {
    padding: 22px;
  }

  .wtp-btn {
    width: 100%;
  }

  .wtp-hero-buttons,
  .wtp-review-buttons {
    flex-direction: column;
  }
}

/* About Styles */
.wtp-page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f8fbff, #eaf2fb);
}

.wtp-page-hero-sm h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wtp-page-hero .wtp-subhead {
  max-width: 760px;
  margin: 0 auto;
}

.wtp-btn-secondary-dark {
  background: transparent;
  color: var(--wtp-primary-dark);
  border-color: var(--wtp-primary-dark);
}

.wtp-btn-secondary-dark:hover {
  background: var(--wtp-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Top Nav Logo */
.navbar-brand.logo-control img.logo-img {
  max-height: 120px;
  margin: 5px 0 4px 0;
}

/* FAQs Styling */
.wtp-page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f8fbff, #eaf2fb);
}

.wtp-page-hero-sm h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wtp-page-hero .wtp-subhead {
  max-width: 760px;
  margin: 0 auto;
}

.wtp-faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.wtp-faq-item {
  background: #fff;
  border: 1px solid var(--wtp-border);
  border-radius: 18px;
  box-shadow: var(--wtp-shadow);
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.wtp-faq-item:hover {
  box-shadow: 0 16px 40px rgba(14, 47, 83, 0.10);
}

.wtp-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--wtp-primary-dark);
}

.wtp-faq-question span:first-child {
  line-height: 1.45;
}

.wtp-faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.wtp-faq-icon::before,
.wtp-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--wtp-primary);
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  border-radius: 2px;
}

.wtp-faq-icon::before {
  width: 18px;
  height: 2px;
}

.wtp-faq-icon::after {
  width: 2px;
  height: 18px;
}

.wtp-faq-item.active .wtp-faq-icon::after {
  height: 0;
}

.wtp-faq-item.active .wtp-faq-question {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
}

.wtp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.wtp-faq-item.active .wtp-faq-answer {
  max-height: 500px;
  padding: 0 26px 24px;
}

.wtp-faq-answer p,
.wtp-faq-answer li {
  color: var(--wtp-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.wtp-faq-answer p {
  margin: 0 0 12px;
}

.wtp-faq-answer ul {
  margin: 0;
  padding-left: 20px;
}

.wtp-faq-answer li {
  margin-bottom: 8px;
}

.wtp-faq-cta {
  text-align: center;
  margin-top: 36px;
}

.wtp-faq-cta p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--wtp-primary-dark);
  font-weight: 500;
}

@media (max-width: 767px) {
  .wtp-faq-question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .wtp-faq-answer {
    padding: 0 18px;
  }

  .wtp-faq-item.active .wtp-faq-answer {
    padding: 0 18px 20px;
  }
}

/* Services Styles */
.wtp-page-hero {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f8fbff, #eaf2fb);
}

.wtp-page-hero-sm h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.wtp-page-hero .wtp-subhead {
  max-width: 780px;
  margin: 0 auto;
}

.wtp-service-block {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
  align-items: start;
}

.wtp-service-block.reverse {
  grid-template-columns: 0.65fr 1.35fr;
}

.wtp-service-block.reverse .wtp-service-copy {
  order: 2;
}

.wtp-service-block.reverse .wtp-service-sidecard {
  order: 1;
}

.wtp-service-copy h2 {
  margin-bottom: 16px;
}

.wtp-service-copy p {
  margin: 0 0 14px;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--wtp-muted);
}

.wtp-service-sidecard {
  position: sticky;
  top: 30px;
}

.wtp-service-sidecard h3 {
  margin-bottom: 10px;
}

.wtp-service-sidecard p {
  margin: 0;
}

.wtp-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wtp-btn-secondary-dark {
  background: transparent;
  color: var(--wtp-primary-dark);
  border-color: var(--wtp-primary-dark);
}

.wtp-btn-secondary-dark:hover {
  background: var(--wtp-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .wtp-service-block,
  .wtp-service-block.reverse,
  .wtp-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .wtp-service-block.reverse .wtp-service-copy,
  .wtp-service-block.reverse .wtp-service-sidecard {
    order: initial;
  }

  .wtp-service-sidecard {
    position: static;
  }
}

/* Contact Form */
.wtp-contact-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.wtp-contact-info-item {
  background: #fff;
  border: 1px solid var(--wtp-border);
  border-radius: var(--wtp-radius-sm);
  padding: 18px 20px;
  box-shadow: var(--wtp-shadow);
  text-align: center;
}

.wtp-contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wtp-primary);
  margin-bottom: 6px;
}

.wtp-contact-info-item a {
  font-weight: 600;
  color: var(--wtp-primary-dark);
  text-decoration: none;
}

.wtp-contact-info-item a:hover {
  color: var(--wtp-primary);
}

.wtp-contact-info-item span {
  font-weight: 500;
  color: var(--wtp-primary-dark);
}

.form-control {
  max-width: 100%;
}

/* Footer */
.wtp-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, #428fe0, transparent);
  margin-bottom: 40px;
}

.wtp-footer {
  position: relative;
  background: #f4f8fc; /* lightened */
  padding: 60px 0 30px;
  border-top: 1px solid var(--wtp-border);
}

.wtp-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wtp-footer-col h3,
.wtp-footer-col h4 {
  margin-bottom: 12px;
  color: var(--wtp-primary-dark);
}

.wtp-footer-col p {
  color: var(--wtp-muted);
  line-height: 1.6;
}

.wtp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wtp-footer-col li {
  margin-bottom: 8px;
}

.wtp-footer-col a {
  text-decoration: none;
  color: var(--wtp-primary-dark);
  transition: color 0.2s ease;
}

.wtp-footer-col a:hover {
  color: var(--wtp-primary);
}

/* Socials */
.wtp-footer .social-list {
  display: flex;
  gap: 14px;
}

.wtp-footer .social-list a {
  font-size: 18px;
}

/* Bottom */
.wtp-footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--wtp-muted);
}

/* Floating dog image */
.wtp-footer-dog {
  position: absolute;
  right: 40px;   /* overlaps container edge slightly */
  bottom: 55px;
  width: 220px;
}

/* Responsive */
@media (max-width: 991px) {
  .wtp-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wtp-footer-dog {
    display: none; /* hide on mobile */
  }
}

/* Contact hero uses same system as home hero */
.wtp-hero-contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

/* Strong blue overlay */
.wtp-hero-contact .wtp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 47, 83, 0.88),
    rgba(66, 143, 224, 0.78)
  );
}

/* Keep content above overlay */
.wtp-hero-contact .wtp-hero-inner {
  position: relative;
  z-index: 2;
}

/* White text */
.wtp-hero-contact .wtp-eyebrow,
.wtp-hero-contact h1,
.wtp-hero-contact .wtp-subhead {
  color: #fff;
}

/* Same readable content width as home */
.wtp-hero-contact .wtp-hero-copy {
  max-width: 760px;
}

/* Optional: slightly smaller contact hero than homepage */
.wtp-hero-contact h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

/* Gold button already comes from your main button styles,
   but this keeps it explicit if needed */
.wtp-hero-contact .wtp-btn-primary {
  background: var(--wtp-accent);
  color: #1f1f1f;
}

.wtp-hero-contact .wtp-btn-primary:hover {
  background: #e0a63d;
}

/* White outline secondary button */
.wtp-hero-contact .wtp-btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

.wtp-hero-contact .wtp-btn-secondary:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* Hero points like home page */
.wtp-hero-contact .wtp-hero-points span {
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .wtp-hero-contact {
    padding: 80px 0;
    background-position: center center;
  }

  .wtp-hero-contact .wtp-btn {
    width: 100%;
  }

  .wtp-hero-contact .wtp-hero-buttons {
    flex-direction: column;
  }
}

.wtp-hero-faq {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wtp-hero-faq .wtp-overlay {
  background: linear-gradient(
    135deg,
    rgba(14, 47, 83, 0.88),
    rgba(66, 143, 224, 0.78)
  );
}

.wtp-hero-faq .wtp-hero-copy {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wtp-hero-faq .wtp-eyebrow,
.wtp-hero-faq h1,
.wtp-hero-faq .wtp-subhead {
  color: #fff;
}

/* HOW IT WORKS: push template background all the way behind content */
#t4-how-it-works {
  position: relative;
  overflow: hidden;
}

#t4-how-it-works .bg-overlay.bg-overlay-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#t4-how-it-works .custom,
#t4-how-it-works .wtp-section,
#t4-how-it-works .wtp-container,
#t4-how-it-works .wtp-section-head,
#t4-how-it-works .wtp-steps,
#t4-how-it-works .wtp-step {
  position: relative;
  z-index: 1;
}

/* Remove top spacing ONLY for this module */
.no-top-space {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* In case T4 wraps it */
.no-top-space {
  margin-top: -60px !important;
}

/* In case T4 wraps it */
.wtp-tight-top {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove bottom spacing ONLY for this module */
.no-bottom-space {
  padding-bottom: 0 !important;
  margin-bottom: -60px !important;
}

/* Reviews */
.wtp-reviews-section {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
}

.wtp-reviews-grid {
  align-items: stretch;
}

.wtp-review-card {
  position: relative;
}

.wtp-review-card h3 {
  margin-bottom: 4px;
  color: var(--wtp-primary-dark);
}

.wtp-review-card p {
  margin-bottom: 12px;
}

.wtp-review-stars {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--wtp-accent);
}

.wtp-review-source {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wtp-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wtp-reviews-cta {
  margin-top: 30px;
}

.wtp-reviews-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 34px auto 0;
}

/* Gallery Section */
.wtp-clients-gallery {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
}

/* Grid */
.wtp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Gallery items */
.wtp-gallery-item {
  overflow: hidden;
  border-radius: var(--wtp-radius-sm);
  box-shadow: var(--wtp-shadow);
}

.wtp-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.wtp-gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA */
.wtp-gallery-cta {
  margin-top: 30px;
}

.wtp-gallery-cta p {
  margin-bottom: 12px;
  color: var(--wtp-muted);
}

@media (max-width: 767px) {
  .wtp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .wtp-gallery-item img {
    height: 220px;
  }
}

.wtp-gallery-item {
  overflow: hidden;
  border-radius: var(--wtp-radius-sm);
  box-shadow: var(--wtp-shadow);
  background: #fff;
}

.wtp-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
}

/* Caption area */
.wtp-gallery-caption {
  padding: 14px 16px 16px;
}

.wtp-gallery-caption h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--wtp-primary-dark);
}

.wtp-gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--wtp-muted);
  line-height: 1.4;
}

.wtp-gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Quick Services */
.wtp-service-quickstart {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
}

.wtp-service-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.wtp-service-quick-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 100%;
}

.wtp-service-quick-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--wtp-primary-dark);
}

.wtp-service-quick-card p {
  margin-bottom: 18px;
  color: var(--wtp-muted);
  line-height: 1.6;
}

.wtp-service-quick-card .wtp-btn {
  margin-top: auto;
}

@media (max-width: 1199px) {
  .wtp-service-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .wtp-service-quick-grid {
    grid-template-columns: 1fr;
  }
}

/* Best For Styling */
/* ===== Service side cards with image backgrounds ===== */

.wtp-service-sidecard {
  position: sticky;
  top: 30px;
  overflow: hidden;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.wtp-service-sidecard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 47, 83, 0.88),
    rgba(66, 143, 224, 0.68)
  );
  z-index: 1;
}

.wtp-service-sidecard > * {
  position: relative;
  z-index: 2;
}

.wtp-service-sidecard h3,
.wtp-service-sidecard p,
.wtp-service-sidecard .wtp-check-list li {
  color: #fff;
}

.wtp-service-sidecard .wtp-check-list li::before {
  color: #f2b84b;
}

/* Image assignments */
.wtp-service-sidecard-1 {
  background-image: url('/images/service-pet-waste-removal.jpg');
}

.wtp-service-sidecard-2 {
  background-image: url('/images/service-winter-cleanup.jpg');
}

.wtp-service-sidecard-3 {
  background-image: url('/images/service-deodorizing-sanitization.jpg');
}

.wtp-service-sidecard-4 {
  background-image: url('/images/service-pet-sitting-walking.jpg');
}

.wtp-service-sidecard-5 {
  background-image: url('/images/service-pet-transportation.jpg');
}

/* Adjusts Contact Me Module for Mobile */
.wtp-contact-intro {
  text-align: center;
  margin-bottom: 22px;
}

.wtp-contact-intro-logo {
  margin-bottom: 14px;
}

.wtp-contact-intro-logo img {
  display: block;
  max-width: 125px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.wtp-contact-intro-link,
.wtp-contact-intro-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.wtp-contact-intro-link {
  margin-bottom: 18px;
}

.wtp-contact-intro-note {
  margin-top: 18px;
  margin-bottom: 0;
}

.wtp-contact-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 28px;
}

.wtp-contact-info-item {
  background: #fff;
  border: 1px solid var(--wtp-border);
  border-radius: var(--wtp-radius-sm);
  padding: 18px 20px;
  box-shadow: var(--wtp-shadow);
  text-align: center;
  min-width: 0;
}

.wtp-contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wtp-primary);
  margin-bottom: 6px;
}

.wtp-contact-info-item a,
.wtp-contact-info-item span {
  color: var(--wtp-primary-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 767px) {
  .wtp-contact-info-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 16px 0 22px;
  }

  .wtp-contact-info-item {
    padding: 16px 16px;
  }

  .wtp-contact-intro-link,
  .wtp-contact-intro-note {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Constrain both desktop and mobile header logos */
.navbar-brand.logo-control img.logo-img,
.navbar-brand.logo-control img.logo-img-sm {
  max-height: 120px;
  height: auto;
  width: auto;
}

@media (max-width: 767px) {
  .wtp-footer-inner {
    text-align: center;
  }

  .wtp-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wtp-footer .social-list {
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 10px;
    gap: 16px;
  }

  .wtp-footer-col ul {
    text-align: center;
  }

  .wtp-footer .social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--wtp-border);
    box-shadow: var(--wtp-shadow);
  }
}

/* Custom Gallery */
.wtp-gallery-strip {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.wtp-gallery-strip-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: wtpGalleryScroll 45s linear infinite;
}

.wtp-gallery-strip-item {
  flex: 0 0 auto;
}

.wtp-gallery-strip-item img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

@keyframes wtpGalleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .wtp-gallery-strip-item img {
    width: 180px;
    height: 180px;
  }

  .wtp-gallery-strip-track {
    gap: 14px;
    animation-duration: 38s;
  }
}

@media (max-width: 640px) {
  .wtp-gallery-strip-item img {
    width: 140px;
    height: 140px;
    border-radius: 14px;
  }

  .wtp-gallery-strip-track {
    gap: 10px;
    animation-duration: 32s;
  }
}

/* Tabs for Services */
.wtp-frequency-tabs-wrap {
  background: linear-gradient(180deg, #f8fbff, #eef5fd);
}

.wtp-frequency-tabs {
  margin-top: 30px;
}

.wtp-frequency-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.wtp-frequency-tab-btn {
  appearance: none;
  border: 2px solid var(--wtp-border);
  background: #fff;
  color: var(--wtp-primary-dark);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wtp-frequency-tab-btn:hover {
  border-color: var(--wtp-primary);
  color: var(--wtp-primary);
  transform: translateY(-2px);
}

.wtp-frequency-tab-btn.active {
  background: var(--wtp-primary-dark);
  border-color: var(--wtp-primary-dark);
  color: #fff;
}

.wtp-frequency-tab-panels {
  margin-top: 14px;
}

.wtp-frequency-tab-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--wtp-border);
  border-radius: var(--wtp-radius);
  box-shadow: var(--wtp-shadow);
  padding: 28px;
}

.wtp-frequency-tab-panel.active {
  display: block;
}

.wtp-frequency-tab-intro {
  margin-bottom: 22px;
}

.wtp-frequency-tab-intro h3 {
  margin: 0 0 8px;
  color: var(--wtp-primary-dark);
  font-size: 1.45rem;
}

.wtp-frequency-tab-intro p {
  margin: 0;
  color: var(--wtp-muted);
  line-height: 1.65;
}

.wtp-j2-slot {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .wtp-frequency-tab-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .wtp-frequency-tab-btn {
    width: 100%;
  }

  .wtp-frequency-tab-panel {
    padding: 22px;
  }
}