/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fffafc;
  font-family: 'Open Sans', sans-serif;
  color: #333;

}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}


/* Navbar */
.navbar-custom {
  background-color: #faeef8 !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid #a894a4;
  transition: background-color 0.3s ease;
  padding: 0.8rem 1.5rem;
}

.navbar-custom .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #a894a4 !important;
  font-weight: 600;
}

.navbar-custom .nav-link {
  color: #a894a4;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 1rem;
}

.navbar-custom .nav-link:hover {
  color: #a894a4 !important;
  text-shadow: 0 0 5px rgba(230, 90, 143, 0.3);
  text-decoration: underline;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: #a894a4;
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #a894a4;
  font-size: 1.3rem;
}

@media (max-width: 576px) {
  .social-icons {
    justify-content: center;
    margin-top: 1rem;
    order: 2;
    width: 100%;
  }

  .navbar-custom .nav-link {
    margin-left: 0;
    text-align: center;
  }
}

.navbar-custom .nav-link.active {
  color: #a894a4 !important;
  text-shadow: 0 0 5px rgba(230, 90, 143, 0.3);
  text-decoration: underline;
}

/* Card Styling */
.card {
  border: 2px solid #a894a4 !important; /* pink outline */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-body {
  background-color: #faeef8 !important; /* light pink background */
  color: #faeef8 !important; /* main text color */
  padding: 1.5rem;
  border-radius: 0 0 10px 10px; /* rounded bottom edges */
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Heading */
.card-title {
  color: #a894a4 !important;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid #a894a4;
  padding-bottom: 4px;
}

/* Subsection Headings */
.card-body h6 {
  color: #a894a4 !important;
  font-size: 1rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Card Paragraphs */
.card-text {
  color: #a894a4 !important;
}

/* Bullet List */
.card-body ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #a894a4 !important;
}

.card-body li {
  margin-bottom: 0.4rem;
}

.card-body strong {
  color: #a894a4 !important;
}

/* Optional: Horizontal rule for section breaks */
.card-body hr {
  border: none;
  border-top: 2px solid #a894a4;
  margin: 1rem 0;
}



/* Logo */
.header-logo {
  height: 50px;
  width: auto;
}

/* Header Background */
header {
  background: url('images/salon/salon_right.jpeg') no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 6rem 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 238, 247, 0.2); /* optional overlay */
  z-index: -1;
}

/* Hero Section */
.hero-section {
  background-color: #faeef8;
  padding: 2rem 1rem;
  
   position: relative;
  overflow: hidden;
}

.benefit {
  display: flex;
  align-items: center; /* vertical center */
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #a894a4;
  line-height: 1.4;
}

.benefit-icon {
  width: 20px;
  height: auto;
  margin-right: 1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.grooming-benefit {
  display: flex;
  align-items: center; /* vertical center */
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #a894a4;
  line-height: 1.4;
}

.grooming-bottom-btn {
text-align: center;
    background-color: #faeef8;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(168, 148, 164, 0.15);
    border: 2px solid #a894a4;
	margin-top: 1.5rem;
}

.grooming-benefit-icon {
  width: 30px;
  height: auto;
  margin-right: 1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.bonus {
  font-family: 'Playfair Display', cursive;
  font-size: 1.3rem;
  color: #a894a4;
  margin-top: 2rem;
  margin-left: 2.5rem;
}

.grooming-bonus {
  font-family: 'Playfair Display', cursive;
  font-size: 1.3rem;
  color: #a894a4;
  margin-top: 2rem;
  text-align: center;
}

.salon-photo {
  max-width: 50%;
  height: auto;
  border: 2px solid #a894a4; /* pink border */
  border-radius: 10px;       /* maintain rounded corners */
  	position: relative;
	z-index: 10 !important; /* You already tried this — now it'll work */
}

.container.grooming-wide {
  max-width: 75%; /* or 90%, or 1400px depending on your goal */
}

.mid-groom-photo {
  max-width: 60% !important;
  height: 70%;
  border: 2px solid #a894a4; /* pink border */
  border-radius: 10px;       /* maintain rounded corners */
}


.hero-image {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e65a8f;
  text-shadow:
  -1px -1px 0 #000,
   1px -1px 0 #000,
  -1px  1px 0 #000,
   1px  1px 0 #000;
}

/* Paw Print */
.paw-print {
  width: 90px;
  height: 90px;
  background: url('images/clear-paw.png') no-repeat center center / contain;
  animation: bounce 2s infinite ease-in-out;
  margin: 1.5rem auto 0;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Services */
#services {
  padding: 2rem 1rem;
  background-color: #ffffff;
}

.site-footer {
  background-color: #faeef8;
  border-top: 2px solid #a894a4;
  color: #a894a4;
  padding: .25rem .25rem .25rem;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 100%;
  max-width: 300px;
  box-sizing: border-box;
}

.footer-address p,
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #a894a4;
  margin: 0.5rem 0 0;
}

.site-footer h4 {
  margin: 1rem 0 0.5rem;
  color: #a894a4;
  font-size: 0.9rem;
  text-decoration: underline;
}

.footer-line-wrapper {
  width: 100%;
  max-width: 300px;
  margin: 0.125rem auto 0.5rem;
}

.footer-line {
  all: unset;
  display: block;
  height: 2px;
  width: 100%;
  background-color: #a894a4;
}

.footer-bottom {
  position: relative; /* for absolute positioning inside */
  display: flex;
  justify-content: flex-start; /* logos on left */
  align-items: center;
  margin-bottom: 0.125rem;
  padding: 0 1rem;
  min-height: 40px; /* give some height so copyright centers nicely */
}

.footer-accreditations-left {
  display: flex;
  gap: 10px;
  z-index: 1; /* so logos are above copyright if overlap */
}

.footer-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.9rem;
  color: #a894a4;
  white-space: nowrap; /* prevent line break */
  z-index: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    position: static;  /* remove absolute positioning effect on copyright */
    min-height: auto;
  }

  .footer-copy {
    position: static;
    transform: none;
    margin-bottom: 0.5rem;
    white-space: normal; /* allow wrapping */
    text-align: center;
    z-index: auto;
  }

  .footer-accreditations-left {
    margin-top: 0;
    opacity: 0.5;
  }
}

.footer-accreditations-left img {
  height: 40px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}


.brand-pink {
  color: #a894a4 !important;
}

.brand-pink-underline {
  color: #a894a4 !important;
  text-decoration: underline;
}

.brand-faded-pink {
  color: #a894a4 !important;
}

.no-underline {
  text-decoration: none;
  color: inherit; /* optional: keeps it same as surrounding text */
  font-size: 1.2rem;
}

.grooming-sub-title-text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #a894a4;
}


/* Override Bootstrap mt-5 */
.mt-5 {
  margin-top: 1rem !important;
}

.img-small {
  max-width: 60% !important;
  height: auto !important;
}


.floating-dog-icon {
  position: fixed;
  bottom: 1%;
  right: 1%;
  width: 50px;
  height: auto;
  animation: float 2s ease-in-out infinite;
  z-index: 100;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}


.hero-header {
  background: url('images/salon/salon_wallpaper.png') no-repeat center center;
  background-size: cover;
  background-position: center -190px; /* for large screens */
  padding: 6rem 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  height: 650px;
}

/* Adjust for small screens */
@media (max-width: 768px) {
  .hero-header {
    background-position: center center; /* reset for mobile */
	width: 100%;
  height: 90%;
  }
}
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-header * {
  position: relative;
  z-index: 2;
}

.circle-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: rgba(250,238,248,0.65); /* soft pink */
  border-radius: 50%;
  border: 5px solid #a894a4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.circle-logo {
  width: 90%;
  height: 90%;
  object-fit: cover; /* Ensures it fills the circle */
}

.circle-overlay h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a894a4;
}

.circle-overlay p {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.circle-overlay a.btn {
  background-color: #a894a4;
  border: none;
  color: white;
}

 .navbar-toggler {
    border: none !important;
    background: transparent !important;
  }

  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
	
  }

  .navbar-toggler i {
    color: #a894a4 !important;
   font-size: 2.5rem !important;
  }

.page-section {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease-in-out, visibility 0.4s;
  z-index: 0;
  
}

.page-section.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.intro-bubble {
  border: 2px solid #a894a4;       /* Pink outline */
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.5rem;
  color: #a894a4;
  background-color: transparent;   /* Transparent center */
  margin-left: 1.9rem;
  display: inline-block;
  font-weight: bold;
  line-height: 1.2;
}

.toggle-btn.btn-full-width {
  width: 100%;
  background-color: #faeef8;
  color: #a894a4;
  border-color: #a894a4;
  font-weight: 600;
}
.toggle-btn.btn-full-width:hover {
  background-color: #faeef8;
  border-color: #a894a4;
  color: #a894a4;
}

.bg-light-pink {
  background-color: #faeef8;
}

.pink-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #a894a4;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(250, 220, 230, 0.2); /* optional */
}

.enquiry-section {
  background-color: #fff;
  padding: 3rem 1rem;
}

.enquiry-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: bold;
  color: #a894a4;
  margin-bottom: 1rem;
  text-decoration: underline;
}

.enquiry-subtext {
  font-size: 1.25rem;
  color: #a894a4;
  line-height: 1.4;
}

.enquiry-subtext a {
  color: #a894a4;
  text-decoration: none;
}

.enquiry-subtext a:hover {
  text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #a894a4;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
}

.btn-brand-pink {
  background-color: transparent !important;
  color: #a894a4 !important;
  border: 2px solid #a894a4 !important;
  border-radius: 2rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: bold !important;
  font-size: 1.2rem !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  
}

.btn-brand-pink-no-hover {
  background-color: transparent !important;
  color: #a894a4 !important;
  border: 2px solid #a894a4 !important;
  border-radius: 2rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: bold !important;
  font-size: 1.2rem !important;
}

.btn-brand-pink:hover {
  background-color: #a894a4 !important;
  color: white !important;
}
.pink-border:focus {
  border-color: #a894a4 !important;
  box-shadow: 0 0 5px rgba(230, 90, 143, 0.3) !important;
  outline: none;
}

.teeth-cleaning {
  background: #fffff;
  padding: 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.teeth-cleaning .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #a894a4 !important;
  text-decoration: underline;
}

.teeth-cleaning .section-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.teeth-cleaning .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.teeth-cleaning .column {
  flex: 1 1 300px;
  max-width: 700px;
}

.teeth-cleaning .info-box {
  background: #faeef8;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #a894a4;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.teeth-cleaning .info-box h3 {
  color: #a894a4;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-decoration: underline;
}

.teeth-cleaning .info-box p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #a894a4;
}

.teeth-cleaning ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.teeth-cleaning li {
  margin-bottom: 8px;
  padding-left: 1.5em;
  position: relative;
  font-size: 1.25rem;
  color: #a894a4;
}

.teeth-cleaning li::before {
  content: "✔️ ";
  position: absolute;
  left: 0;
}

.centered-cta {
  text-align: center;
  font-size: 1rem;
  margin-top: 30px;
  color: #b35d84;
}

.grooming-into-section {
  background-color: #fff;
  padding: 3rem 1rem;
}

.grooming-into-section p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #a894a4;
}

.grooming-info  {
	  background-color: #faeef8;
  padding: 2rem 1rem;
  
   position: relative;
  overflow: hidden;
}

.grooming-info p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #a894a4;
}

.paw-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.paw-bg .paw {
  position: absolute;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 4vw;
  color: #e4b1c3;
  opacity: 0.15;
  transition: transform 0.3s ease;
}

/* CSS Variables for consistent spacing */
:root {
  --start-left: -2vw;
  --start-bottom: 4vh;
  
   --start-left-2: 2vw;
  --start-bottom-2: -4vh;
  
  --step-left: 11vh;       /* horizontal gap */
  --base-bottom: 0vh;
  --offset-bottom: 2vh;   /* vertical stagger */
  
  --test-left: -2vw;
  --test-bottom: -3vh;
}


.paw.step-1  { left: var(--start-left);  bottom: var(--start-bottom);  transform: rotate(70deg); }
.paw.step-2  { left: var(--start-left-2);  bottom: var(--start-bottom-2); transform: rotate(70deg); }
.paw.step-3  { left: calc(var(--start-left) + var(--step-left) * 1);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 1);  transform: rotate(70deg); }
.paw.step-4  { left: calc(var(--start-left-2) + var(--step-left) * 1);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 1);  transform: rotate(70deg); }
.paw.step-5  { left: calc(var(--start-left) + var(--step-left) * 2);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 2);  transform: rotate(70deg); }
.paw.step-6  { left: calc(var(--start-left-2) + var(--step-left) * 2);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 2);  transform: rotate(70deg); }
.paw.step-7  { left: calc(var(--start-left) + var(--step-left) * 3);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 3);  transform: rotate(70deg); }
.paw.step-8  { left: calc(var(--start-left-2) + var(--step-left) * 3);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 3);  transform: rotate(70deg); }
.paw.step-9  { left: calc(var(--start-left) + var(--step-left) * 4);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 4);  transform: rotate(70deg); }
.paw.step-10  { left: calc(var(--start-left-2) + var(--step-left) * 4);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 4);  transform: rotate(70deg); }
.paw.step-11  { left: calc(var(--start-left) + var(--step-left) * 5);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 5);  transform: rotate(70deg); }
.paw.step-12  { left: calc(var(--start-left-2) + var(--step-left) * 5);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 5);  transform: rotate(70deg); }
.paw.step-13  { left: calc(var(--start-left) + var(--step-left) * 6);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 6);  transform: rotate(70deg); }
.paw.step-14  { left: calc(var(--start-left-2) + var(--step-left) * 6);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 6);  transform: rotate(70deg); }
.paw.step-15  { left: calc(var(--start-left) + var(--step-left) * 7);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 7);  transform: rotate(70deg); }
.paw.step-16  { left: calc(var(--start-left-2) + var(--step-left) * 7);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 7);  transform: rotate(70deg); }
.paw.step-17  { left: calc(var(--start-left) + var(--step-left) * 8);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 8);  transform: rotate(70deg); }
.paw.step-18  { left: calc(var(--start-left-2) + var(--step-left) * 8);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 8);  transform: rotate(70deg); }
.paw.step-19  { left: calc(var(--start-left) + var(--step-left) * 9);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 9);  transform: rotate(70deg); }
.paw.step-20  { left: calc(var(--start-left-2) + var(--step-left) * 9);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 9);  transform: rotate(70deg); }
.paw.step-21  { left: calc(var(--start-left) + var(--step-left) * 10);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 10);  transform: rotate(70deg); }
.paw.step-22  { left: calc(var(--start-left-2) + var(--step-left) * 10);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 10);  transform: rotate(70deg); }
.paw.step-23  { left: calc(var(--start-left) + var(--step-left) * 11);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 11);  transform: rotate(70deg); }
.paw.step-24  { left: calc(var(--start-left-2) + var(--step-left) * 11);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 11);  transform: rotate(70deg); }
.paw.step-25  { left: calc(var(--start-left) + var(--step-left) * 12);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 12);  transform: rotate(70deg); }
.paw.step-26  { left: calc(var(--start-left-2) + var(--step-left) * 12);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 12);  transform: rotate(70deg); }
.paw.step-27  { left: calc(var(--start-left) + var(--step-left) * 13);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 13);  transform: rotate(70deg); }
.paw.step-28  { left: calc(var(--start-left-2) + var(--step-left) * 13);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 13);  transform: rotate(70deg); }
.paw.step-29  { left: calc(var(--start-left) + var(--step-left) * 14);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 14);  transform: rotate(70deg); }
.paw.step-30  { left: calc(var(--start-left-2) + var(--step-left) * 14);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 14);  transform: rotate(70deg); }
.paw.step-31  { left: calc(var(--start-left) + var(--step-left) * 15);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 15);  transform: rotate(70deg); }
.paw.step-32  { left: calc(var(--start-left-2) + var(--step-left) * 15);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 15);  transform: rotate(70deg); }
.paw.step-33  { left: calc(var(--start-left) + var(--step-left) * 16);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 16);  transform: rotate(70deg); }
.paw.step-34  { left: calc(var(--start-left-2) + var(--step-left) * 16);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 16);  transform: rotate(70deg); }
.paw.step-35  { left: calc(var(--start-left) + var(--step-left) * 17);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 17);  transform: rotate(70deg); }
.paw.step-36  { left: calc(var(--start-left-2) + var(--step-left) * 17);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 17);  transform: rotate(70deg); }
.paw.step-37  { left: calc(var(--start-left) + var(--step-left) * 18);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 18);  transform: rotate(70deg); }
.paw.step-38  { left: calc(var(--start-left-2) + var(--step-left) * 18);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 18);  transform: rotate(70deg); }
.paw.step-39  { left: calc(var(--start-left) + var(--step-left) * 19);  bottom: calc(var(--start-bottom) + var(--offset-bottom) * 19);  transform: rotate(70deg); }
.paw.step-40  { left: calc(var(--start-left-2) + var(--step-left) * 19);  bottom: calc(var(--start-bottom-2) + var(--offset-bottom) * 19);  transform: rotate(70deg); }

/* Refined Puppy University Section */
.puppy-university-section {
    background-color: #ffffff;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}


.puppy-university-section .section-title {
text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #a894a4 !important;
    text-decoration: underline;
}

.puppy-university-section .section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-style: italic; /* Bringing back italic for subtitle */
    color: #a894a4; /* Retaining soft purple-pink */
    font-weight: 400;
}

.puppy-university-section .top-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.puppy-university-section .intro-area {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    background-color: #faeef8; /* Very light, soft pink background */
    padding: 1rem;
	
	border-radius: 12px;
    border: 2px solid #a894a4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puppy-university-section .intro-text {
    flex: 1 1 50%;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #a894a4;
}

.puppy-university-section strong.brand-pink {
    color: #a894a4; /* Ensure strong text matches main pink */
}

.puppy-university-section .intro-image {
    flex: 1 1 35%;
    text-align: center;
}

.puppy-university-section .puppy-image {
    max-width: 60%;
    height: auto;
    border: 2px solid #a894a4;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1) !important; /* Clearer, but still soft shadow */
}

.puppy-university-section .why-it-matters {
    flex: 1;
    padding: 1rem;
	background-color: #faeef8; /* Very light, soft pink background */
	border-radius: 12px;
    border: 2px solid #a894a4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puppy-university-section .section-divider {
    border-bottom: 1px dashed #a894a4;
    margin: 2.5rem 0;
}

.puppy-university-section .what-it-is,
.puppy-university-section .growing-strong-note {
    padding: 1rem;
	background-color: #faeef8; /* Very light, soft pink background */
	border-radius: 12px;
    border: 2px solid #a894a4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puppy-university-section .subsection-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #a894a4;
    padding-bottom: 0.5rem;
	font-weight: bold;
	text-align: center;
    color: #a894a4 !important;
}

.puppy-university-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #a894a4;
    line-height: 1.4;
}

.puppy-university-section .check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem;
}

.puppy-university-section .check-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 0.5em;
    font-size: 1rem;
    color: #a894a4;
}

.puppy-university-section .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a894a4; /* Checkmark color matches softer purple-pink */
    font-size: 1.2em;
    line-height: 1;
	font-weight: bold;
}

.puppy-university-section .stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
	margin-bottom: 2rem;
}

.puppy-university-section .stage-card {
    padding: 0.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
	background-color: #faeef8; /* Very light, soft pink background */
	border-radius: 12px;
    border: 2px solid #a894a4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puppy-university-section .stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.puppy-university-section .stage-title {
    font-size: 1rem;
    color: #a894a4;
    border-bottom: 1px solid #a894a4;
    padding-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.puppy-university-section .stage-card p {
    color: #a894a4;
}

.puppy-university-section .stage-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 0.8rem;
	margin-bottom: 0rem !important;
}

.puppy-university-section .stage-list li {
    padding-left: 1.3em;
    position: relative;
    margin-bottom: 0.4em;
    font-size: 0.98rem;
    color: #a894a4;
}

.puppy-university-section .stage-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a894a4;
    font-size: 1.1em;
}

.puppy-university-section .graduation-card {
    background-color: #fef8fb; /* Slightly different background for distinction */
    border: 1px solid #faeef8; /* Border with main pink */
}

.puppy-university-section .cta-puppy-university {
    margin-top: 2.5rem;
    padding: 1rem;
    background-color: #faeef8; /* Matches intro area background */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.puppy-university-section .cta-puppy-university p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #a894a4 ;
}

.puppy-university-section .btn {
  display: block !important;
  margin: 1rem auto !important;
  background-color: #faeef8 !important;
  color: #a894a4 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  width: fit-content; /* optional: keeps the width tight */
}
.puppy-university-section .btn:hover {
    background-color: #d1497a; /* Slightly darker pink on hover */
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .puppy-university-section .top-content-row {
        flex-direction: column;
    }

    .puppy-university-section .intro-area,
    .puppy-university-section .why-it-matters {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .puppy-university-section .section-title {
        font-size: 2rem;
    }

    .puppy-university-section .section-subtitle {
        font-size: 1.2rem;
    }

    .puppy-university-section .intro-area {
        flex-direction: column;
        gap: 1rem;
    }

    .puppy-university-section .intro-text,
    .puppy-university-section .intro-image {
        flex: 1 1 100%;
    }

    .puppy-university-section .stages {
        grid-template-columns: 1fr;
    }

    .puppy-university-section .stage-card {
        padding: 1.2rem;
    }
}

.drawer-tab {
  position: fixed !important;
  top: 72% !important;
  right: 1% !important;           /* offsets from edge */
  transform: rotate(-90deg);      /* vertical text */
  transform-origin: right center !important;

  /* VISUALS */
  background-color: #faeef8 !important;
  color: #a894a4 !important;
  font-weight: bold !important;
  
  font-size: 1.25rem !important; /* Increased text size */

  /* NEW: subtle 2-pixel border */
  border: 3px solid #a894a4 !important; /* white @ 40 % opacity */

  padding: 0.5rem 2rem !important; /* Bigger padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  z-index: 1055 !important;
}

.drawer-tab:hover {
  background-color: #faeef8 !important;
}
@media (max-width: 768px) {
.drawer-tab {
    top: 65% !important;
    right: 2% !important;
    font-size: 0.85rem !important; /* Slightly larger text */
    padding: 0.8rem 1.2rem !important; /* More tappable area */
}
}

/* ─────────────────────────────────────────────
   2.  Off-canvas Panel (Bootstrap 5)
   ──────────────────────────────────────────── */

/* narrower, prettier drawer */
.offcanvas-end {
  width: min(380px, 90vw);        /* 380 px or 90 % of viewport */
  border-left: 4px solid #edd6e8; /* accent stripe */
}

/* header styling */
.offcanvas-header {
  border-bottom: 2px solid #a894a4;
  background-color: #faeef8;
}

.offcanvas-title {
  font-weight: 700;
  color: #a894a4;
}

/* close button tint for visibility on light bg */
.offcanvas-header .btn-close {
  filter: invert(60%);
}

/* drawer body padding & scrolling */
.offcanvas-body {
  padding-bottom: 2rem;           /* space for keyboard on mobile */
  overflow-y: auto;
  background-color: #faeef8;
}

/* ─── form fields ─────────────────────────── */
.offcanvas-body .form-label {
  font-weight: 600;
  color: #a894a4;
}

.offcanvas-body .form-control {
  border: 2px solid #a894a4;      /* soft brand tint */
  border-radius: 0.375rem;
  Background-color: #faeef8;
}

.offcanvas-body .form-control:focus {
  border-color: #a894a4;
  box-shadow: 0 0 0 0.2rem rgba(179,122,165,.25);
  Background-color: #faeef8;
}

/* ─────────────────────────────────────────────
   3.  Brand Button (.btn-pink) helper
   ──────────────────────────────────────────── */
/* Pink form button – now matches form-control size */
.btn-form-pink {
  display: block;                 /* makes it behave like .form-control */
  width: 100%;                    /* full width */
  padding: .375rem .75rem;        /* same as Bootstrap inputs */
  line-height: 1.5;               /* same vertical rhythm */
  background-color: #faeef8 !important;
  font-weight: bold !important;
  border: 2px solid #a894a4 !important;
  color: #a894a4 !important;
  margin-bottom: 1.2rem;
  transition: background-color .2s ease;
}

.btn-form-pink:hover,
.btn-form-pink:focus {
  background-color: #faeef8 !important;
  color: #a894a4 !important;
}

/* =========  FAQ ACCORDION – custom “pink card” look  ========= */

/* 1. Whole accordion item as a soft card */
#faqAccordion .accordion-item {
  border: none;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #faeef8;
  box-shadow: 0 0 0 2px #a894a4;
}

/* 2. Header button */
#faqAccordion .accordion-button {
  background-color: transparent;
  color: #a894a4;
  font-weight: 800;
  padding: 1rem 1.25rem;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* 3. Header when open */
#faqAccordion .accordion-button:not(.collapsed) {
  background-color: #faeef8;
  color: #a894a4;
}

/* 4. Caret – single style only */
#faqAccordion .accordion-button::after {
  filter: invert(36%) ;
}

/* 5. Focus style */
#faqAccordion .accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(250, 238, 248, 0.35);
}

/* 6. Accordion body */
#faqAccordion .accordion-body {
  background-color: #faeef8;
  color: #a894a4;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #a894a4;
  line-height: 1.6;
}
/* Decorative Elements for Teeth Cleaning Intro Section */
.teeth-cleaning-intro-section {
    /* Ensure this section has position: relative; for absolute positioning to work correctly */
    position: relative; /* This should already be present from previous steps */
    overflow: hidden; /* This should also be present to clip elements if they slightly go out of bounds */
    /* ... other existing styles for teeth-cleaning-intro-section ... */
	padding: 2rem 1rem;
    background-color: #faeef8; /* Consistent light pink background */
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.teeth-cleaning-intro-section .dog-sat-decoration {
    position: absolute;
    bottom: 0; /* Aligns to the very bottom of the section */
    right: 1rem; /* Aligns to the very right of the section */
    width: 150px; /* Adjust size as needed, experiment for best look */
    z-index: 1; /* Ensures it's above the background pattern */
    opacity: 0.7; /* Makes it slightly transparent and subtle */
    pointer-events: none; /* Prevents it from interfering with user interactions */
}

.teeth-cleaning-intro-section .dog-bowl-decoration {
    position: absolute;
    bottom: 0; /* Aligns to the very bottom of the section */
    left: 1rem; /* Aligns to the very left of the section */
    width: 100px; /* Adjust size as needed, slightly smaller than the dog */
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive adjustments for the decorative images */
@media (max-width: 992px) {
    .teeth-cleaning-intro-section .dog-sat-decoration {
        width: 150px;
        bottom: -20px; /* Slightly pull off-screen to prevent content overlap */
        right: -10px; /* Adjust position for smaller screens */
    }
    .teeth-cleaning-intro-section .dog-bowl-decoration {
        width: 120px;
        bottom: -20px;
        left: -10px;
    }
}

@media (max-width: 768px) {
    .teeth-cleaning-intro-section .dog-sat-decoration,
    .teeth-cleaning-intro-section .dog-bowl-decoration {
        width: 100px; /* Even smaller on tablets */
        bottom: -30px;
    }
}

@media (max-width: 576px) {
    /* Hide decorations on very small mobile screens to avoid clutter */
    .teeth-cleaning-intro-section .dog-sat-decoration,
    .teeth-cleaning-intro-section .dog-bowl-decoration {
        display: none;
    }
}

.teeth-cleaning-intro-section .section-title {
    font-weight: 700;
    font-size: 2em;
    color: #a894a4; /* Consistent brand darker pink/purple for titles */
    text-align: center;
    position: relative;
    padding-bottom: 15px;
	text-decoration: underline;
}

.teeth-cleaning-intro-section .intro-and-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.teeth-cleaning-intro-section .intro-text-block {
    flex: 1;
    min-width: 350px;
}

.teeth-cleaning-intro-section .intro-text-block p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.teeth-cleaning-intro-section .section-image-block {
    flex: 1;
    text-align: center;
}

.teeth-cleaning-intro-section .section-image-block img {
	Background-color: #faeef8;
    max-width: 100%;
    height: auto;
}

/* Key Benefits List (updated for font, size, spacing) */
.teeth-cleaning-intro-section .key-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px; /* Reduced vertical gap */
}

.teeth-cleaning-intro-section .benefit-item {
display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #a894a4;
    line-height: 1.4;
}

.teeth-cleaning-intro-section .benefit-item i {
    color: #ffc107; /* Gold star icon */
    font-size: 1.1em;
    flex-shrink: 0;
    padding-top: 2px;
}

/* --- Teeth Cleaning Details & Services Section --- */
.teeth-cleaning-details-section {
    padding: 2rem 1rem;
    background-color: #fff; /* White background for contrast, like homepage sections */
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.teeth-cleaning-details-section .services-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2em; /* Slightly smaller for a sub-title */
    color: #a894a4;
    text-align: center;
    position: relative;
	margin-bottom: 20px;
	text-decoration: underline;
}


/* Service Details Grid */
.teeth-cleaning-details-section .service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.teeth-cleaning-details-section .service-detail-item {
    background-color: #faeef8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(168, 148, 164, 0.1);
    border: 2px solid #a894a4;
    transition: all 0.3s ease;
}

.teeth-cleaning-details-section .service-detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(168, 148, 164, 0.2);
    border: 2px solid #a894a4;
}

.teeth-cleaning-details-section .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.teeth-cleaning-details-section .icon-circle {
    width: 60px;
    height: 60px;
    background-color: #a894a4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: #fff;
    font-size: 2em;
    flex-shrink: 0;
}

.teeth-cleaning-details-section .service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5em;
    color: #a894a4;
    margin: 0;
}

.teeth-cleaning-details-section .service-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.teeth-cleaning-details-section .service-content .detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Note and CTA */
.teeth-cleaning-details-section .note-and-cta {
    text-align: center;
    background-color: #faeef8;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(168, 148, 164, 0.15);
    border: 2px solid #a894a4;
}

.teeth-cleaning-details-section .note {
    font-size: 1.25em;
    font-style: italic;
    font-weight: 500;
    color: #a894a4;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.teeth-cleaning-details-section .btn-brand-blue {
    background-color: #faeef8;
    color: #a894a4;
    border: none;
    border-radius: 15px;
	border: 2px solid #a894a4;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.teeth-cleaning-details-section .btn-brand-blue:hover {
    background-color: #faeef8;
    color: #a894a4;
    border: none;
    border-radius: 15px;
	border: 2px solid #a894a4;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .teeth-cleaning-intro-section .intro-and-image {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .teeth-cleaning-intro-section .section-image-block img {
        width: 80%;
    }

    .teeth-cleaning-details-section .service-details-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .teeth-cleaning-intro-section .section-title,
    .teeth-cleaning-details-section .section-title {
        font-size: 2.2em;
    }
    .teeth-cleaning-intro-section .intro-text-block p {
        font-size: 1em;
    }
    .teeth-cleaning-intro-section .key-benefits {
        grid-template-columns: 1fr;
    }
    .teeth-cleaning-details-section .service-title {
        font-size: 1.3em;
    }
    .teeth-cleaning-details-section .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}