/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
body {
  padding-top: 0;
}
:root {
  --orange: #f5a623;
  --orange-dark: #e09210;
  --blue: #1a73e8;
  --navy: #1c2b4a;
  --white: #ffffff;
  --bg: #ffffff;
  --wa-color: #1da1f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
img {
  display: block;
}
.site-header {
  background: transparent;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

/* Scrolled state */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ══════════════════════════════════════════
   HEADER OUTER
══════════════════════════════════════════ */
/* .site-header {
  width: 100%;
  background: var(--bg);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 999;
} */
.site-header {
  width: 100%;
  background: transparent;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ══════════════════════════════════════════
   WHITE PILL CARD — light gray border
══════════════════════════════════════════ */
.header-pill {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 100px;
  height: 70px;
  border: 1.5px solid #d8dce8;
  display: flex;
  align-items: center;
  padding: 0 12px 0 20px;
  position: relative;
}

/* ══════════════════════════════════════════
   LOGO
══════════════════════════════════════════ */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 170px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════
   MAIN NAV — absolutely centered in pill
══════════════════════════════════════════ */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition:
    color 0.18s,
    background 0.18s;
  line-height: 1;
}

.nav-link i {
  font-size: 18px;
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--orange);
  background: #fff8ee;
}

.nav-link.active {
  color: var(--blue);
}

.nav-link.active .nav-active-dot {
  display: block;
}
.nav-active-dot {
  display: none;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 4px;
  background: var(--orange);
}

/* ══════════════════════════════════════════
   RIGHT ACTIONS
══════════════════════════════════════════ */
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Orange Book Appointment pill — NO box-shadow */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-book:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.btn-book i {
  font-size: 14px;
  color: #fff;
}

/* WhatsApp circle — NO box-shadow */
.btn-wa {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wa-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-wa:hover {
  background: #1690d8;
  transform: translateY(-1px);
}
.btn-wa i {
  font-size: 22px;
  color: #fff;
}

/* ══════════════════════════════════════════
   HAMBURGER (≤860px)
══════════════════════════════════════════ */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  background: #eef1f8;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 21px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--navy);
  transition:
    transform 0.25s,
    opacity 0.25s,
    width 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════ */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.mob-overlay.open {
  display: block;
  pointer-events: auto;
}
.mob-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 74, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mob-overlay.open .mob-backdrop {
  opacity: 1;
}

.mob-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -6px 0 30px rgba(28, 43, 74, 0.12);
}
.mob-overlay.open .mob-drawer {
  transform: translateX(0);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eceef4;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.mob-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef1f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-close i {
  font-size: 14px;
  color: var(--navy);
}

.mob-nav {
  flex: 1;
  padding: 8px 0;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid #f3f4f8;
  transition:
    color 0.2s,
    background 0.2s;
}
.mob-nav-link:last-child {
  border-bottom: none;
}
.mob-nav-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.mob-nav-link:hover,
.mob-nav-link.active {
  color: var(--orange);
  background: #fff8ee;
}

.mob-cta {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #eceef4;
}
.mob-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.mob-btn i {
  font-size: 16px;
  flex-shrink: 0;
}

.mob-btn--orange {
  background: var(--orange);
  color: #fff;
}
.mob-btn--orange:hover {
  background: var(--orange-dark);
}

.mob-btn--wa {
  background: var(--wa-color);
  color: #fff;
}
.mob-btn--wa:hover {
  background: #1690d8;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-link {
    padding: 8px 13px;
    font-size: 12.5px;
  }
  .btn-book {
    font-size: 13px;
    padding: 11px 18px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .btn-book {
    display: none;
  }
  .btn-wa {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-pill {
    height: 62px;
    padding: 0 10px 0 18px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 14px;
  }
  .header-pill {
    height: 58px;
    border-radius: 80px;
  }
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 8px 10px;
  }
  .header-pill {
    height: 54px;
  }
  .logo-img {
    height: 34px;
  }
}

body.nav-open {
  overflow: hidden;
}

/* navbar done  */

/* Footer Css Code  */
/* ════════════════════════════════════════
   FURPETUAL FOOTER CSS — FULLY RESPONSIVE
════════════════════════════════════════ */

:root {
  --fp-blue: #1a7fd4;
  --fp-blue-dark: #1260a8;
  --fp-blue-mid: #1567b2;
  --fp-blue-light: #2389e0;
  --fp-white: #fff;
  --fp-w80: rgba(255, 255, 255, 0.8);
  --fp-w65: rgba(255, 255, 255, 0.65);
  --fp-w45: rgba(255, 255, 255, 0.45);
  --fp-w22: rgba(255, 255, 255, 0.22);
  --fp-w12: rgba(255, 255, 255, 0.12);
  --fp-w06: rgba(255, 255, 255, 0.06);
}

.fp-footer {
  width: 100%;
  background: linear-gradient(158deg, #1a7fd4 0%, #1567b2 55%, #1260a8 100%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.fp-footer::after {
  content: "";
  position: absolute;
  bottom: 52px;
  right: 28px;
  width: 130px;
  height: 130px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='65' rx='28' ry='22' fill='rgba(255,255,255,0.055)'/%3E%3Cellipse cx='22' cy='44' rx='11' ry='14' fill='rgba(255,255,255,0.055)' transform='rotate(-18 22 44)'/%3E%3Cellipse cx='78' cy='44' rx='11' ry='14' fill='rgba(255,255,255,0.055)' transform='rotate(18 78 44)'/%3E%3Cellipse cx='35' cy='30' rx='9' ry='12' fill='rgba(255,255,255,0.055)' transform='rotate(-8 35 30)'/%3E%3Cellipse cx='65' cy='30' rx='9' ry='12' fill='rgba(255,255,255,0.055)' transform='rotate(8 65 30)'/%3E%3C/svg%3E")
    no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}

.fp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0 34px;
  position: relative;
  z-index: 1;
}

/* ════ CTA BANNER ════ */
.fp-cta {
  background: #187fe2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 22px 32px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.fp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 2px at 72% 22%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle 1.5px at 78% 68%,
      rgba(255, 255, 255, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle 1px at 65% 80%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle 1px at 85% 40%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 55%
    );
  pointer-events: none;
}

/* ✅ Heading — Chewy font, white, centered on mobile */
.fp-cta__heading {
  font-family: "Chewy", cursive;
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.fp-cta__img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fp-cta__text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.fp-cta__text p {
  font-size: 13px;
  color: var(--fp-w80);
  line-height: 1.6;
  max-width: 270px;
  margin: 0;
}

.fp-cta__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Buttons ── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s;
  text-decoration: none;
}
.fp-btn:hover {
  transform: translateY(-2px);
}
.fp-btn--white {
  background: #fff;
  color: var(--fp-blue);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}
.fp-btn--white:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}
.fp-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.fp-btn--outline:hover {
  background: var(--fp-w12);
  border-color: #fff;
}
.fp-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.fp-btn .paw-svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

/* ── Badge ── */
.fp-cta__badge {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: relative;
  z-index: 1;
}
.fp-cta__badge::before {
  content: "✦";
  position: absolute;
  top: -11px;
  right: -4px;
  font-size: 12px;
  color: var(--fp-w65);
}
.fp-cta__badge::after {
  content: "✦";
  position: absolute;
  bottom: -8px;
  left: -6px;
  font-size: 9px;
  color: var(--fp-w45);
}
.fp-badge__paw {
  font-size: 24px;
  line-height: 1;
}
.fp-badge__num {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.fp-badge__lbl {
  font-size: 10px;
  color: var(--fp-w80);
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

/* ════ 4-COLUMN GRID ════ */
.fp-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.45fr;
  gap: 40px 28px;
  margin-bottom: 40px;
}

.fp-col__head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.fp-col__head svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Brand col */
.fp-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.fp-brand__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.fp-brand__tagline {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fp-w65);
  margin-bottom: 15px;
}
.fp-brand__desc {
  font-size: 12.5px;
  color: var(--fp-w65);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 252px;
}

/* Social */
.fp-social {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fp-social__a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fp-w22);
  border: 1px solid var(--fp-w22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.18s;
  text-decoration: none;
}
.fp-social__a:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}
.fp-social__a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.fp-brand__pets {
  width: 100%;
  max-width: 252px;
  height: 138px;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 22px;
  display: block;
}

/* Services list — now with links */
.fp-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-svc-list li {
  border-bottom: 1px solid var(--fp-w12);
}
.fp-svc-list li:last-child {
  border-bottom: none;
}
.fp-svc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--fp-w65);
  text-decoration: none;
  transition: color 0.18s;
}
.fp-svc-list li a:hover {
  color: #fff;
}
.fp-svc-list li a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: var(--fp-w65);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.18s;
}
.fp-svc-list li a:hover svg {
  stroke: #fff;
}

/* Explore list */
.fp-exp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-exp-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--fp-w12);
}
.fp-exp-list li:last-child {
  border-bottom: none;
}
.fp-exp-list a {
  font-size: 13px;
  color: var(--fp-w65);
  text-decoration: none;
  transition: color 0.18s;
}
.fp-exp-list a:hover {
  color: #fff;
}

/* Contact */
.fp-ci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fp-ci__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fp-w22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-ci__icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fp-ci__txt {
  font-size: 13px;
  color: var(--fp-w65);
  line-height: 1.6;
}
.fp-ci__txt a {
  color: var(--fp-w65);
  text-decoration: none;
  transition: color 0.18s;
}
.fp-ci__txt a:hover {
  color: #fff;
}
.fp-hours-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.fp-hours-title svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}
.fp-hours-txt {
  font-size: 13px;
  color: var(--fp-w65);
  margin-bottom: 3px;
}

/* Store card */
.fp-store {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--fp-w12);
  border: 1px solid var(--fp-w22);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.fp-store:hover {
  background: var(--fp-w22);
}
.fp-store__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--fp-w22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-store__icon svg {
  width: 22px;
  height: 22px;
}
.fp-store__txt {
  flex: 1;
}
.fp-store__title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.fp-store__desc {
  font-size: 11.5px;
  color: var(--fp-w65);
  line-height: 1.45;
}
.fp-store__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-store__arrow svg {
  width: 13px;
  height: 13px;
  stroke: var(--fp-blue);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

/* ════ BOTTOM BAR ════ */
.fp-bottom {
  border-top: 1px solid var(--fp-w22);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fp-bottom__left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.fp-badge-sm {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--fp-w65);
  font-weight: 500;
}
.fp-badge-sm svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
}
.fp-bottom__copy {
  font-size: 12.5px;
  color: var(--fp-w65);
}
.fp-bottom__paw svg {
  width: 28px;
  height: 28px;
}
.fp-brandmingo {
  color: rgba(255, 255, 255, 0.5);
}
.fp-brandmingo a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.fp-brandmingo a:hover {
  color: #fff;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

/* 1100px */
@media (max-width: 1100px) {
  .fp-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .fp-col--contact {
    grid-column: 1 / -1;
  }
  .fp-cta {
    gap: 16px;
    padding: 20px 24px 20px 20px;
  }
  .fp-cta__heading {
    font-size: clamp(22px, 2.5vw, 38px);
  }
}

/* 820px */
@media (max-width: 820px) {
  .fp-footer {
    padding: 0 20px;
  }
  .fp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .fp-col--brand {
    grid-column: 1 / -1;
  }

  /* ✅ Services + Explore side by side on tablet */
  .fp-col--services {
    grid-column: 1 / 2;
  }
  .fp-col--explore {
    grid-column: 2 / 3;
  }
  .fp-col--contact {
    grid-column: 1 / -1;
  }

  .fp-cta__img {
    display: none;
  }
  .fp-cta__badge {
    display: none;
  }
  .fp-cta__btns {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* 600px — Mobile */
@media (max-width: 600px) {
  .fp-footer {
    padding: 0 14px;
  }
  .fp-footer__inner {
    padding: 28px 0 24px;
  }

  /* ✅ Brand full width, then Services + Explore 2-col, then Contact full */
  .fp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
  }
  .fp-col--brand {
    grid-column: 1 / -1;
  }
  .fp-col--services {
    grid-column: 1 / 2;
  }
  .fp-col--explore {
    grid-column: 2 / 3;
  }
  .fp-col--contact {
    grid-column: 1 / -1;
  }

  /* CTA — center everything on mobile */
  .fp-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px;
    border-radius: 16px;
    margin-bottom: 32px;
    gap: 16px;
  }
  .fp-cta__text {
    flex: unset;
    width: 100%;
  }
  .fp-cta__text p {
    max-width: 100%;
    margin: 0 auto;
  }
  .fp-cta__heading {
    font-size: clamp(26px, 7vw, 34px);
    text-align: center;
  }

  .fp-cta__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .fp-btn {
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Bottom bar stack */
  .fp-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .fp-bottom__copy {
    font-size: 11.5px;
  }
  .fp-bottom__left {
    gap: 14px;
  }
}

/* 420px — Small mobile */
@media (max-width: 420px) {
  .fp-footer {
    padding: 0 12px;
  }
  .fp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }
  .fp-col--brand {
    grid-column: 1 / -1;
  }
  .fp-col--services {
    grid-column: 1 / 2;
  }
  .fp-col--explore {
    grid-column: 2 / 3;
  }
  .fp-col--contact {
    grid-column: 1 / -1;
  }

  .fp-cta__heading {
    font-size: 24px;
  }
  .fp-col__head {
    font-size: 13.5px;
  }
  .fp-svc-list li a {
    font-size: 12px;
    gap: 7px;
  }
  .fp-exp-list a {
    font-size: 12px;
  }
  .fp-brand__desc {
    max-width: 100%;
  }
  .fp-brand__pets {
    max-width: 100%;
    height: 120px;
    height: auto; /* ← yeh add karo */
    aspect-ratio: 16 / 7; /* ← proportional rahega */
    object-fit: cover;
  }
  .fp-bottom__copy {
    font-size: 11px;
  }
}

/* ════════════════════════════════════════
   FURPETUAL HERO SECTION — hero-style.css
════════════════════════════════════════ */

:root {
  --fh-bg: #f5f3ef;
  --fh-blue: #1a7fd4;
  --fh-orange: #f59e0b;
  --fh-dark: #111827;
  --fh-muted: #6b7280;
  --fh-card-bg: #ffffff;
}

/* ════════════════════════════
   WRAPPER
════════════════════════════ */
.fh-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: transparent;
  overflow: hidden;
  padding: 60px 56px 56px;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  border: none;
  outline: none;
  box-shadow: none;
  margin-top: -98px; /* header height: 14px padding + 70px pill + 14px padding */
  padding-top: 158px;
}

/* ── Full hero background image (bg + dog combined) ── */
/* DESKTOP: image is landscape ~1400×600px, dog is on right side */
/* Use cover so it fills full width and height naturally */
.fh-bg-base {
  position: absolute;
  inset: 0;
  background-image: url("https://i.ibb.co/zWRTLDSm/Furpetual-Website-Images.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ── bg-arc not needed ── */
.fh-bg-arc {
  display: none;
}

/* ── Paw watermark ── */
.fh-paw-mark {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 1;
  pointer-events: none;
}

/* ════════════════════════════
   TWO-COLUMN LAYOUT
════════════════════════════ */
.fh-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* ════════════════════════════
   LEFT COLUMN
════════════════════════════ */
.fh-left {
  display: flex;
  flex-direction: column;
  padding-right: 8px;
}

.fh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(26, 127, 212, 0.2);
  border-radius: 50px;
  padding: 7px 18px 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fh-blue);
  margin-bottom: 22px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  animation: fh-fadeup 0.6s ease both;
}

/* .fh-headline {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  color: var(--fh-dark);
  line-height: 1.17;
  letter-spacing: -0.6px;
  margin: 0 0 18px;
  animation: fh-fadeup 0.65s 0.08s ease both;
} */

.fh-headline {
  font-family: "Chewy", cursive;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  color: #1c2d4b;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 18px;
  animation: fh-fadeup 0.65s 0.08s ease both;
}
/* .fh-hl-blue {
  color: var(--fh-blue);
}
.fh-hl-orange {
  color: var(--fh-orange);
} */

.fh-hl-blue {
  font-family: "Chewy", cursive;
  color: #1a7fd4;
  font-weight: 400;
}

.fh-hl-orange {
  font-family: "Chewy", cursive;
  color: #f5a623;
  font-weight: 400;
}

.fh-desc {
  font-size: 14px;
  color: var(--fh-muted);
  line-height: 1.78;
  max-width: 430px;
  margin: 0 0 28px;
  animation: fh-fadeup 0.65s 0.16s ease both;
}

.fh-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  animation: fh-fadeup 0.65s 0.24s ease both;
}
.fh-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.17s ease,
    box-shadow 0.17s ease;
  white-space: nowrap;
}
.fh-btn:hover {
  transform: translateY(-2px);
}

.fh-btn--primary {
  background: var(--fh-orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
}
.fh-btn--primary:hover {
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.5);
}

.fh-btn--outline {
  background: #fff;
  color: var(--fh-blue);
  border: 1.5px solid rgba(26, 127, 212, 0.28);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.fh-btn--outline:hover {
  border-color: var(--fh-blue);
  box-shadow: 0 6px 20px rgba(26, 127, 212, 0.14);
}

.fh-trust {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  animation: fh-fadeup 0.65s 0.32s ease both;
}
.fh-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fh-muted);
  text-align: center;
  line-height: 1.45;
}
.fh-trust__icon {
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1.5px solid rgba(26, 127, 212, 0.12);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.fh-trust__item:hover .fh-trust__icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(26, 127, 212, 0.14);
}

.fh-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(26, 127, 212, 0.12);
  border-radius: 50px;
  padding: 9px 20px 9px 14px;
  font-size: 12.5px;
  color: var(--fh-muted);
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  animation: fh-fadeup 0.65s 0.4s ease both;
}

/* ════════════════════════════
   RIGHT COLUMN
   Dog is now PART OF BG IMAGE — fh-dog-wrap hidden
════════════════════════════ */
.fh-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
}

.fh-spark {
  position: absolute;
  top: 18px;
  left: 30px;
  z-index: 4;
  opacity: 0.7;
}

.fh-heart-doodle {
  position: absolute;
  top: 26px;
  right: 20px;
  z-index: 4;
}

/* ── Dog image HIDDEN on desktop — dog is in bg image ── */
.fh-dog-wrap {
  display: none;
}
.fh-dog-img {
  display: none;
}

/* ── Mobile dog image element (hidden on desktop) ── */
.fh-mobile-dog {
  display: none;
}

/* ════════════════════════════
   FLOATING CARDS
════════════════════════════ */
.fh-fc {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.05);
  z-index: 4;
  min-width: 152px;
}

.fh-card-left {
  animation:
    fh-slide-left 0.55s ease both,
    fh-float 5s 0.6s ease-in-out infinite;
}
.fh-card-right {
  animation:
    fh-slide-right 0.55s ease both,
    fh-float 5s 0.6s ease-in-out infinite;
}
.fh-card-bottom {
  animation:
    fh-slide-up 0.55s ease both,
    fh-float 5s 0.7s ease-in-out infinite;
}

.fh-fc--hydro {
  animation-delay: 0.1s, 0.7s;
}
.fh-fc--rating {
  animation-delay: 0.2s, 0.9s;
}
.fh-fc--aroma {
  animation-delay: 0.15s, 0.8s;
}
.fh-fc--expert {
  animation-delay: 0.25s, 1.1s;
}

@keyframes fh-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes fh-slide-left {
  from {
    opacity: 0;
    transform: translateX(-38px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fh-slide-right {
  from {
    opacity: 0;
    transform: translateX(38px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fh-slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fh-fc__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fh-fc__icon--blue {
  background: rgba(59, 130, 246, 0.11);
}
.fh-fc__icon--yellow {
  background: rgba(245, 158, 11, 0.11);
}
.fh-fc__icon--purple {
  background: rgba(139, 92, 246, 0.11);
}
.fh-fc__icon--teal {
  background: rgba(14, 165, 233, 0.11);
}

.fh-fc__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fh-fc__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fh-dark);
  line-height: 1.2;
}
.fh-fc__sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--fh-muted);
}
.fh-fc__underline {
  width: 26px;
  height: 2.5px;
  background: var(--fh-orange);
  border-radius: 2px;
  margin-top: 5px;
}
.fh-fc__underline--purple {
  background: #8b5cf6;
}
.fh-fc__underline--teal {
  background: #0ea5e9;
}

.fh-fc--hydro {
  left: 2px;
  top: 52px;
}
.fh-fc--rating {
  left: 2px;
  bottom: 110px;
}
.fh-fc--aroma {
  right: 2px;
  top: 52px;
  min-width: 162px;
}
.fh-fc--expert {
  right: 2px;
  top: 198px;
  min-width: 134px;
}

/* ════════════════════════════
   STAT CARD
════════════════════════════ */
.fh-stat {
  position: absolute;
  bottom: 8px;
  right: 2px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 5;
}
.fh-stat__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fh-stat__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.fh-stat__av:first-child {
  margin-left: 0;
}
.fh-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 16px;
  flex-shrink: 0;
}
.fh-stat__content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fh-stat__num {
  font-size: 20px;
  font-weight: 800;
  color: var(--fh-dark);
  line-height: 1.1;
}
.fh-stat__lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--fh-muted);
  line-height: 1.4;
}
.fh-stat__heart-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.fh-stat__orange-bar {
  width: 32px;
  height: 3px;
  background: var(--fh-orange);
  border-radius: 2px;
}

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes fh-fadeup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1200px) {
  .fh-hero {
    padding: 52px 40px 48px;
  }
}

@media (max-width: 1050px) {
  .fh-hero {
    padding: 44px 32px 40px;
  }
  .fh-hero__inner {
    gap: 16px;
  }
  .fh-headline {
    font-size: clamp(28px, 3.4vw, 44px);
  }
  .fh-fc--hydro {
    left: -4px;
  }
  .fh-fc--rating {
    left: -4px;
  }
  .fh-fc--aroma {
    right: -4px;
  }
  .fh-fc--expert {
    right: -4px;
  }
  .fh-stat {
    right: -4px;
  }
}

@media (max-width: 860px) {
  .fh-hero {
    padding: 36px 24px 32px;
    margin-top: -90px;
    padding-top: 126px;
  }
  .fh-bg-base {
    background-size: 100% 100%;
    background-position: center center;
  }
  .fh-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fh-badge {
    margin: 0 auto 20px;
  }
  .fh-desc {
    margin: 0 auto 26px;
  }
  .fh-btns {
    justify-content: center;
  }
  .fh-trust {
    justify-content: center;
  }
  .fh-location {
    margin: 0 auto;
  }
  .fh-right {
    min-height: 380px;
    margin-top: 24px;
  }
  .fh-fc--hydro {
    left: 0;
    top: 28px;
  }
  .fh-fc--rating {
    left: 0;
    bottom: 80px;
  }
  .fh-fc--aroma {
    right: 0;
    top: 28px;
  }
  .fh-fc--expert {
    right: 0;
    top: 168px;
  }
  .fh-stat {
    right: 0;
    bottom: 4px;
  }
}

@media (max-width: 640px) {
  .fh-hero {
    padding: 28px 16px 28px;
    margin-top: 0;
    padding-top: 28px;
  }

  /* ── MOBILE: hide the bg image ── */
  .fh-bg-base {
    display: none;
  }

  /* ── MOBILE: show dog image below location text ── */
  .fh-mobile-dog {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 20px auto 0;
    border-radius: 20px;
    overflow: hidden;
  }
  .fh-mobile-dog img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .fh-headline {
    font-size: 27px;
  }
  .fh-btns {
    flex-direction: column;
    align-items: center;
  }
  .fh-btn {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }
  .fh-trust {
    gap: 16px;
  }

  /* ── MOBILE: right section shows all 4 cards ── */
  .fh-right {
    min-height: 420px;
    margin-top: 16px;
    position: relative;
  }

  /* Show ALL cards on mobile */
  /* .fh-fc--aroma  { display: flex; right: 0; top: 28px; } */
  .fh-fc--aroma {
    display: flex;
    right: auto;
    left: 0;
    top: 28px;
  }

  .fh-fc--expert {
    display: flex;
    right: 0;
    top: 168px;
  }

  .fh-fc--hydro {
    left: 0;
    top: 14px;
    min-width: 124px;
    padding: 10px 13px;
  }
  .fh-fc--rating {
    left: 0;
    bottom: 70px;
    min-width: 124px;
    padding: 10px 13px;
  }
  /* .fh-fc--aroma {
    min-width: 134px;
    padding: 10px 13px;
  } */
  .fh-fc--aroma {
    min-width: 134px;
    max-width: 160px;
    width: fit-content;
    padding: 10px 13px;
  }
  .fh-fc--expert {
    min-width: 120px;
    padding: 10px 13px;
  }
  .fh-stat {
    right: 0;
    bottom: 2px;
    padding: 10px 14px;
  }
  .fh-stat__divider {
    margin: 0 10px;
    height: 28px;
  }
  .fh-stat__num {
    font-size: 16px;
  }
  .fh-stat__av {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 420px) {
  .fh-hero {
    padding: 24px 14px 24px;
    margin-top: 0;
    padding-top: 24px;
  }

  /* ── MOBILE: hide the bg image ── */
  .fh-bg-base {
    display: none;
  }

  .fh-headline {
    font-size: 23px;
  }
  .fh-right {
    min-height: 340px;
  }

  /* Keep all 4 cards visible */
  .fh-fc--aroma {
    display: flex;
    right: 0;
    top: 20px;
    min-width: 118px;
    padding: 9px 11px;
  }
  .fh-fc--expert {
    display: flex;
    right: 0;
    top: 152px;
    min-width: 112px;
    padding: 9px 11px;
  }
  .fh-fc--hydro {
    display: none;
  }
  .fh-fc--rating {
    left: 0;
    bottom: 60px;
    min-width: 112px;
    padding: 9px 11px;
  }
  .fh-stat {
    padding: 9px 12px;
  }
  .fh-stat__divider {
    margin: 0 8px;
  }

  @media (max-width: 640px) {
    .fh-right {
      min-height: auto; /* cards ke liye height auto */
    }
  }
}

/* second section  */
/* ═══════════════════════════════════════════════════════════
   FURPETUAL — BRAND SECTION  |  brand-section.css
═══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
.bs {
  --accent: #f5a623;
  --blue-shell: #1a6be0;
  --blue-mid: #1e74ea;
  --blue-dark: #1358cc;
  --blue-icon: #2070e0;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════════
   OUTER SECTION  ─  full width, no border-radius
═══════════════════════════════════════════════ */
.bs {
  position: relative;
  width: 100%;
  border-radius: 0;
  background: var(--blue-shell);
  padding: 28px 32px;
  overflow: hidden;
}

/* ─── Floating deco icons ─── */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  color: rgba(255, 255, 255, 0.13);
  line-height: 1;
}
.deco-hrt {
  font-size: 22px;
  top: 28px;
  left: 46%;
  animation: bs-df 5s ease-in-out infinite;
}
.deco-paw {
  font-size: 17px;
  bottom: 28px;
  left: 33%;
  animation: bs-df 7s ease-in-out infinite reverse;
}
.deco-star {
  font-size: 14px;
  top: 30px;
  left: 57%;
  animation: bs-df 4.5s ease-in-out infinite 1s;
}

@keyframes bs-df {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(7deg);
  }
}

/* ═══════════════════════════════════════════════
   INNER CARD  ─  spaced from outer shell, rounded
═══════════════════════════════════════════════ */
.bs-inner {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(
    140deg,
    #3d92f7 0%,
    var(--blue-mid) 42%,
    var(--blue-dark) 100%
  );
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 50, 140, 0.22);
}
.bs-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 38% 80% at 3% 50%,
      rgba(255, 255, 255, 0.09) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 26% 48% at 97% 8%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 55%
    );
}

/* ═══════════════════════════════════════════════
   MAIN GRID
   text(wider) | feats(narrower) | img(narrower) | stats(overlay zone)

   KEY CHANGE:
   ▸ text col  → 290px  (wider)
   ▸ feats col → ~430px (narrower, auto fills remaining)
   ▸ img col   → 230px  (narrower)
   ▸ stats col → 195px  (overlaps img via negative margin)
═══════════════════════════════════════════════ */
.bs-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  /* grid-template-columns: 290px 1fr 230px 195px; */
  grid-template-columns: 340px 1fr 230px 195px;

  grid-template-areas: "text feats img stats";
  align-items: stretch;
  min-height: 310px;
}

/* ═══════════════════════════════════════════════
   TEXT COLUMN  (wider)
═══════════════════════════════════════════════ */
.bs-text {
  grid-area: text;
  padding: 34px 26px 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.bs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
}
.bs-pill i {
  font-size: 8px;
  color: var(--accent);
}

/* .bs-h {
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.11;
  color: #fff;
  letter-spacing: -0.022em;
}
.bs-h em {
  font-style: normal;
  color: var(--accent);
} */

.bs-h {
  font-family: "Chewy", cursive;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
  letter-spacing: 0;
}
.bs-h em {
  font-style: normal;
  font-family: "Chewy", cursive;
  color: var(--accent);
  font-weight: 400;
}

.bs-body {
  font-size: 11.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.76);
}

/* ═══════════════════════════════════════════════
   FEATURES  (narrower, 4 cols with dividers)
═══════════════════════════════════════════════ */
.bs-feats {
  grid-area: feats;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.bs-feat {
  padding: 28px 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  cursor: default;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    background 0.3s;
}
.bs-feat:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.bs-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition:
    background 0.3s,
    transform 0.3s;
}
.bs-feat:hover .bs-feat-icon {
  background: var(--accent);
  transform: scale(1.1) rotate(-5deg);
}

.bs-feat-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  position: relative;
  padding-bottom: 9px;
}
.bs-feat-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.bs-feat-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════
   IMAGE COLUMN  (narrower)
   ▸ position:relative so stats can overlap it
═══════════════════════════════════════════════ */
.bs-imgcol {
  grid-area: img;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible; /* allow stats to peek over */
  padding: 0;
}

.bs-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: bs-gp 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bs-gp {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.07);
  }
}

.bs-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
  animation: none;
}
@keyframes bs-imgf {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ═══════════════════════════════════════════════
   STATS COLUMN
   ▸ Negative left margin so cards visually
     "sit on top of" the image — layered feel
   ▸ WHITE background cards
═══════════════════════════════════════════════ */
.bs-stats {
  grid-area: stats;
  padding: 22px 18px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 3; /* above the image */
  margin-left: -30px; /* overlap onto image */
}

.bs-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 13px 15px;
  cursor: default;
  box-shadow: 0 4px 18px rgba(10, 50, 140, 0.14);
  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    box-shadow 0.3s;
}
.bs-stat:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(10, 50, 140, 0.2);
}

.bs-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(26, 107, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue-icon);
  transition:
    background 0.3s,
    color 0.3s;
}
.bs-stat:hover .bs-stat-icon {
  background: var(--blue-icon);
  color: #fff;
}

.bs-stat-body {
  display: flex;
  flex-direction: column;
}
.bs-stat-numrow {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.bs-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #1252c0;
  letter-spacing: -0.03em;
}
.bs-stat-plus {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  margin-left: 1px;
}
.bs-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: #1a3a6e;
  margin-top: 2px;
}
.bs-stat-sub {
  font-size: 9px;
  color: #6b82a8;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════
   ENTRANCE ANIMATIONS
═══════════════════════════════════════════════ */
.bs-text,
.bs-feats,
.bs-imgcol,
.bs-stats {
  opacity: 0;
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.bs-text {
  transform: translateX(-22px);
}
.bs-feats {
  transform: translateY(22px);
}
.bs-imgcol {
  transform: translateY(22px);
}
.bs-stats {
  transform: translateX(22px);
}

.bs.vis .bs-text {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.bs.vis .bs-feats {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.bs.vis .bs-imgcol {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.bs.vis .bs-stats {
  opacity: 1;
  transform: none;
  transition-delay: 0.14s;
}

.bs.vis .bs-feat:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}
.bs.vis .bs-feat:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}
.bs.vis .bs-feat:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}
.bs.vis .bs-feat:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.56s;
}

.bs.vis .bs-stat:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}
.bs.vis .bs-stat:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
.bs.vis .bs-stat:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .bs {
    padding: 22px 24px;
  }
  .bs-wrap {
    grid-template-columns: 300px 1fr 210px 185px;
  }
  .bs-feat {
    padding: 24px 10px 20px;
  }
  .bs-stats {
    margin-left: -20px;
  }
}

@media (max-width: 860px) {
  .bs {
    padding: 18px;
  }
  .bs-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text  stats"
      "feats feats"
      "img   img";
  }
  .bs-text {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .bs-feats {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: none;
  }
  .bs-imgcol {
    width: 100%;
    min-height: 230px;
    overflow: hidden;
  }
  .bs-stats {
    margin-left: 0;
    padding: 18px 16px;
  }
}

@media (max-width: 560px) {
  .bs {
    padding: 12px;
  }
  .bs-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "feats"
      "img"
      "stats";
  }
  .bs-inner {
    border-radius: 12px;
  }
  .bs-text {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .bs-feats {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }
  .bs-feat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bs-feat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bs-imgcol {
    min-height: 200px;
    overflow: hidden;
  }
  .bs-stats {
    margin-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px;
    gap: 8px;
  }
  .bs-stat {
    flex: 1 1 140px;
  }
  .bs-stat:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 380px) {
  .bs-feats {
    grid-template-columns: 1fr;
  }
  .bs-feat {
    border-right: none;
  }
  .bs-stat {
    flex: 1 1 100%;
  }
  .bs-stat-num {
    font-size: 22px;
  }
}

/* services section  */

/* ════════════════════════════════════════
   FURPETUAL — OUR SERVICES (FIXED & RESPONSIVE)
   Paste into style.css

   REQUIRED in <head>:
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
════════════════════════════════════════ */

/* ════════════════════
   SECTION
════════════════════ */
.fs-section {
  position: relative;
  width: 100%;
  padding: 72px 40px 0;
  box-sizing: border-box;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.fs-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://i.ibb.co/cSVqsxjg/Untitled-design.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.fs-paw-watermark {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 200px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.fs-paw-watermark svg {
  width: 100%;
  height: 100%;
}

.fs-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* ════════════════════
   HEADER
════════════════════ */
.fs-header {
  text-align: center;
  margin-bottom: 40px;
}

.fs-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #3d96dd; /* ← slightly lighter blue */
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* .fs-title {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 800;
  color: #111827;
  line-height: 1.18;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fs-title--orange {
  color: #fbbf24;
}
.fs-title__heart {
  display: inline-flex;
  align-items: center;
} */

.fs-title {
  font-family: "Chewy", cursive;

  font-size: clamp(42px, 4.3vw, 62px);

  font-weight: 400;

  color: #1c2d4b;

  line-height: 1.02;

  margin: 0 0 12px;

  letter-spacing: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  flex-wrap: wrap;

  text-align: center;
}

.fs-title--orange {
  font-family: "Chewy", cursive;

  color: #f5a623;

  background: none !important;

  -webkit-text-fill-color: #f5a623;

  font-size: inherit;

  font-weight: 400;
}

.fs-title__heart {
  display: inline-flex;
  align-items: center;
}

.fs-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════
   CARDS GRID
════════════════════ */
.fs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  align-items: start;
}

/* ── BASE CARD ── */
.fs-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden; /* ← changed: clip everything inside */
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.fs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11);
}

/* ── Number pill — sits above image ── */
.fs-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 4px 9px;
  border-radius: 20px;
}

/* ── Image wrapper ── */
.fs-card__img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.fs-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fs-card:hover .fs-card__img {
  transform: scale(1.04);
}

/* ── Icon badge — colored circle ── */
.fs-card__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  margin-top: -22px;
  position: relative;
  z-index: 4;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}
.fs-card__badge i {
  font-size: 17px;
  color: #fff;
  line-height: 1;
  display: block;
}

/* ── Card body ── */
.fs-card__body {
  padding: 10px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.fs-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 7px;
}

.fs-card__desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
}

.fs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.18s ease;
  margin-top: auto;
}
.fs-card__link:hover {
  gap: 10px;
}
.fs-card__link i {
  font-size: 11px;
}

/* ════════════════════
   LIGHTER BADGE COLORS
   (inline style overrides on each card,
    so update both here and in HTML)
════════════════════ */
/* Card 1 — blue   : #3d96dd (was #1a7fd4) */
/* Card 2 — green  : #34c970 (was #22c55e) */
/* Card 3 — purple : #9e74f5 (was #8b5cf6) */
/* Card 4 — blue2  : #5b9af7 (was #3b82f6) */
/* Card 5 — amber  : #fbbf24 (was #f59e0b) */

/* ════════════════════
   TRUSTED BY STRIP
════════════════════ */
.fs-trust {
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.fs-trust__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  padding-right: 32px;
}

.fs-trust__dog-wrap {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #dbeafe;
  border: 4px solid #93c5fd;
  box-shadow: 0 4px 14px rgba(26, 127, 212, 0.18);
}
.fs-trust__dog {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.fs-trust__count {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fs-trust__by {
  font-size: 12.5px;
  color: #6b7280;
  font-weight: 500;
}
.fs-trust__num {
  font-size: 34px;
  font-weight: 800;
  color: #3d96dd;
  line-height: 1;
  letter-spacing: -1px;
}
.fs-trust__lbl {
  font-size: 13px;
  color: #111827;
  font-weight: 700;
}

.fs-trust__divider {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
  flex-shrink: 0;
  margin-right: 32px;
}

.fs-trust__pillars {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}

.fs-trust__pillar {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  flex: 1;
  min-width: 120px;
}

.fs-trust__pillar-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 11px;
  background: rgba(61, 150, 221, 0.1); /* ← lighter */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fs-trust__pillar-icon i {
  font-size: 17px;
  color: #3d96dd; /* ← lighter blue */
}

.fs-trust__pillar-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
  line-height: 1.3;
}
.fs-trust__pillar-desc {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   RESPONSIVE — ≤1200px
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .fs-grid {
    gap: 12px;
  }
  .fs-card__img-wrap {
    height: 150px;
  }
  .fs-trust__pillars {
    gap: 18px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — ≤1024px  →  3 columns
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fs-section {
    padding: 52px 24px 0;
  }
  .fs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .fs-trust {
    padding: 20px 22px;
  }
  .fs-trust__left {
    padding-right: 22px;
  }
  .fs-trust__divider {
    margin-right: 22px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — ≤768px  →  2 columns
════════════════════════════════════════ */
@media (max-width: 768px) {
  .fs-section {
    padding: 44px 16px 0;
  }
  .fs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Last card center if odd */
  .fs-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .fs-card__img-wrap {
    height: 160px;
  }

  /* Trust strip stacked */
  .fs-trust {
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 18px 18px 0 0;
    padding: 20px 18px;
  }
  .fs-trust__left {
    padding-right: 0;
  }
  .fs-trust__divider {
    display: none;
  }
  .fs-trust__pillars {
    gap: 14px;
  }
  .fs-trust__pillar {
    min-width: 140px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — ≤540px  →  1 column
════════════════════════════════════════ */
@media (max-width: 540px) {
  .fs-section {
    padding: 36px 12px 0;
  }

  .fs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  /* reset last-child centering */
  .fs-card:last-child:nth-child(odd) {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }

  /* Card: horizontal layout on mobile (image left, body right) */
  .fs-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    min-height: 110px;
  }

  /* Image: narrow left column */
  .fs-card__img-wrap {
    width: 110px;
    min-width: 110px;
    height: auto;
    min-height: 110px;
    border-radius: 0;
    flex-shrink: 0;
  }

  /* Number pill repositioned */
  .fs-card__num {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 3px 7px;
  }

  /* Badge moved to left side bottom area */
  .fs-card__badge {
    width: 36px;
    height: 36px;
    margin-left: 8px;
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    left: 76px; /* overlaps image-body border */
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .fs-card__badge i {
    font-size: 14px;
  }

  /* Body: takes remaining width */
  .fs-card__body {
    padding: 12px 14px 12px 18px;
    justify-content: center;
  }

  .fs-card__title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .fs-card__desc {
    font-size: 11.5px;
    line-height: 1.5;
    margin-bottom: 8px;
    /* Limit desc to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fs-card__link {
    font-size: 12px;
  }

  /* Header */
  /* .fs-title {
    font-size: 20px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  } */
  .fs-title {
    font-family: "Chewy", cursive;

    font-size: 30px;

    font-weight: 400;

    color: #1c2d4b;

    line-height: 1.08;

    letter-spacing: 0;

    flex-direction: row;

    justify-content: center;

    align-items: center;

    gap: 4px;

    flex-wrap: wrap;

    text-align: center;
  }

  .fs-title--orange {
    font-family: "Chewy", cursive;

    color: #f5a623;

    background: none !important;

    -webkit-text-fill-color: #f5a623;

    font-size: inherit;

    font-weight: 400;
  }
  .fs-title__heart {
    display: inline-flex;

    align-items: center;

    margin-left: 2px;

    transform: translateY(-1px);
  }

  .fs-title__heart svg {
    width: 18px;
    height: 18px;
  }

  .fs-subtitle {
    font-size: 13.5px;
  }
  .fs-subtitle {
    font-size: 13.5px;
  }

  /* Trust strip */
  .fs-trust {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 18px;
  }
  .fs-trust__left {
    gap: 14px;
  }
  .fs-trust__dog-wrap {
    width: 64px;
    height: 64px;
  }
  .fs-trust__num {
    font-size: 28px;
  }
  .fs-trust__pillars {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .fs-trust__pillar {
    min-width: unset;
    width: 100%;
  }
  .fs-trust__pillar-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
  }
  .fs-trust__pillar-icon i {
    font-size: 14px;
  }
  .fs-trust__pillar-title {
    font-size: 12px;
  }
  .fs-trust__pillar-desc {
    font-size: 11px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — ≤380px  →  very small
════════════════════════════════════════ */
@media (max-width: 380px) {
  .fs-section {
    padding: 28px 10px 0;
  }
  .fs-grid {
    max-width: 100%;
  }

  .fs-card__img-wrap {
    width: 95px;
    min-width: 95px;
  }
  .fs-card__badge {
    left: 61px;
    width: 32px;
    height: 32px;
  }
  .fs-card__badge i {
    font-size: 12px;
  }
  .fs-card__body {
    padding: 10px 10px 10px 14px;
  }
  .fs-card__title {
    font-size: 13px;
  }
  .fs-card__desc {
    font-size: 11px;
  }

  .fs-title {
    font-size: 18px;
  }
  .fs-trust__num {
    font-size: 24px;
  }
  .fs-title {
    font-family: "Chewy", cursive;

    font-size: 26px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: 0;

    gap: 3px;
  }

  .fs-title__heart svg {
    width: 16px;
    height: 16px;
  }
}

/* Why choose section */
:root {
  --blue-primary: #1565c0;
  --blue-light: #e3f0ff;
  --orange-light: #fff4e0;
  --green-light: #e8f5e9;
  --purple-light: #f3e5f5;
  --coral-light: #ffebee;
  --teal-light: #e0f2f1;
  --text-dark: #0d1b3e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --bg-section: #f8fbff;
  --shadow-card: 0 4px 20px rgba(21, 101, 192, 0.08);
  --shadow-hover: 0 8px 32px rgba(21, 101, 192, 0.16);
  --radius-card: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/*
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

body {
  font-family: "Nunito", sans-serif;
  background: #fdfbf7;
  color: var(--text-dark);
}

/* ── Section ── */
.why-section {
  position: relative;
  /* background: var(--bg-section); */
  background: #fdfdfd;

  padding: 52px 24px 60px;
  overflow: hidden;
}

/* ── Container ── */
.why-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

/* ══════════════════════════════
   LEFT  — 48%
══════════════════════════════ */
.why-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* Badge */
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
  border: 1.5px solid rgba(21, 101, 192, 0.15);
}

/* Heading */
/* .why-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: #0f2350;
  line-height: 1.05;
  letter-spacing: -2px;
} */
.why-heading {
  font-family: "Chewy", cursive;

  font-size: clamp(42px, 4.3vw, 62px);

  font-weight: 400;

  color: #1c2d4b;

  line-height: 1.02;

  letter-spacing: 0;
}
/* .highlight-text {
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  background: linear-gradient(135deg, #f5a623 0%, #ff8a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.highlight-text {
  font-family: "Chewy", cursive;

  color: #f5a623;

  background: none !important;

  -webkit-text-fill-color: #f5a623;

  font-size: inherit;

  font-weight: 400;
}

/* Subtext */
.why-subtext {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 460px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 13px 14px;
  box-shadow: none; /* ← shadow removed */

  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(21, 101, 192, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: default;
}

/* Yeh existing .feature-card rule ke neeche add karo */
.fp-feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  box-shadow: none; /* ← shadow removed */

  border-radius: var(--radius-card);
  padding: 13px 14px;
  box-shadow: none; /* ← yahan none kar do */
  border: 1.5px solid rgba(21, 101, 192, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: default;
}

.fp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(21, 101, 192, 0.14);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(21, 101, 192, 0.14);
}

.fp-feat-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-feat-icon i {
  font-size: 22px !important;
  line-height: 1;
}

.fp-icon--blue {
  background: #eef5ff !important;
}
.fp-icon--blue i {
  color: #1565c0 !important;
}

.fp-icon--orange {
  background: #fff5e8 !important;
}
.fp-icon--orange i {
  color: #f5a623 !important;
}

.fp-icon--green {
  background: #edf9f1 !important;
}
.fp-icon--green i {
  color: #2e7d32 !important;
}

.fp-icon--purple {
  background: #f4ecff !important;
}
.fp-icon--purple i {
  color: #8e44ec !important;
}

.fp-icon--coral {
  background: #fff0f3 !important;
}
.fp-icon--coral i {
  color: #ff5a7b !important;
}

.fp-icon--teal {
  background: #eef4ff !important;
}
.fp-icon--teal i {
  color: #3b82f6 !important;
}

.feature-text h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.feature-text p {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5;
}

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f5a623 0%, #ff8c00 100%);
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.38);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.5);
}

/* ONLY ICON STYLE ADDED */

.cta-btn svg:first-child {
  width: 22px;
  height: 22px;

  background: #ffffff;

  border-radius: 50%;

  padding: 4px;

  flex-shrink: 0;
}

/* PAW ICON YELLOW */

.cta-btn svg:first-child ellipse {
  fill: #f5a623;
}

/* ══════════════════════════════
   RIGHT  — 52%
══════════════════════════════ */
.why-right {
  flex: 0 0 52%;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 460px;
}

/* Deco hearts */
.deco-heart-left {
  position: absolute;
  top: 20px;
  right: 170px;
  z-index: 6;
  animation: heartFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(21, 101, 192, 0.25));
}
.deco-heart-outline {
  position: absolute;
  top: 105px;
  right: 157px;
  z-index: 6;
  animation: heartFloat 3s ease-in-out infinite 0.5s;
  opacity: 0.7;
}
@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* Image fills left portion of right column */
.image-blob-wrapper {
  position: relative;
  flex: 1;
  min-height: 100%;
}
.dog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 8px;
}

/* Safety Badge — bottom-left of image */
.safety-badge {
  position: absolute;
  bottom: 22px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-primary);
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.35);
  line-height: 1.4;
  z-index: 7;
  white-space: nowrap;
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
.safety-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.6) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Stats — absolute right of image, vertically centered */
.stats-column {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.14);
  border: 1.5px solid rgba(21, 101, 192, 0.08);
  min-width: 160px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: slideInRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
  animation-delay: 0.25s;
}
.stat-card:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.stat-card:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.18);
}

/* =========================
STAT ICON
========================= */

.stat-icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICONS WHITE */

.stat-icon i {
  font-size: 16px;
  line-height: 1;

  color: #ffffff;
}

/* =========================
BLUE
========================= */

.stat-blue {
  background: #55b0f0;
}

.stat-blue + .stat-text .stat-number {
  color: #55b0f0;
}

/* =========================
ORANGE
========================= */

.stat-orange {
  background: #eca432;
}

.stat-orange + .stat-text .stat-number {
  color: #eca432;
}

/* =========================
GREEN
========================= */

.stat-green {
  background: #7dc6ad;
}

.stat-green + .stat-text .stat-number {
  color: #7dc6ad;
}

/* =========================
TEXT
========================= */

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #1c2d4b;
  line-height: 1.3;
}
/* ══════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE (max 1100px)
══════════════════════════════ */
@media (max-width: 1100px) {
  .why-container {
    gap: 6px;
  }
  .stat-card {
    min-width: 145px;
    padding: 10px 14px;
  }
  .stats-column {
    gap: 8px;
  }
  .safety-badge {
    font-size: 11px;
    padding: 9px 13px;
  }
  .deco-heart-left {
    right: 155px;
  }
  .deco-heart-outline {
    right: 142px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (max 900px)
══════════════════════════════ */
@media (max-width: 900px) {
  .why-section {
    padding: 44px 20px 52px;
  }
  .why-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .why-left {
    flex: unset;
    width: 100%;
    align-items: flex-start;
  }
  .why-right {
    flex: unset;
    width: 100%;
    max-width: 620px;
    min-height: 380px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .why-subtext {
    max-width: 100%;
  }
  .deco-heart-left {
    top: 16px;
    right: 170px;
  }
  .deco-heart-outline {
    top: 80px;
    right: 157px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (max 680px)
══════════════════════════════ */
@media (max-width: 680px) {
  .why-right {
    flex-direction: column;
    min-height: auto;
    align-items: center;
    gap: 16px;
  }
  .image-blob-wrapper {
    width: 100%;
    min-height: 300px;
    flex: unset;
  }
  .dog-image {
    border-radius: 16px;
  }

  .safety-badge {
    bottom: 14px;
    left: 10px;
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Stats — ek row, teen cards */
  .stats-column {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding-top: 28px;
  }

  .stat-card {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 0;
    max-width: none;
    padding: 28px 8px 12px;
    position: relative;
    overflow: visible;
  }

  .stat-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }

  .stat-text {
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 14px;
  }

  .stat-label {
    font-size: 11px;
  }

  .deco-heart-left,
  .deco-heart-outline {
    display: none;
  }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
══════════════════════════════ */
@media (max-width: 480px) {
  .why-section {
    padding: 36px 14px 48px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-heading {
    font-family: "Chewy", cursive;
    font-size: 30px;
    font-weight: 400;
    color: #1c2d4b;
    line-height: 1.02;
    letter-spacing: 0;
    text-align: left;
    display: block;
    width: 100%;
    margin-bottom: 14px;
  }

  .highlight-text {
    font-family: "Chewy", cursive;
    color: #f5a623;
    background: none !important;
    -webkit-text-fill-color: #f5a623;
    display: inline;
    font-size: inherit;
    font-weight: 400;
  }

  .why-heading br {
    display: block;
  }

  .why-subtext {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
    max-width: 100%;
  }

  .image-blob-wrapper {
    min-height: 250px;
  }

  /* Stat cards — 480px pe bhi same layout */
  .stat-card {
    flex: 1;
    max-width: none;
    min-width: 0;
    padding: 28px 6px 10px;
  }

  .stat-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
  }

  .stat-number {
    font-size: 13px;
  }

  .stat-label {
    font-size: 10px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 11px 20px;
  }

  .safety-badge {
    font-size: 10.5px;
    padding: 7px 11px;
    bottom: 10px;
    left: 8px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — EXTRA SMALL (max 360px)
══════════════════════════════ */
@media (max-width: 360px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-column {
    gap: 6px;
  }

  .stat-card {
    padding: 26px 4px 10px;
  }

  .why-heading {
    font-size: 30px;
    line-height: 1.05;
  }

  .why-subtext {
    font-size: 14px;
  }
}

/* WHY CHOOSE FURPETUAL  */
/* body {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 20px 14px;
} */

/* ========================= STRIP ========================= */
.strip {
  max-width: 1110px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 35, 80, 0.07);
  box-shadow: 0 2px 14px rgba(15, 35, 80, 0.06);
  padding: 18px 20px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 110px;
}

/* ========================= LOCATION ========================= */
.loc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 240px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 18px; /* space for dotted+paw below */
}

/* Big solid blue pin icon */
.loc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-icon svg {
  width: 22px;
  height: 22px;
  fill: #2563eb;
}

.visit-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.loc-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f2350;
}
.loc-state {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 3px;
  display: block;
}

/* Dotted arc line */
.dotted {
  position: absolute;
  left: 38px;
  bottom: 4px;
  width: 80px;
  height: 16px;
  border-bottom: 2px dashed #93c5fd;
  border-radius: 0 0 50px 50px;
  pointer-events: none;
}

/* Paw at end of dotted */
.paw {
  position: absolute;
  bottom: 0px;
  left: 116px;
  pointer-events: none;
}
.paw svg {
  width: 14px;
  height: 14px;
  fill: #3b82f6;
}

/* ========================= FEATURES ========================= */
.feats {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 24px;
  align-self: center;
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-left: 1px solid #e8edf5;
  text-align: center;
}
.feat:first-child {
  border-left: none;
}
.feat svg {
  width: 22px;
  height: 22px;
  fill: #2563eb;
}
.feat span {
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
  color: #1e3a5f;
  white-space: nowrap;
}

/* ========================= GALLERY ========================= */
.gallery {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.gcard {
  width: 122px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.gcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1050px) {
  .strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    min-height: auto;
  }
  .gallery {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .gcard {
    width: calc(25% - 6px);
  }
}
@media (max-width: 768px) {
  .strip {
    border-radius: 14px;
    padding: 16px;
    gap: 14px;
  }
  .loc {
    width: 100%;
  }
  .feats {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }
  .feat {
    flex: 1;
    padding: 0 8px;
  }
  .gcard {
    width: calc(50% - 4px);
    height: 110px;
  }
}
@media (max-width: 480px) {
  .strip {
    padding: 14px;
  }
  .gallery {
    gap: 8px;
  }
  .gcard {
    width: 100%;
    height: 160px;
  }
  .dotted,
  .paw {
    display: none;
  }
  /* MOBILE HEADING FIX */

  .why-heading {
    font-family: "Chewy", cursive;

    font-size: 42px;

    font-weight: 400;

    color: #1c2d4b;

    line-height: 1.02;

    letter-spacing: 0;

    display: block;

    width: 100%;

    text-align: left;

    margin-bottom: 14px;
  }

  /* SECOND LINE */

  .why-heading .highlight-text {
    font-family: "Chewy", cursive;

    color: #f5a623;

    background: none !important;

    -webkit-text-fill-color: #f5a623;

    display: inline;

    font-size: inherit;

    font-weight: 400;
  }

  /* FORCE CLEAN LINE BREAK */

  .why-heading br {
    display: block;
    content: "";
  }

  /* SUBTEXT */

  .why-subtext {
    font-size: 15px;

    line-height: 1.8;

    text-align: left;

    max-width: 100%;
  }
}

/* Wellness · CSS */
/* ── Wellness Section ── */
/* .wellness-section {
  position: relative;
  width: 100%;

  padding: 64px 20px 32px;

  font-family: "Nunito", sans-serif;
  overflow: hidden;
  background: #fdf9f4;
} */
.wellness-section {
  position: relative;
  width: 100%;
  padding: 64px 20px 32px;
  font-family: "Nunito", sans-serif;
  overflow: hidden;
  background: #fdf9f4;
}
.wellness-heading-block .why-heading br {
  display: block;
}

.wellness-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://i.ibb.co/cSVqsxjg/Untitled-design.png") center/cover
    no-repeat;
  opacity: 1;
  z-index: 0;
}

.wellness-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Badge */
.wellness-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid #e5eaf2;
  border-radius: 999px;
  padding: 5px 16px 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #1c2d4b;
  margin-bottom: 22px;
}
.wellness-badge i {
  color: #3b82f6;
  font-size: 13px;
}

/* Heading */
.wellness-heading-block {
  text-align: center;
  margin-bottom: 10px;
}
.why-heading {
  font-family: "Chewy", cursive;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 400;
  color: #1c2d4b;
  line-height: 1.02;
}
.highlight-text {
  font-family: "Chewy", cursive;
  color: #f5a623;
  font-size: inherit;
  font-weight: 400;
}
.heart-icon {
  color: #93c5fd;
  font-size: clamp(28px, 3vw, 42px);
  vertical-align: middle;
  margin-left: 6px;
}
.wellness-sub {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Cards row ── */
.wellness-cards {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}

/* Single card */
.w-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 2px 18px rgba(15, 35, 80, 0.09);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.w-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(15, 35, 80, 0.14);
}

/* Image area */
.w-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}
.w-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.w-card:hover .w-card-img img {
  transform: scale(1.05);
}

/* Floating icon — sits on w-card (not w-card-img) so overflow:hidden doesn't clip it */
.w-card-icon-wrap {
  position: relative;
  height: 0;
  z-index: 4;
}
.w-card-icon i {
  color: #ffffff !important;
}
.w-card-icon {
  position: absolute;
  top: -24px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

/* Card body */
.w-card-body {
  padding: 30px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.w-card-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #0f2350;
  margin-bottom: 8px;
  line-height: 1.25;
}
.w-card-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}

/* ── Bottom SVG arc/curve line ── */
.w-card-line {
  display: block;
  margin-top: 16px;
  flex-shrink: 0;
  width: 48px;
  height: 12px;
}
.w-card-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Color variants */
.icon-blue {
  background: #3b82f6;
}
.icon-teal {
  background: #14b8a6;
}
.icon-purple {
  background: #a78bfa;
}
.icon-green {
  background: #22c55e;
}
.icon-orange {
  background: #f5a623;
}

.line-blue path {
  stroke: #3b82f6;
}
.line-teal path {
  stroke: #14b8a6;
}
.line-purple path {
  stroke: #a78bfa;
}
.line-green path {
  stroke: #22c55e;
}
.line-orange path {
  stroke: #f5a623;
}

/* Decorative */
.deco-paw {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  font-size: 56px;
  color: #f5a623;
}
.deco-paw.tl {
  top: 48px;
  left: 30px;
  font-size: 72px;
  transform: rotate(-20deg);
}
.deco-paw.tr {
  top: 30px;
  right: 60px;
  font-size: 90px;
  transform: rotate(15deg);
  opacity: 0.08;
}
.deco-paw.bl {
  bottom: 60px;
  left: 80px;
  font-size: 50px;
  transform: rotate(10deg);
}
.deco-dash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.deco-dash.left {
  top: 110px;
  left: 18px;
  width: 60px;
  height: 40px;
  border: 2px dashed #93c5fd;
  border-radius: 50%;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .wellness-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .w-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .w-card-img {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .wellness-section {
    padding: 40px 12px 32px; /* ← bottom spacing kam */
  }
  .wellness-heading-block .why-heading br {
    display: none;
  }
  .wellness-heading-block .why-heading {
    font-size: 32px;
    line-height: 1.1;
  }
  .w-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .w-card-img {
    height: 170px;
  }
  .w-card-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
    bottom: -20px;
  }
  .w-card-body {
    padding: 30px 13px 14px;
  }
}
@media (max-width: 420px) {
  .w-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .w-card-img {
    height: 220px;
  }
}

/*  Wellness Experiences second section */
/* =========================================
   FURPETUAL STATS BANNER — UNIQUE CLASSES
   ========================================= */

/* Section wrapper — bg #fdf1e1 */
.fpb-section {
  position: relative;
  background: #fdfbf6;
  padding: 28px 24px 36px;
  overflow: hidden;
}

/* Faded paw watermark — bottom right of section */
.fpb-section::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 140px;
  height: 140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='16' rx='6' ry='5' fill='%231565C0' opacity='0.07'/%3E%3Cellipse cx='6' cy='10' rx='3' ry='4' fill='%231565C0' opacity='0.07'/%3E%3Cellipse cx='18' cy='10' rx='3' ry='4' fill='%231565C0' opacity='0.07'/%3E%3Cellipse cx='9' cy='6' rx='2.5' ry='3' fill='%231565C0' opacity='0.07'/%3E%3Cellipse cx='15' cy='6' rx='2.5' ry='3' fill='%231565C0' opacity='0.07'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* ── Banner Card ── */
.fpb-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(245, 166, 35, 0.22);
  /* Light blue shadow BELOW the card only */
  box-shadow:
    0 8px 24px rgba(21, 101, 192, 0.13),
    0 2px 6px rgba(21, 101, 192, 0.07);
  display: flex;
  align-items: center;
  min-height: 110px;
  overflow: hidden;
  z-index: 1;
}

/* ── Dog Image Section (left) ── */
.fpb-dog-wrap {
  position: relative;
  flex-shrink: 0;
  width: 155px;
  height: 110px;
  /* Warm cream bg matching card, no blue shadow */
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border-right: 1.5px solid rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.fpb-dog-img {
  width: 145px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 2;
  /* No blue drop shadow — plain */
}

/* Floating heart near dog */
.fpb-dog-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  animation: fpbHeartFloat 3s ease-in-out infinite;
}
.fpb-dog-heart i {
  font-size: 16px;
  color: #1565c0;
  opacity: 0.45;
}
@keyframes fpbHeartFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ── Stats Row ── */
.fpb-stats-row {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 4px;
}

/* ── Each Stat Item ── */
.fpb-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  text-align: center;
  position: relative;
}

/* Vertical divider between stats */
.fpb-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(21, 101, 192, 0.18),
    transparent
  );
}

/* Icons */
.fpb-stat-icon {
  font-size: 22px;
  margin-bottom: 5px;
  line-height: 1;
}
.fpb-icon-blue .fpb-stat-icon {
  color: #1565c0;
}
.fpb-icon-orange .fpb-stat-icon {
  color: #f5a623;
}
.fpb-icon-purple .fpb-stat-icon {
  color: #7b1fa2;
}
.fpb-icon-green .fpb-stat-icon {
  color: #2e7d32;
}

/* Numbers */
.fpb-stat-number {
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2px;
}
.fpb-icon-blue .fpb-stat-number {
  color: #1565c0;
}
.fpb-icon-orange .fpb-stat-number {
  color: #f5a623;
}
.fpb-icon-purple .fpb-stat-number {
  color: #7b1fa2;
}
.fpb-icon-green .fpb-stat-number {
  color: #2e7d32;
}

/* Labels */
.fpb-stat-label {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #718096;
  line-height: 1.3;
}

/* ── Tagline Box — right end ── */
.fpb-tagline-box {
  flex-shrink: 0;
  width: 185px;
  border-left: 1px solid rgba(21, 101, 192, 0.12);
  padding: 18px 18px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.fpb-tagline-sub {
  font-family: "Nunito", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #718096;
  line-height: 1.5;
}

.fpb-tagline-main {
  font-family: "Dancing Script", cursive;
  font-size: 21px;
  font-weight: 700;
  color: #1565c0;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fpb-tagline-main i {
  font-size: 15px;
  color: #f5a623;
}

/* ── Light blue shadow strip below card ── */
.fpb-card-shadow {
  max-width: 1060px;
  margin: 0 auto;
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(21, 101, 192, 0.1) 0%,
    transparent 100%
  );
  border-radius: 0 0 16px 16px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Large tablet (max 1024px) */
@media (max-width: 1024px) {
  .fpb-card {
    max-width: 95%;
  }
  .fpb-tagline-box {
    width: 165px;
  }
  .fpb-stat-number {
    font-size: 20px;
  }
}

/* Tablet (max 860px) */
@media (max-width: 860px) {
  .fpb-section {
    padding: 22px 18px 30px;
  }
  .fpb-dog-wrap {
    width: 125px;
    height: 95px;
  }
  .fpb-dog-img {
    width: 115px;
  }
  .fpb-stat-number {
    font-size: 18px;
  }
  .fpb-stat-icon {
    font-size: 19px;
  }
  .fpb-stat-label {
    font-size: 11px;
  }
  .fpb-tagline-box {
    width: 150px;
    padding: 14px 14px;
  }
  .fpb-tagline-main {
    font-size: 18px;
  }
  .fpb-tagline-sub {
    font-size: 10.5px;
  }
}

/* Small tablet (max 680px) */
@media (max-width: 680px) {
  .fpb-section {
    padding: 18px 14px 26px;
  }
  .fpb-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  /* Dog row on top */
  .fpb-dog-wrap {
    width: 100%;
    height: 100px;
    border-right: none;
    border-bottom: 1.5px solid rgba(245, 166, 35, 0.15);
    border-radius: 18px 18px 0 0;
    justify-content: center;
    align-items: flex-end;
  }
  .fpb-dog-img {
    width: 110px;
  }
  .fpb-dog-heart {
    top: 10px;
    right: 20px;
  }

  /* Stats 2x2 grid */
  .fpb-stats-row {
    flex-wrap: wrap;
    padding: 0;
  }
  .fpb-stat-item {
    flex: 1 1 50%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(21, 101, 192, 0.06);
  }
  .fpb-stat-item:not(:last-child)::after {
    display: none;
  }
  /* right border on 1st and 3rd items */
  .fpb-stat-item:nth-child(1),
  .fpb-stat-item:nth-child(3) {
    border-right: 1px solid rgba(21, 101, 192, 0.09);
  }

  /* Tagline full width at bottom */
  .fpb-tagline-box {
    width: 100%;
    border-left: none;
    border-top: 1.5px solid rgba(21, 101, 192, 0.1);
    align-items: center;
    text-align: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 0 18px 18px;
  }

  .fpb-card-shadow {
    display: none;
  }
}

/* Mobile (max 420px) */
@media (max-width: 420px) {
  .fpb-stat-item {
    flex: 1 1 50%; /* 100% tha, 50% karo — 2x2 grid */
    border-right: none !important;
  }
  /* Right border on 1st and 3rd for divider */
  .fpb-stat-item:nth-child(1),
  .fpb-stat-item:nth-child(3) {
    border-right: 1px solid rgba(21, 101, 192, 0.09) !important;
  }
  .fpb-stat-item:nth-child(1),
  .fpb-stat-item:nth-child(2),
  .fpb-stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(21, 101, 192, 0.06);
  }
  /* Dog image thodi badi */
  .fpb-dog-img {
    width: 130px;
  }
  .fpb-dog-wrap {
    height: 115px;
  }
  .fpb-stat-number {
    font-size: 20px;
  }
  .fpb-tagline-main {
    font-size: 19px;
  }
}

/* =========================================
   FURPETUAL GALLERY — PREFIX: glr-
   ========================================= */

/* ===== FURPETUAL TESTIMONIALS ===== */
/* =========================================
   FURPETUAL GALLERY — PREFIX: glr-
   ========================================= */

.glr-section {
  position: relative;
  width: 100%;
  padding: 48px 16px 52px;
  font-family: "Nunito", sans-serif;
  overflow: hidden;
  background: #f8fbff;
  box-sizing: border-box;
}

.glr-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://i.ibb.co/0jsSFWND/Untitled-design.png") center/cover
    no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

/* ── Header ── */
.glr-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
}

.glr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1565c0;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(21, 101, 192, 0.15);
  box-shadow: 0 2px 10px rgba(21, 101, 192, 0.08);
  margin-bottom: 6px; /* ← reduced from 12px to 6px */
}
.glr-badge i {
  font-size: 12px;
  color: #1565c0;
}
.glr-badge-spark {
  color: #f5a623 !important;
  font-size: 12px;
}

.glr-heading {
  font-family: "Chewy", cursive;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 400;
  color: #1c2d4b;
  line-height: 1.05;
  margin-top: 0; /* ← ensure no extra top margin */
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.glr-highlight {
  font-family: "Chewy", cursive;
  color: #f5a623;
  font-size: inherit;
  font-weight: 400;
}
.glr-heading-heart {
  font-size: clamp(18px, 2vw, 26px);
  color: #1565c0;
  opacity: 0.45;
  animation: glrHeartPulse 2.5s ease-in-out infinite;
}
@keyframes glrHeartPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.glr-subtext {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}
.glr-subtext strong {
  color: #1565c0;
  font-weight: 700;
}

/* ── Grid ── */
.glr-grid {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}

/* ── Card ── */
.glr-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(21, 101, 192, 0.1);
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.glr-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.18);
}

.glr-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}
.glr-card:hover .glr-card-img {
  transform: scale(1.06);
}

.glr-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(13, 27, 62, 0.48) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.glr-card:hover .glr-card-overlay {
  opacity: 1;
}

.glr-card-icon {
  position: absolute;
  bottom: 11px;
  right: 11px;
  z-index: 2;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease;
}
.glr-card:hover .glr-card-icon {
  transform: scale(1.12);
}

.glr-icon-blue {
  background: #1565c0;
}
.glr-icon-teal {
  background: #00897b;
}
.glr-icon-purple {
  background: #7b1fa2;
}
.glr-icon-amber {
  background: #f5a623;
}
.glr-icon-orange {
  background: #e65100;
}
.glr-icon-green {
  background: #00897b;
}
.glr-icon-sky {
  background: #0288d1;
}
.glr-icon-pink {
  background: #7b1fa2;
}

/* ── View More Button ── */
.glr-btn-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.glr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #1565c0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(21, 101, 192, 0.18);
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(21, 101, 192, 0.1);
  transition: all 0.25s ease;
  cursor: pointer;
}
.glr-btn i {
  font-size: 13px;
}
.glr-btn-arrow {
  transition: transform 0.22s ease;
}
.glr-btn:hover {
  background: #1565c0;
  color: #fff;
  box-shadow: 0 8px 26px rgba(21, 101, 192, 0.26);
  transform: translateY(-2px);
}
.glr-btn:hover .glr-btn-arrow {
  transform: translateX(4px);
}

/* =========================================
   LIGHTBOX POPUP
   ========================================= */
.glr-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 12, 32, 0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: glrFadeIn 0.22s ease;
  box-sizing: border-box;
}
.glr-lightbox.glr-lb-open {
  display: flex;
}
@keyframes glrFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.glr-lb-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.glr-lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 10;
}
.glr-lb-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}

.glr-lb-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  user-select: none;
}
.glr-lb-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.glr-lb-arrow:active {
  transform: scale(0.92);
}

.glr-lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 16px;
}
.glr-lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
  animation: glrImgIn 0.22s ease;
}
@keyframes glrImgIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.glr-lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Large tablets */
@media (max-width: 1024px) {
  .glr-grid {
    grid-template-rows: repeat(2, 178px);
    gap: 9px;
    max-width: 92vw;
  }
}

/* Tablets */
@media (max-width: 860px) {
  .glr-section {
    padding: 36px 14px 44px;
  }
  .glr-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 188px);
    gap: 9px;
    max-width: 560px;
  }
  .glr-header {
    margin-bottom: 16px;
  }
  .glr-lb-inner {
    gap: 10px;
  }
  .glr-lb-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* Large phones */
@media (max-width: 600px) {
  .glr-section {
    padding: 28px 10px 36px;
  }
  .glr-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(
      4,
      44vw
    ); /* vw-based so cards scale with screen */
    gap: 7px;
    max-width: 100%;
  }
  .glr-subtext {
    font-size: 13px;
  }
  .glr-card {
    border-radius: 12px;
  }
  .glr-card-icon {
    width: 29px;
    height: 29px;
    font-size: 12px;
    bottom: 8px;
    right: 8px;
  }
  .glr-badge {
    font-size: 10px;
    padding: 5px 13px;
  }
  .glr-lb-arrow {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .glr-lb-img-wrap {
    border-radius: 12px;
  }
  .glr-lb-img {
    border-radius: 12px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .glr-section {
    padding: 24px 8px 32px;
  }
  .glr-grid {
    grid-template-rows: repeat(4, 42vw);
    gap: 6px;
  }
  .glr-heading {
    font-size: clamp(24px, 7.5vw, 32px);
  }
  .glr-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  .glr-lb-inner {
    gap: 6px;
  }
  .glr-lb-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .glr-lb-close {
    top: -40px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* Very small phones — single column */
@media (max-width: 340px) {
  .glr-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 60vw);
  }
}

/* testimonials sections */

/* ===== FURPETUAL TESTIMONIALS ===== */

#tst-root *,
#tst-root *::before,
#tst-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#tst-root {
  position: relative;
  width: 100%;
  background: #fef8ee;
  font-family: "Nunito", sans-serif;

  overflow: hidden;
  display: block;
}

#tst-root::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 50px;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='70' rx='28' ry='22' fill='%23f5a623' opacity='0.1'/%3E%3Cellipse cx='26' cy='44' rx='10' ry='13' fill='%23f5a623' opacity='0.1'/%3E%3Cellipse cx='50' cy='34' rx='10' ry='13' fill='%23f5a623' opacity='0.1'/%3E%3Cellipse cx='74' cy='44' rx='10' ry='13' fill='%23f5a623' opacity='0.1'/%3E%3C/svg%3E")
    center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

#tst-root .tst-deco-curve {
  position: absolute;
  top: 14px;
  right: 80px;
  width: 130px;
  height: 55px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

#tst-root .tst-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

#tst-root .tst-main-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 32px;
  width: 100%;
}

#tst-root .tst-left {
  flex: 0 0 240px !important;
  min-width: 200px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  padding-bottom: 32px;
}

#tst-root .tst-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

#tst-root .tst-badge i {
  color: #f5a623;
  font-size: 13px;
}

#tst-root .tst-badge-text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1565c0;
}

#tst-root .tst-heading {
  font-family: "Chewy", cursive;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 400;
  color: #1c2d4b;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 12px;
}

#tst-root .tst-highlight {
  font-family: "Chewy", cursive;
  color: #f5a623;
  background: none !important;
  -webkit-text-fill-color: #f5a623;
  font-size: inherit;
  font-weight: 400;
}

#tst-root .tst-subtext {
  font-size: 13.5px;
  font-weight: 500;
  color: #7a8599;
  line-height: 1.6;
  max-width: 200px;
}

#tst-root .tst-slider-area {
  flex: 1 1 0% !important;
  display: flex !important;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-bottom: 32px;
  overflow: hidden;
}

#tst-root .tst-viewport {
  flex: 1 1 0% !important;
  overflow: hidden;
  min-width: 0;
}

#tst-root .tst-track {
  display: flex !important;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 8px 2px 8px;
}

#tst-root .tst-track.tst-no-anim {
  transition: none !important;
}

#tst-root .tst-card {
  flex: 0 0 calc(33.333% - 11px) !important;
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 2px 16px rgba(21, 101, 192, 0.07);
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  min-width: 0;
}

#tst-root .tst-card:hover {
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.13);
  transform: translateY(-3px);
}

#tst-root .tst-card::after {
  content: "\201D";
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 48px;
  line-height: 1;
  color: #b8cce4;
  font-family: Georgia, serif;
  pointer-events: none;
  opacity: 0.65;
}

#tst-root .tst-card-top {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

#tst-root .tst-avatar {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid #f5a623;
}

#tst-root .tst-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px;
}

#tst-root .tst-name {
  font-size: 14px;
  font-weight: 800;
  color: #1c2d4b;
  line-height: 1;
}

#tst-root .tst-stars {
  display: flex !important;
  gap: 2px;
}

#tst-root .tst-stars i {
  font-size: 11px;
  color: #f5a623;
}

#tst-root .tst-review {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.65;
  flex: 1;
  padding-right: 18px;
}

#tst-root .tst-pet-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #5b6987;
  margin-top: 2px;
}

#tst-root .tst-pet-tag i {
  font-size: 12px;
  color: #1565c0;
}

#tst-root .tst-arrow-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5a623;
  border: none;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.4);
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
  z-index: 2;
}

#tst-root .tst-arrow-btn:hover {
  background: #e09610;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.5);
}

#tst-root .tst-arrow-btn:active {
  transform: scale(0.95);
}

#tst-root .tst-bottom-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1.5px solid rgba(21, 101, 192, 0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 40px 22px;
  flex-wrap: wrap;
}

#tst-root .tst-google-group {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

#tst-root .tst-g-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#tst-root .tst-g-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #dde3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #4285f4;
  font-family: Georgia, serif;
  flex-shrink: 0;
}

#tst-root .tst-g-score {
  font-size: 15px;
  font-weight: 800;
  color: #1c2d4b;
}

#tst-root .tst-g-stars {
  display: flex !important;
  gap: 2px;
}

#tst-root .tst-g-stars i {
  font-size: 13px;
  color: #f5a623;
}

#tst-root .tst-bar-divider {
  width: 1.5px;
  height: 30px;
  background: rgba(21, 101, 192, 0.13);
  flex-shrink: 0;
}

#tst-root .tst-count-group {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

#tst-root .tst-count-num {
  font-family: "Chewy", cursive;
  font-size: 24px;
  color: #1c2d4b;
  line-height: 1;
}

#tst-root .tst-count-label {
  font-size: 13px;
  font-weight: 700;
  color: #7a8599;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  #tst-root .tst-container {
    padding: 0 28px;
  }
}

@media (max-width: 960px) {
  #tst-root .tst-left {
    flex: 0 0 210px !important;
  }
  #tst-root .tst-card {
    flex: 0 0 calc(50% - 8px) !important;
  }
}

@media (max-width: 768px) {
  #tst-root {
    padding: 36px 0 0;
  }
  #tst-root .tst-container {
    padding: 0 20px;
  }
  #tst-root .tst-main-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }
  #tst-root .tst-left {
    flex: none !important;
    width: 100%;
    padding-bottom: 0;
  }
  #tst-root .tst-subtext {
    max-width: 100%;
  }
  #tst-root .tst-slider-area {
    width: 100%;
    padding-bottom: 24px;
  }
  #tst-root .tst-bottom-bar {
    padding: 14px 20px 18px;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  #tst-root .tst-container {
    padding: 0 16px;
  }
  #tst-root .tst-heading {
    font-size: clamp(26px, 7vw, 38px);
  }
  #tst-root .tst-card {
    flex: 0 0 calc(100% - 2px) !important;
  }
  #tst-root .tst-arrow-btn {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
  #tst-root .tst-bottom-bar {
    gap: 14px;
  }
}

@media (max-width: 400px) {
  #tst-root {
    padding: 28px 0 0;
  }
  #tst-root .tst-container {
    padding: 0 12px;
  }
  #tst-root .tst-card {
    padding: 16px 14px 12px;
  }
  #tst-root .tst-bottom-bar {
    flex-direction: column !important;
    gap: 10px;
    align-items: center;
    padding: 14px 12px 16px;
  }
  #tst-root .tst-bar-divider {
    width: 50px;
    height: 1.5px;
  }
  #tst-root .tst-arrow-btn {
    width: 38px;
    height: 38px;
  }
}

/* Booking from section  */
.ba-section *,
.ba-section *::before,
.ba-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ba-bg: #fdfdfc;
  --ba-white: #ffffff;
  --ba-navy: #1c2d4b;
  --ba-blue: #1a7fd4;
  --ba-orange: #f5a623;
  --ba-green: #22c55e;
  --ba-rose: #fb7185;
  --ba-purple: #a78bfa;
  --ba-border: #dde8f5;
  --ba-muted: #6b7a8d;
  --ba-shadow: 0 6px 28px rgba(14, 42, 74, 0.1);
  --ba-shadow-sm: 0 3px 14px rgba(14, 42, 74, 0.07);
}

.ba-section {
  position: relative;
  background: var(--ba-bg);
  overflow-x: clip;
  overflow-y: visible;
  padding: 52px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ba-bg-paw {
  position: absolute;
  pointer-events: none;
  font-size: 160px;
  opacity: 0.04;
  line-height: 1;
}
.ba-bg-paw--tl {
  top: -20px;
  left: -20px;
  color: var(--ba-orange);
  transform: rotate(-20deg);
}
.ba-bg-paw--br {
  bottom: 80px;
  right: -30px;
  color: var(--ba-blue);
  transform: rotate(12deg);
}

.ba-deco-heart {
  position: absolute;
  pointer-events: none;
  font-size: 20px;
  opacity: 0.2;
  animation: ba-float 5s ease-in-out infinite;
}
.ba-deco-heart--1 {
  top: 22%;
  left: 34%;
  color: var(--ba-rose);
  animation-delay: 0s;
}
.ba-deco-heart--2 {
  top: 56%;
  left: 5%;
  color: var(--ba-orange);
  animation-delay: 2s;
  font-size: 16px;
}

.ba-deco-paw {
  position: absolute;
  pointer-events: none;
  font-size: 16px;
  color: var(--ba-blue);
  opacity: 0.18;
  animation: ba-float 6s ease-in-out infinite;
}
.ba-deco-paw--1 {
  bottom: 130px;
  left: 26%;
  animation-delay: 1s;
}

@keyframes ba-float {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

.ba-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.05fr;
  gap: 0;
  align-items: end;
}

.ba-left-col {
  padding-bottom: 32px;
  padding-right: 20px;
}

.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(61, 150, 221, 0.1);
  border: 1.5px solid rgba(61, 150, 221, 0.22);
  color: var(--ba-blue);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.ba-badge-spark {
  color: var(--ba-orange);
  font-size: 12px;
  margin-left: 2px;
  animation: ba-spark 1.8s ease-in-out infinite;
}
@keyframes ba-spark {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(15deg);
  }
}

.ba-heading {
  font-family: "Chewy", cursive;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--ba-navy);
  line-height: 1.08;
  margin-bottom: 10px;
}
.ba-heading-orange {
  font-family: "Chewy", cursive;
  color: var(--ba-orange);
}
.ba-heading-heart {
  display: inline-block;
  font-size: 0.45em;
  color: var(--ba-blue);
  margin-left: 5px;
  vertical-align: middle;
  animation: ba-beat 2.2s ease-in-out infinite;
}
@keyframes ba-beat {
  0%,
  100% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.32);
  }
  55% {
    transform: scale(1.12);
  }
}

.ba-subtext {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ba-muted);
  margin-bottom: 22px;
  max-width: 260px;
}

.ba-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.ba-feat-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ba-feat-ic--blue {
  background: rgba(61, 150, 221, 0.12);
}
.ba-feat-ic--green {
  background: rgba(34, 197, 94, 0.12);
}
.ba-feat-ic--purple {
  background: rgba(167, 139, 250, 0.13);
}
.ba-feat-ic--rose {
  background: rgba(251, 113, 133, 0.12);
}
.ba-feat-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ba-navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.ba-feat-desc {
  font-size: 11.5px;
  color: var(--ba-muted);
  line-height: 1.4;
}

/* =============================================
         CENTER COL — FORM
      ============================================= */
.ba-center-col {
  padding: 0 10px;
  position: relative;
  z-index: 5;
}

.ba-form-card {
  background: var(--ba-white);
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: var(--ba-shadow);
  position: relative;
  z-index: 5;
}

.ba-form-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ba-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-form-title i {
  font-size: 15px;
  color: var(--ba-blue);
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.ba-row--full {
  grid-template-columns: 1fr;
}

.ba-field {
  border: 1.5px solid var(--ba-border);
  border-radius: 9px;
  background: #f8fbff;
  padding: 8px 11px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
  cursor: text;
  position: relative;
}
.ba-field:focus-within {
  border-color: var(--ba-blue);
  box-shadow: 0 0 0 3px rgba(61, 150, 221, 0.1);
  background: var(--ba-white);
}

.ba-field-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ba-navy);
  line-height: 1;
  pointer-events: none;
}
.ba-field-top i {
  font-size: 11px;
  color: var(--ba-blue);
  flex-shrink: 0;
}

.ba-field-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: var(--ba-navy);
  padding: 0;
  width: 100%;
}
.ba-field-input::placeholder {
  color: #b0bcc9;
}
.ba-field-input[type="date"] {
  color: #b0bcc9;
}
.ba-field-input[type="date"]:valid:not([value=""]) {
  color: var(--ba-navy);
}

/* =============================================
         CUSTOM DROPDOWN — NEW STYLING
      ============================================= */
.ba-field--select {
  cursor: pointer;
}
.ba-field--select .ba-field-top {
  pointer-events: none;
}

.ba-custom-select {
  position: relative;
  width: 100%;
}

.ba-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: var(--ba-navy);
  cursor: pointer;
  user-select: none;
  gap: 4px;
  min-height: 16px;
}
.ba-select-trigger.placeholder {
  color: #b0bcc9;
}

.ba-select-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ba-muted);
  font-size: 10px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.ba-custom-select.open .ba-select-arrow {
  transform: rotate(180deg);
  color: var(--ba-blue);
}

/* Dropdown panel */
.ba-select-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -11px;
  right: -11px;
  background: var(--ba-white);
  border: 1.5px solid var(--ba-border);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(14, 42, 74, 0.14),
    0 2px 8px rgba(14, 42, 74, 0.06);
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 220px;
  overflow-y: auto;
}

/* Scrollbar styling */
.ba-select-panel::-webkit-scrollbar {
  width: 4px;
}
.ba-select-panel::-webkit-scrollbar-track {
  background: transparent;
}
.ba-select-panel::-webkit-scrollbar-thumb {
  background: rgba(61, 150, 221, 0.25);
  border-radius: 10px;
}
.ba-select-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(61, 150, 221, 0.45);
}

.ba-custom-select.open .ba-select-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.ba-select-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ba-navy);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  border-radius: 0;
  position: relative;
}

.ba-select-option:first-child {
  border-radius: 10px 10px 0 0;
}
.ba-select-option:last-child {
  border-radius: 0 0 10px 10px;
}

.ba-select-option:hover {
  background: rgba(61, 150, 221, 0.07);
  color: var(--ba-blue);
}

.ba-select-option.selected {
  background: rgba(61, 150, 221, 0.1);
  color: var(--ba-blue);
  font-weight: 700;
}

.ba-select-option.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--ba-blue);
  margin-left: auto;
}

/* Divider between options */
.ba-select-option + .ba-select-option {
  border-top: 1px solid rgba(221, 232, 245, 0.5);
}

/* Option icon dot */
.ba-opt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ba-blue);
  opacity: 0;
  transition: opacity 0.15s;
}
.ba-select-option:hover .ba-opt-dot,
.ba-select-option.selected .ba-opt-dot {
  opacity: 1;
}

/* =============================================
         SUBMIT
      ============================================= */
.ba-submit {
  width: 100%;
  padding: 13px;
  background: var(--ba-orange);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  box-shadow: 0 5px 18px rgba(245, 166, 35, 0.38);
  transition:
    background 0.25s,
    transform 0.22s,
    box-shadow 0.25s;
}
.ba-submit:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 9px 26px rgba(245, 166, 35, 0.46);
}

.ba-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--ba-muted);
  margin-top: 9px;
}
.ba-secure i {
  color: var(--ba-green);
  font-size: 11px;
}

/* =============================================
         RIGHT COL
      ============================================= */
.ba-right-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -80px;
  z-index: 1;
}
.ba-dog-wrap {
  position: relative;
  width: 100%;
}
.ba-dog-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 700px;
}

.ba-services {
  position: absolute;
  top: 14px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-svc {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: 12px;
  padding: 8px 14px 8px 8px;
  box-shadow: var(--ba-shadow-sm);
  min-width: 150px;
  transition: transform 0.28s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.ba-svc:hover {
  transform: translateX(-4px);
}
.ba-svc-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ba-svc-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ba-navy);
  line-height: 1.3;
}
.ba-svc-sub {
  font-size: 10px;
  color: var(--ba-muted);
}

.ba-happy {
  position: absolute;
  bottom: 22px;
  left: 95px;
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--ba-shadow);
  white-space: nowrap;
  z-index: 8;
}
.ba-happy-avatars {
  display: flex;
}
.ba-happy-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ba-white);
  object-fit: cover;
  margin-left: -7px;
}
.ba-happy-avatars img:first-child {
  margin-left: 0;
}
.ba-happy-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--ba-navy);
  line-height: 1.1;
}
.ba-happy-lbl {
  font-size: 10.5px;
  color: var(--ba-muted);
  font-weight: 500;
}
.ba-happy-stars {
  font-size: 10px;
  color: var(--ba-orange);
  letter-spacing: 1px;
  margin-top: 1px;
}

/* =============================================
         BOTTOM STRIP
      ============================================= */
.ba-strip {
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: 16px;
  margin-top: 28px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  box-shadow: var(--ba-shadow-sm);
  position: relative;
  z-index: 2;
}
.ba-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ba-info-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ba-info-label {
  font-size: 11px;
  color: var(--ba-blue);
  font-weight: 700;
  margin-bottom: 3px;
}
.ba-info-val {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ba-navy);
  line-height: 1.55;
}
.ba-info-val a {
  color: var(--ba-navy);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.ba-info-val a:hover {
  color: var(--ba-blue);
}
.ba-strip .ba-info + .ba-info {
  border-left: 1px solid var(--ba-border);
  padding-left: 20px;
}
.ba-wc-wrap {
  position: relative;
}
.ba-wc-paw {
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 44px;
  color: var(--ba-blue);
  opacity: 0.06;
  pointer-events: none;
}

.ba-tagline {
  text-align: center;
  padding: 18px 0 24px;
  font-size: 14px;
  color: var(--ba-muted);
}
.ba-tagline-prefix {
  color: #1c2d4b;
  font-style: normal;
}
.ba-tagline-brand {
  font-family: "Chewy", cursive;
  color: #1c2d4b;
  font-style: normal;
  font-size: 16px;
}
.ba-tagline-italic {
  font-style: italic;
  color: var(--ba-blue);
}
.ba-tagline-heart {
  display: inline-block;
  color: var(--ba-rose);
  font-size: 15px;
  margin-left: 4px;
  animation: ba-beat 2.2s ease-in-out infinite;
}

/* =============================================
         ANIMATIONS
      ============================================= */
.ba-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.58s;
  transition-timing-function: cubic-bezier(0.22, 0.68, 0, 1.15);
}
.ba-fade-up {
  transform: translateY(24px);
}
.ba-fade-left {
  transform: translateX(-20px);
}
.ba-fade-right {
  transform: translateX(20px);
}
.ba-fade-scale {
  transform: scale(0.94);
}
.ba-d1 {
  transition-delay: 0.05s;
}
.ba-d2 {
  transition-delay: 0.12s;
}
.ba-d3 {
  transition-delay: 0.19s;
}
.ba-d4 {
  transition-delay: 0.26s;
}
.ba-d5 {
  transition-delay: 0.33s;
}
.ba-d6 {
  transition-delay: 0.4s;
}
.ba-d7 {
  transition-delay: 0.47s;
}
.ba-d8 {
  transition-delay: 0.54s;
}
.ba-d9 {
  transition-delay: 0.61s;
}
.ba-d10 {
  transition-delay: 0.68s;
}
.ba-section.ba-visible .ba-anim {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
         RESPONSIVE
      ============================================= */
@media (max-width: 1080px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ba-right-col {
    display: none;
  }
  .ba-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-center-col {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .ba-section {
    padding: 40px 0 0;
  }
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ba-left-col {
    padding-right: 0;
    padding-bottom: 0;
  }
  .ba-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
  }
  .ba-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .ba-wrap {
    padding: 0 16px;
  }
  .ba-heading {
    font-size: clamp(26px, 7vw, 34px);
  }
  .ba-form-card {
    padding: 20px 14px 16px;
  }
  .ba-row {
    gap: 8px;
  }
  .ba-strip {
    padding: 14px 16px;
  }
}
@media (max-width: 480px) {
  .ba-section {
    padding: 30px 0 0;
  }
  .ba-wrap {
    padding: 0 14px;
  }
  .ba-heading {
    font-size: 26px;
  }
  .ba-subtext {
    font-size: 12.5px;
  }
  .ba-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
  .ba-form-card {
    padding: 18px 12px 16px;
    border-radius: 16px;
  }
  .ba-submit {
    font-size: 13px;
    padding: 12px;
  }
  .ba-strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 16px;
  }
  .ba-strip .ba-info + .ba-info {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--ba-border);
    padding-top: 12px;
    margin-top: 12px;
  }
  .ba-info-ic {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .ba-tagline {
    font-size: 13px;
    padding: 14px 0 18px;
  }
}
@media (max-width: 380px) {
  .ba-wrap {
    padding: 0 12px;
  }
  .ba-heading {
    font-size: 24px;
  }
  .ba-row {
    grid-template-columns: 1fr;
  }
  .ba-strip {
    padding: 12px 14px;
  }
  .ba-form-card {
    padding: 16px 12px 14px;
  }
}
@media (max-width: 768px) {
  .ba-heading br {
    display: none;
  }
}

/* popup form  */
.ap-overlay{
  position:fixed;inset:0;z-index:9999;
  display:flex;align-items:center;justify-content:center;
  padding:16px;
  pointer-events:none;opacity:0;
  transition:opacity .28s ease;
}
.ap-overlay.ap-open{opacity:1;pointer-events:auto;}

.ap-backdrop{
  position:absolute;inset:0;
  background:rgba(15,23,42,.65);
  backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px);
}

/* ── Modal box ── */
.ap-modal{
  position:relative;z-index:1;
  background:#fff;border-radius:24px;
  width:100%;max-width:940px;
  max-height:92vh;overflow:hidden;
  display:grid;grid-template-columns:1fr 1.12fr;
  box-shadow:0 40px 100px rgba(0,0,0,.25),0 4px 16px rgba(0,0,0,.08);
  transform:translateY(28px) scale(.96);
  transition:transform .38s cubic-bezier(.34,1.5,.64,1);
}
.ap-overlay.ap-open .ap-modal{transform:translateY(0) scale(1);}

/* ── Close ── */
.ap-close{
  position:absolute;top:14px;right:14px;z-index:20;
  width:38px;height:38px;border-radius:50%;
  background:#fff;border:1.5px solid #e5e7eb;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  transition:background .18s,transform .15s;
}
.ap-close:hover{background:#f3f4f6;transform:scale(1.08);}
.ap-close i{font-size:14px;color:#374151;}

/* ══════════════════════
   LEFT PANEL
══════════════════════ */
.ap-left{
  background:#fbf9f9;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  min-height:540px;
}
.ap-left__content{
  padding:36px 28px 16px;
  position:relative;z-index:2;
  flex-shrink:0;
}
.ap-hero-title{
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:clamp(20px,2.4vw,27px);
  font-weight:800;color:#1c2d4b;
  line-height:1.3;margin:0 0 10px;
}
.ap-blue{color:#1a7fd4;}
.ap-heart-icon{color:#f5a623;font-size:20px;vertical-align:middle;margin-left:4px;}
.ap-hero-desc{
  font-size:13px;color:#4b5563;
  line-height:1.72;margin:0 0 22px;max-width:260px;
}
.ap-svc-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:13px;
}
.ap-svc-list li{display:flex;align-items:center;gap:13px;}
.ap-svc-ico{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.ap-svc-ico i{font-size:14px;color:#fff;}
.ap-svc-ico--blue   {background:#3b82f6;}
.ap-svc-ico--purple {background:#8b5cf6;}
.ap-svc-ico--green  {background:#22c55e;}
.ap-svc-ico--orange {background:#f59e0b;}
.ap-svc-text{display:flex;flex-direction:column;gap:1px;}
.ap-svc-text strong{font-size:13px;font-weight:700;color:#1c2d4b;}
.ap-svc-text span{font-size:11.5px;color:#6b7280;}

/* Dog image */
.ap-dog-wrap{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:1;line-height:0;
}
.ap-dog-img{
  width:100%;height:auto;
  display:block;
  object-fit:contain;object-position:bottom center;
}

/* ══════════════════════
   RIGHT PANEL
══════════════════════ */
.ap-right{
  overflow-y:auto;
  padding:32px 30px 28px;
  background:#fff;
  display:flex;flex-direction:column;
  position:relative;
}
.ap-right::-webkit-scrollbar{width:3px;}
.ap-right::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:4px;}

/* ── Form card ── */
.ap-form-card{
  flex:1;
  display:flex;
  flex-direction:column;
}

/* ── Form title ── */
.ap-form-title{
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:17px;font-weight:800;
  color:#1c2d4b;
  display:flex;align-items:center;gap:9px;
  margin-bottom:20px;
}
.ap-form-title i{color:#1a7fd4;font-size:17px;}

/* ── Rows ── */
.ap-frow{
  display:grid;grid-template-columns:1fr 1fr;
  gap:12px;margin-bottom:12px;
}
.ap-frow--full{grid-template-columns:1fr;}

/* ── Field ── */
.ap-ffield{display:flex;flex-direction:column;gap:6px;}
.ap-ffield-top{
  font-size:12px;font-weight:700;
  color:#374151;
  display:flex;align-items:center;gap:6px;
}
.ap-ffield-top i{color:#1a7fd4;font-size:12px;}

/* ── Input ── */
.ap-finput{
  width:100%;
  padding:11px 14px;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:13px;color:#111827;
  background:#fafafa;
  outline:none;
  box-sizing:border-box;
  transition:border-color .18s,box-shadow .18s,background .18s;
}
.ap-finput:focus{
  border-color:#1a7fd4;
  background:#fff;
  box-shadow:0 0 0 3px rgba(26,127,212,.1);
}
.ap-finput.ap-ferror{
  border-color:#ef4444!important;
  box-shadow:0 0 0 3px rgba(239,68,68,.1)!important;
}
.ap-finput::placeholder{color:#9ca3af;}

/* ── Custom Select ── */
.ap-fselect{position:relative;}
.ap-fselect-trigger{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 14px;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:13px;color:#111827;
  background:#fafafa;
  cursor:pointer;
  transition:border-color .18s,box-shadow .18s;
  user-select:none;
}
.ap-fselect-trigger.ap-fplaceholder span:first-child{color:#9ca3af;}
.ap-fselect-trigger:hover{border-color:#1a7fd4;}
.ap-fselect.ap-fopen .ap-fselect-trigger{
  border-color:#1a7fd4;
  background:#fff;
  box-shadow:0 0 0 3px rgba(26,127,212,.1);
}
.ap-fselect.ap-ferror .ap-fselect-trigger{
  border-color:#ef4444!important;
  box-shadow:0 0 0 3px rgba(239,68,68,.1)!important;
}
.ap-fselect-arrow{transition:transform .2s;}
.ap-fselect.ap-fopen .ap-fselect-arrow{transform:rotate(180deg);}
.ap-fselect-arrow i{font-size:11px;color:#6b7280;}

.ap-fselect-panel{
  position:absolute;top:calc(100% + 4px);left:0;right:0;
  background:#fff;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  z-index:200;overflow:hidden;
  display:none;
}
.ap-fselect.ap-fopen .ap-fselect-panel{display:block;}

.ap-fselect-option{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;
  font-size:13px;color:#374151;
  cursor:pointer;
  transition:background .15s;
}
.ap-fselect-option:hover{background:#f0f7ff;}
.ap-fselect-option.ap-fsel{
  background:#f0f7ff;color:#1a7fd4;font-weight:600;
}
.ap-fopt-dot{
  width:7px;height:7px;border-radius:50%;
  background:#1a7fd4;flex-shrink:0;
  opacity:0;transition:opacity .15s;
}
.ap-fselect-option.ap-fsel .ap-fopt-dot{opacity:1;}

/* ── Error message ── */
.ap-ferr-msg{
  font-size:11px;color:#ef4444;font-weight:600;
  margin-top:3px;display:none;
}
.ap-ferr-msg.ap-fshow{display:block;}

/* ── Submit button ── */
.ap-fsubmit{
  width:100%;
  margin-top:18px;
  padding:14px 20px;
  background:#f5a623;
  color:#fff;
  border:none;border-radius:50px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:15px;font-weight:800;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:9px;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 6px 24px rgba(245,166,35,.4);
  position:relative;overflow:hidden;
}
.ap-fsubmit:hover:not(:disabled){
  background:#e09210;transform:translateY(-1px);
  box-shadow:0 10px 30px rgba(245,166,35,.5);
}
.ap-fsubmit:disabled{
  background:#d1d5db;cursor:not-allowed;
  box-shadow:none;transform:none;
}
.ap-fsubmit .ap-fspinner{
  width:16px;height:16px;
  border:2.5px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  border-radius:50%;
  animation:ap-fspin .7s linear infinite;
  display:none;flex-shrink:0;
}
.ap-fsubmit.ap-floading .ap-fspinner{display:block;}
.ap-fsubmit.ap-floading .ap-fbtn-icon{display:none;}
@keyframes ap-fspin{to{transform:rotate(360deg);}}

/* ── Secure text ── */
.ap-fsecure{
  text-align:center;
  font-size:11.5px;color:#6b7280;
  margin-top:10px;
  display:flex;align-items:center;justify-content:center;gap:5px;
}
.ap-fsecure i{color:#22c55e;font-size:11px;}

/* ══════════════════════
   SUCCESS SCREEN
══════════════════════ */
.ap-success{
  display:none;
  flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:40px 24px;
  flex:1;
  gap:16px;
}
.ap-success.ap-fshow{display:flex;}
.ap-success__icon{
  width:72px;height:72px;border-radius:50%;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(34,197,94,.3);
  animation:ap-fpop .5s cubic-bezier(.34,1.8,.64,1) both;
}
.ap-success__icon i{font-size:30px;color:#fff;}
@keyframes ap-fpop{
  from{transform:scale(0);opacity:0;}
  to{transform:scale(1);opacity:1;}
}
.ap-success h3{
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:20px;font-weight:800;color:#1c2d4b;margin:0;
}
.ap-success p{
  font-size:13.5px;color:#6b7280;
  line-height:1.6;margin:0;max-width:280px;
}
.ap-success__info{
  background:#f0f9ff;border:1.5px solid #bae6fd;
  border-radius:12px;padding:14px 20px;
  font-size:12.5px;color:#0369a1;font-weight:600;
  width:100%;max-width:320px;
}
.ap-success__close-btn{
  margin-top:6px;
  padding:11px 32px;
  background:#f5a623;color:#fff;
  border:none;border-radius:50px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:14px;font-weight:700;
  cursor:pointer;transition:background .2s;
}
.ap-success__close-btn:hover{background:#e09210;}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media(max-width:860px){
  .ap-modal{max-width:680px;grid-template-columns:.8fr 1.2fr;}
  .ap-left__content{padding:28px 20px 14px;}
  .ap-hero-title{font-size:20px;}
  .ap-hero-desc{font-size:12px;max-width:220px;}
  .ap-svc-text strong{font-size:12px;}
  .ap-svc-text span{font-size:11px;}
  .ap-right{padding:24px 22px 20px;}
}

@media(max-width:640px){
  .ap-overlay{padding:12px;align-items:center;}
  .ap-modal{
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
    border-radius:20px;
    max-height:92vh;
    overflow-y:auto;overflow-x:hidden;
  }
  .ap-modal::before{display:none;}
  .ap-left{
    display:flex!important;flex-direction:row;
    align-items:stretch;min-height:auto;
    overflow:hidden;border-radius:0;background:#fbf9f9;
  }
  .ap-left__content{
    flex:1;padding:24px 16px 20px;z-index:2;
    display:flex;flex-direction:column;justify-content:flex-start;
  }
  .ap-svc-list{display:none;}
  .ap-hero-title{font-size:20px;margin-bottom:8px;}
  .ap-hero-desc{font-size:12.5px;max-width:100%;}
  .ap-dog-wrap{
    position:relative;width:48%;flex-shrink:0;
    bottom:auto;left:auto;right:auto;
    align-self:stretch;
    display:flex;align-items:flex-end;justify-content:center;overflow:hidden;
  }
  .ap-dog-img{width:100%;height:100%;object-fit:cover;object-position:center bottom;display:block;}
  .ap-close{top:12px;right:12px;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.15);z-index:30;}
  .ap-right{padding:24px 18px 28px;border-radius:0;background:#fff;}
  .ap-form-title{font-size:16px;margin-bottom:16px;}
  .ap-frow{grid-template-columns:1fr 1fr;gap:10px;}
  .ap-finput{font-size:13px;padding:10px 12px;}
  .ap-fselect-trigger{font-size:13px;padding:10px 12px;}
}

@media(max-width:400px){
  .ap-left__content{padding:20px 14px 16px;}
  .ap-hero-title{font-size:17px;}
  .ap-dog-wrap{width:44%;}
  .ap-frow{grid-template-columns:1fr 1fr;gap:8px;}
  .ap-right{padding:20px 14px 24px;}
}

@media(max-width:340px){
  .ap-frow{grid-template-columns:1fr;}
}
