/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(120deg, var(--pink-strong), var(--pink-deep));
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 127, 168, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(255, 127, 168, 0.75);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(255, 127, 168, 0.5);
}

.btn-ghost {
  background: rgba(255, 238, 245, 0.9);
  color: rgba(60, 36, 51, 0.9);
  border: 1px solid rgba(255, 127, 168, 0.35);
  box-shadow: 0 10px 26px rgba(114, 57, 87, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 244, 249, 0.98);
  transform: translateY(-1px);
}

/* Tiny pill dots */

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink-strong));
  box-shadow: 0 0 0 4px rgba(255, 127, 168, 0.22);
}

/* Paw icon – simple but cute */

.paw-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink-strong));
  position: relative;
  box-shadow: 0 4px 10px rgba(147, 61, 98, 0.35);
  animation: wiggle 4s ease-in-out infinite;
}

.paw-icon::before,
.paw-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: inherit;
  border-radius: 50%;
  top: -4px;
  box-shadow:
    -7px -2px 0 -2px inherit,
    7px -2px 0 -2px inherit;
}

/* Soft badge */

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 238, 245, 0.96)
  );
  font-size: 11px;
  color: var(--text-soft);
  box-shadow: 0 8px 22px rgba(114, 57, 87, 0.18);
}

/* Cards */

.card-soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 249, 0.98));
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(114, 57, 87, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
}

/* Glow stroke for some cards / hero */

.card-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Feature cards */

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 249, 0.98));
  border-radius: 22px;
  padding: 18px 16px 16px;
  box-shadow: 0 12px 32px rgba(114, 57, 87, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.85);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(114, 57, 87, 0.3);
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-soft);
}

.feature-image {
  width: 100%;
  border-radius: 0 0 22px 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: max-height 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}

.feature-card:hover .feature-image {
  max-height: 450px;
  margin-top: 5px;
  opacity: 1;
  transform: translateY(0);
}

/* Hero-specific bits reused on many pages */

.hero-tag {
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-highlight {
  background: linear-gradient(90deg, var(--pink-strong), var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(60, 36, 51, 0.82);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(60, 36, 51, 0.65);
}

/* CTA strip */

.cta-strip {
  margin-top: 50px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 244, 248, 0.98)
  );
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 52px rgba(143, 78, 110, 0.3);
}

.cta-strip p {
  font-size: 13px;
  max-width: 480px;
  color: var(--text-soft);
}

/* Small sparkle accent for later if needed */

.sparkle-accent {
  position: relative;
}

.sparkle-accent::after {
  content: "✦";
  position: absolute;
  top: -10px;
  right: -12px;
  font-size: 12px;
  color: var(--pink-strong);
  opacity: 0.75;
  animation: twinkle 2.8s ease-in-out infinite;
}

/* Floating WhatsApp / Call widget */

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-family: var(--font-body);
}

/* Label bubble above buttons (optional but cute) */
.floating-contact-label {
  background: rgba(255, 248, 241, 0.98);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(60, 36, 51, 0.8);
  box-shadow: 0 10px 24px rgba(114, 57, 87, 0.26);
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.floating-contact-label span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink-strong), var(--pink-deep));
}

/* The round buttons */

.floating-contact-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(114, 57, 87, 0.45);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
  position: relative;
}

/* WhatsApp style */

.floating-contact-btn.whatsapp {
  background: radial-gradient(circle at 30% 30%, #ffffff, #25d366);
  color: #ffffff;
}

/* Phone style */

.floating-contact-btn.phone {
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--pink-strong));
  color: #ffffff;
}

/* Simple icon text */

.floating-contact-btn span.icon {
  font-size: 20px;
}

/* Hover / active */

.floating-contact-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 46px rgba(114, 57, 87, 0.55);
  filter: brightness(1.05);
}

.floating-contact-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 12px 28px rgba(114, 57, 87, 0.45);
}

/* Little pulse behind main button (optional, on WhatsApp) */

.floating-contact-btn.whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 0.7;
  animation: contact-pulse 2.4s ease-out infinite;
}

/* Responsive tweak */

@media (max-width: 640px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}

/* Pulse animation */

@keyframes contact-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ===========================
   PREMIUM FOOTER
   =========================== */

.deluxe-footer {
  background: linear-gradient(180deg, #fff7f4 0%, #ffeef8 100%);
  padding: 60px 0 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CTA Box */
.footer-cta {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(114, 57, 87, 0.25);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-cta h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.footer-cta p {
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Paw Divider */
.footer-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-divider .paw {
  font-size: 28px;
  opacity: 0.7;
  filter: drop-shadow(0 2px 6px rgba(114,57,87,0.2));
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  text-align: left;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.footer-section p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

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

.footer-links li a {
  color: var(--text-dark);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease;
  display: block;
}

.footer-links li a:hover {
  color: var(--pink-strong);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  transition: transform 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.footer-social img:hover {
  opacity: 1;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(60,36,51,0.12);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: underline;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--pink-strong);
}

/* Responsive */
@media (max-width: 768px) {
  .deluxe-footer {
    padding: 40px 0 30px;
    margin-top: 40px;
  }

  .footer-cta {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .footer-cta h3 {
    font-size: 22px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .footer-divider {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-cta {
    padding: 20px 18px;
  }

  .footer-cta h3 {
    font-size: 20px;
  }

  .footer-cta p {
    font-size: 13px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }
}

/* ===========================
   SITEMAP STYLES
   =========================== */

.sitemap-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: left;
  margin-top: 40px;
}

.sitemap-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.sitemap-links {
  list-style: none;
  padding: 0;
}

.sitemap-links li {
  margin-bottom: 8px;
}

.sitemap-links li a {
  color: var(--text-dark);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sitemap-links li a:hover {
  color: var(--pink-strong);
}

/* Mobile/Tablet adjustments for sitemap */
@media (max-width: 900px) {
  .sitemap-grid {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .sitemap-grid {
    gap: 20px;
  }
  .sitemap-col h4 {
    font-size: 16px;
  }
  .sitemap-links li a {
    font-size: 13px;
  }
}

/* Breadcrumb */

.breadcrumb {
  padding: 5px 0;
  background: rgba(255, 248, 241, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--text-soft);
  opacity: 0.6;
}

.breadcrumb a {
  color: var(--pink-strong);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb a:hover {
  color: var(--pink-deep);
}

/* Mobile adjustments for breadcrumb */
@media (max-width: 600px) {
  .breadcrumb ol {
    font-size: 12px;
    gap: 6px;
  }
  .breadcrumb li:not(:last-child)::after {
    margin-left: 6px;
  }
}

/* FAQ */

.faq-list {
  margin-top: 30px;
}

.faq-list details {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(114, 57, 87, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.25s ease;
}

.faq-list summary:hover {
  background: rgba(255, 244, 248, 0.5);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--pink-strong);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.faq-list p {
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
