/* Hub page CSS - Mobile Dog Grooming, Cat Grooming, Pet Boarding, and similar service hubs */

.bb-hub-page,
.bb-cat-grooming-page {
  background: #ffffff;
  color: #2C2C2C;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

/* Intro Section */
.bb-hub-intro {
  padding: 3rem 1.5rem;
}

.bb-hub-container {
  max-width: 1100px;
  margin: 0 auto;
}

.bb-breadcrumb {
  font-size: 0.95rem;
  color: #718096;
}

.bb-breadcrumb a {
  color: #FF69B4;
  text-decoration: none;
}

.bb-breadcrumb a:hover {
  text-decoration: underline;
}

.bb-hub-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 1.25rem;
}

/* Descriptive Section */
.bb-hub-descriptive {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-hub-container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.bb-hub-section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2C2C2C;
}

.bb-hub-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.bb-hub-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bb-hub-service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bb-hub-service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bb-hub-service-card p {
  color: #555555;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bb-hub-card-link {
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.bb-hub-card-link:hover {
  opacity: 0.8;
}

/* Cat Grooming Specific Services Grid */
.bb-cat-services-list {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-cat-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .bb-cat-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bb-cat-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bb-cat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bb-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.bb-cat-icon {
  font-size: 2rem;
  color: #4ECDC4;
  margin-bottom: 1rem;
}

.bb-cat-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.75rem;
}

.bb-cat-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Cat Grooming Results / Gallery */
.bb-cat-results {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #ffffff;
}

.bb-cat-results h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2C2C2C;
}

.bb-cat-results-sub {
  color: #666666;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.bb-cat-gallery-item {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.bb-cat-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.bb-cat-caption {
  padding: 1.5rem;
  text-align: left;
}

.bb-cat-caption h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.5rem;
}

.bb-cat-caption p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Categories Section */
.bb-hub-categories {
  padding: 4rem 1.5rem;
}

.bb-hub-category-group {
  margin-bottom: 3rem;
}

.bb-hub-category-group h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.bb-hub-category-group h2 a {
  color: #2C2C2C;
  text-decoration: none;
  transition: color 0.2s;
}

.bb-hub-category-group h2 a:hover {
  color: #FF69B4;
}

.bb-hub-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.bb-hub-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  color: #2D3748;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bb-hub-box:hover {
  border-color: #FF69B4;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.15);
  transform: translateY(-2px);
  color: #FF69B4;
}

/* Why Choose Section */
.bb-hub-why {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
  text-align: center;
}

.bb-hub-why h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #2C2C2C;
}

.bb-hub-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.bb-hub-benefit-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bb-hub-benefit-card i {
  font-size: 2.5rem;
  color: #FF69B4;
  margin-bottom: 1.25rem;
}

.bb-hub-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2D3748;
}

.bb-hub-benefit-card p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Tips Section */
.bb-hub-tips {
  padding: 4rem 1.5rem;
  text-align: center;
}

.bb-hub-tips h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2C2C2C;
}

.bb-hub-tips-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.6;
}

.bb-hub-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.bb-hub-tip-card {
  background: #F7FAFC;
  border-left: 4px solid #FF69B4;
  padding: 1.75rem 1.25rem;
  border-radius: 0 8px 8px 0;
}

.bb-hub-tip-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.5rem;
}

.bb-hub-tip-card p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Crosslink */
.bb-hub-crosslink {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #FFF5F7;
}

.bb-hub-crosslink p {
  font-size: 1.1rem;
  margin: 0;
  color: #2D3748;
}

.bb-hub-crosslink a {
  color: #FF69B4;
  font-weight: 600;
  text-decoration: none;
}

.bb-hub-crosslink a:hover {
  text-decoration: underline;
}

/* Areas Section */
.bb-hub-areas {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #f8f8f8;
}

.bb-hub-areas h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2C2C2C;
}

.bb-hub-areas p {
  max-width: 750px;
  margin: 0 auto 2rem;
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bb-hub-areas .bb-btn-outline {
  border: 2px solid #FF69B4;
  color: #FF69B4;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.bb-hub-areas .bb-btn-outline:hover {
  background: #FF69B4;
  color: #ffffff;
}

@media (max-width: 768px) {
  .bb-hub-section-title,
  .bb-cat-results h2,
  .bb-hub-why h2,
  .bb-hub-tips h2,
  .bb-hub-areas h2 {
    font-size: 1.75rem;
  }
}

/* ===== About Page ===== */
.bb-about-video {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}

.bb-about-video-el {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
  background: #f0f0f0;
}

.bb-about-story {
  padding: 4rem 1.5rem;
}

.bb-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.bb-about-story-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.bb-about-story-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.25rem;
}

.bb-about-story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 1.25rem;
}

.bb-about-different {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
  text-align: center;
}

.bb-about-small-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: cover;
}

.bb-about-different h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}

.bb-about-different p {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
}

.bb-about-approach {
  padding: 4rem 1.5rem;
  text-align: center;
}

.bb-about-approach h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 2.5rem;
}

.bb-about-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.bb-about-approach-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bb-about-approach-card i {
  font-size: 2.5rem;
  color: #FF69B4;
  margin-bottom: 1.25rem;
}

.bb-about-approach-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.75rem;
}

.bb-about-approach-card p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.bb-about-more {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-about-more-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bb-about-more-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.25rem;
}

.bb-about-more-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 1.25rem;
}

.bb-about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.bb-about-stat {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  color: #FF69B4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.bb-about-more-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .bb-about-story-grid,
  .bb-about-more-grid {
    grid-template-columns: 1fr;
  }
  .bb-about-story-text h2,
  .bb-about-different h2,
  .bb-about-approach h2,
  .bb-about-more-text h2 {
    font-size: 1.75rem;
  }
}

/* ===== Contact Page ===== */
.bb-contact-page {
  background: #ffffff;
}

/* Get In Touch */
.bb-contact-touch {
  padding: 4rem 1.5rem;
  text-align: center;
}

.bb-contact-touch h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.bb-contact-touch-sub {
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.bb-contact-response-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ECDC4;
  font-weight: 600;
  font-size: 0.95rem;
  background: #E8FBFA;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
}

.bb-contact-response-note i {
  font-size: 1rem;
}

.bb-contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bb-contact-action-card {
  background: #ffffff;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: #2C3E50;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bb-contact-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #FF69B4;
}

.bb-contact-action-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FF69B4;
}

.bb-contact-action-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2C3E50;
}

.bb-contact-action-card p {
  color: #666666;
  font-size: 0.95rem;
  margin: 0;
}

/* Booking Form */
.bb-contact-booking {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-contact-booking-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-contact-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f05ba7;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.bb-contact-booking-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 800;
  color: #18324a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.bb-contact-booking-sub {
  text-align: center;
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.bb-contact-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.75rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #FFE5F1 0%, #FFD1E3 100%);
}

.bb-contact-callout-paw {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bb-contact-callout p {
  margin: 0;
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.bb-contact-form-wrap {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 1000px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.bb-contact-form-wrap iframe {
  display: block;
  min-height: 1000px;
}

/* Contact Information */
.bb-contact-info {
  padding: 4rem 1.5rem;
}

.bb-contact-info h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 2.5rem;
}

.bb-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.bb-contact-info-card {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bb-contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FF69B4;
}

.bb-contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.bb-contact-info-main {
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.bb-contact-info-main a {
  color: #FF69B4;
  text-decoration: none;
}

.bb-contact-info-main a:hover {
  text-decoration: underline;
}

.bb-contact-info-note {
  color: #888888;
  font-size: 0.9rem;
  margin: 0;
}

.bb-contact-info-note a {
  color: #4ECDC4;
  text-decoration: none;
  font-weight: 600;
}

.bb-contact-info-note a:hover {
  text-decoration: underline;
}

/* Map */
.bb-contact-map {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-contact-map h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.bb-contact-map-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bb-contact-map-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin: 0 auto;
}

.bb-contact-map-wrap iframe {
  display: block;
}

@media (max-width: 768px) {
  .bb-contact-touch h2,
  .bb-contact-info h2,
  .bb-contact-map h2 {
    font-size: 1.75rem;
  }
  .bb-contact-booking-title {
    font-size: 2.25rem;
  }
}

/* ===== Gallery Page ===== */
.bb-gallery-intro {
  padding: 3rem 1.5rem 1rem;
  text-align: center;
}

.bb-gallery-intro p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2C3E50;
}

.bb-gallery-grid-section {
  padding: 2rem 1.5rem 4rem;
}

.bb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.bb-gallery-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bb-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.bb-gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bb-gallery-card figcaption {
  padding: 1.25rem 1.5rem 1.5rem;
}

.bb-gallery-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 0.5rem;
}

.bb-gallery-card figcaption p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Services We Offer */
.bb-gallery-services {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-gallery-services h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.bb-gallery-services-sub {
  text-align: center;
  color: #666666;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.bb-gallery-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bb-gallery-service-card {
  background: #ffffff;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bb-gallery-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #FF69B4;
}

.bb-gallery-service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FF69B4;
}

.bb-gallery-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.bb-gallery-service-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bb-gallery-service-link {
  display: inline-block;
  color: #FF69B4;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.bb-gallery-service-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bb-gallery-services h2 {
    font-size: 1.75rem;
  }
}

/* ===== FAQ PAGE ===== */

.bb-faq-intro {
  padding: 3rem 1.5rem 1rem;
  text-align: center;
}

.bb-faq-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A5568;
  max-width: 800px;
  margin: 0 auto;
}

.bb-faq-controls-section {
  padding: 1.5rem 1.5rem 3rem;
}

.bb-faq-search {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #E0E0E0;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.2s;
}

.bb-faq-search:focus {
  border-color: #FF69B4;
}

.bb-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bb-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5568;
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.bb-faq-tab i {
  font-size: 0.85rem;
}

.bb-faq-tab:hover {
  border-color: #FF69B4;
  color: #FF69B4;
}

.bb-faq-tab.active {
  background: linear-gradient(90deg, #FF69B4, #4ECDC4);
  color: #fff;
  border-color: transparent;
}

.bb-faq-count {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.bb-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bb-faq-item {
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bb-faq-item.open {
  border-color: #FF69B4;
  box-shadow: 0 4px 14px rgba(255, 105, 180, 0.12);
}

.bb-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.bb-faq-q-text {
  flex: 1;
  font-size: 1.02rem;
  font-weight: 600;
  color: #2C3E50;
}

.bb-faq-cat-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4ECDC4;
  background: #E0F7FA;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.bb-faq-toggle {
  flex-shrink: 0;
  color: #FF69B4;
  font-size: 0.9rem;
}

.bb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bb-faq-item.open .bb-faq-answer {
  max-height: 2000px;
}

.bb-faq-answer p,
.bb-faq-answer-line {
  padding: 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4A5568;
}

.bb-faq-answer p {
  margin: 0 0 0.75rem;
}

.bb-faq-answer p:last-child {
  margin-bottom: 1.25rem;
}

.bb-faq-answer-line {
  padding-left: 2.5rem;
  margin-bottom: 0.25rem;
}

.bb-faq-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #718096;
}

.bb-faq-no-results i {
  font-size: 2.5rem;
  color: #FF69B4;
  margin-bottom: 1rem;
  display: block;
}

.bb-faq-no-results h3 {
  font-size: 1.3rem;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.bb-faq-no-results p {
  font-size: 1rem;
}

.bb-faq-still {
  padding: 3.5rem 1.5rem;
  background: #f8f8f8;
  text-align: center;
}

.bb-faq-still h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.bb-faq-still p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.bb-faq-still .bb-btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bb-faq-tab {
    font-size: 0.82rem;
    padding: 0.5rem 0.85rem;
  }

  .bb-faq-cat-badge {
    display: none;
  }

  .bb-faq-still h2 {
    font-size: 1.6rem;
  }
}

/* ===== Reviews Page ===== */
.bb-reviews-intro {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.bb-reviews-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.bb-reviews-widget-section {
  padding: 2rem 1.5rem 3rem;
}

.bb-reviews-widget-section .lc_reviews_widget {
  min-height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: block;
}

.bb-reviews-leave {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #f8f8f8;
}

.bb-reviews-leave h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.bb-reviews-leave p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: #4a5568;
}

/* ===== Service Areas Page ===== */
.bb-service-areas-section {
  padding: 4rem 1.5rem;
  background: #f8f8f8;
}

.bb-service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.bb-service-area-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bb-service-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.12);
  border-color: #4ECDC4;
}

.bb-service-area-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bb-service-area-card h2 i {
  color: #FF69B4;
  font-size: 1.35rem;
}

.bb-service-area-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 0.85rem;
}

.bb-service-area-card p:last-child {
  margin-bottom: 0;
  margin-top: auto;
}

.bb-service-area-card p strong {
  color: #2C3E50;
  font-weight: 600;
}

.bb-service-areas-missing {
  padding: 4rem 1.5rem;
  text-align: center;
}

.bb-service-areas-missing h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.25rem;
}

.bb-service-areas-missing p {
  max-width: 720px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
}

@media (max-width: 968px) {
  .bb-service-areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bb-service-area-card {
    padding: 1.75rem 1.5rem;
  }
  .bb-service-area-card h2 {
    font-size: 1.35rem;
  }
  .bb-service-areas-missing h2 {
    font-size: 1.75rem;
  }
}

/* ===== Legal Page (Privacy Policy / Terms) ===== */
.bb-legal-page {
  background: #ffffff;
}

.bb-legal-doc {
  padding: 6rem 2rem 4rem;
  background: #ffffff;
}

.bb-legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  line-height: 1.8;
  color: #2C3E50;
}

.bb-legal-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #4ECDC4;
}

.bb-legal-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2C3E50;
  margin: 0 0 0.5rem;
}

.bb-legal-updated {
  font-size: 1rem;
  color: #718096;
  margin: 0;
}

.bb-legal-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bb-legal-container h2 {
  color: #4ECDC4;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
}

.bb-legal-container h3 {
  color: #FF69B4;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.bb-legal-container h4 {
  color: #2C3E50;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.bb-legal-container ul {
  margin: 0 0 1.25rem 1.5rem;
  padding-left: 0.5rem;
}

.bb-legal-container ul li {
  margin-bottom: 0.6rem;
  list-style: disc;
}

.bb-legal-container a {
  color: #FF69B4;
  text-decoration: underline;
}

.bb-legal-contact-box {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF69B4 100%);
  color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.bb-legal-contact-box h3 {
  color: #ffffff;
  margin-top: 0;
}

.bb-legal-contact-box a {
  color: #ffffff;
  font-weight: 600;
}

/* ===== Legal Footer ===== */
.bb-legal-footer {
  background: #1a1a2e;
  color: #cbd5e0;
  padding: 3rem 1.5rem 0;
  font-family: 'Poppins', sans-serif;
}

.bb-legal-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.bb-legal-footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.bb-legal-footer-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.bb-legal-footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.bb-legal-footer-col ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bb-legal-footer-col ul li a:hover {
  color: #FF69B4;
}

.bb-legal-social {
  display: flex;
  gap: 0.75rem;
}

.bb-legal-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.bb-legal-social a:hover {
  background: #FF69B4;
}

.bb-legal-footer-bottom {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.88rem;
  color: #a0aec0;
}

.bb-legal-footer-bottom .bb-hub-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bb-legal-footer-links a {
  color: #a0aec0;
  text-decoration: none;
}

.bb-legal-footer-links a:hover {
  color: #FF69B4;
}

@media (max-width: 968px) {
  .bb-legal-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bb-legal-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bb-legal-social {
    justify-content: center;
  }
  .bb-legal-footer-bottom .bb-hub-container {
    flex-direction: column;
    text-align: center;
  }
  .bb-legal-doc {
    padding: 4rem 1.25rem 3rem;
  }
  .bb-legal-header h1 {
    font-size: 2rem;
  }
}

/* ===== Terms and Conditions (inverted color scheme) ===== */
.bb-legal-terms .bb-legal-header {
  border-bottom-color: #FF69B4;
}

.bb-legal-terms h2 {
  color: #FF69B4;
}

.bb-legal-terms h3 {
  color: #4ECDC4;
}

.bb-legal-terms .bb-legal-contact-box {
  background: linear-gradient(135deg, #FF69B4 0%, #4ECDC4 100%);
}

/* ===== 404 Page ===== */
.bb-404-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bb-404-content {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.bb-404-paw {
  font-size: 5rem;
  color: #FF69B4;
  margin-bottom: 1.5rem;
}

.bb-404-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2C3E50;
  margin: 0 0 1rem;
}

.bb-404-text {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 480px;
}

.bb-404-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.bb-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bb-404-btn:hover {
  transform: translateY(-2px);
}

.bb-404-btn-primary {
  background: #FF69B4;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 105, 180, 0.35);
}

.bb-404-btn-outline {
  background: transparent;
  color: #FF69B4;
  border: 2px solid #FF69B4;
}

.bb-404-quick {
  width: 100%;
  max-width: 680px;
  margin-top: 1.5rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.bb-404-quick h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
}

.bb-404-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem;
}

.bb-404-quick-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: #f8fafc;
  border: 1.5px solid #C20A4B;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bb-404-quick-card:hover {
  background: #ffffff;
  border-color: #C20A4B;
  box-shadow: 0 6px 16px rgba(194, 10, 75, 0.15);
  transform: translateY(-2px);
}

.bb-404-quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF69B4;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bb-404-quick-card:hover .bb-404-quick-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, #FF69B4 0%, #4ECDC4 100%);
  color: #ffffff;
}

.bb-404-quick-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2C3E50;
  flex: 1;
}

.bb-404-quick-arrow {
  color: #cbd5e1;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.bb-404-quick-card:hover .bb-404-quick-arrow {
  color: #FF69B4;
  transform: translateX(4px);
}

/* Jurupa Valley (Location 2) landing page hero — wide image fills full width, no dark bars */
.bb-jurupa-hero {
  background-image: url("https://assets.cdn.filesafe.space/8jsb99LJhCPV9fdWQfVM/media/6a9e38f5b2a8a6f15006fc5b.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0f172a;
  min-height: 560px;
  padding: 60px 20px 70px;
}

@media (min-width: 1024px) {
  .bb-jurupa-hero {
    background-size: cover;
    background-position: center center;
    min-height: 620px;
    padding: 80px 20px 80px;
  }
}

.bb-jurupa-hero::before {
  background: transparent;
}

.bb-jurupa-hero .bb-services-hero-content {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 860px;
}

.bb-jurupa-hero h1 {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.bb-jurupa-hero p.subtitle {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.bb-jurupa-hero .bb-trust-item {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  font-weight: 600;
}

@media (max-width: 768px) {
  .bb-jurupa-hero {
    background-size: cover;
    background-position: center center;
    min-height: 460px;
    padding: 40px 15px 40px;
  }
  .bb-jurupa-hero .bb-services-hero-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }
}

/* ===== Jurupa Valley Services Overview (Section 3) ===== */
.bb-jurupa-services-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bb-jurupa-service-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.bb-jurupa-service-card.reverse {
  grid-template-columns: 1.4fr 1fr;
}

.bb-jurupa-service-card.reverse .bb-jurupa-service-image {
  order: 2;
}

.bb-jurupa-service-card.reverse .bb-jurupa-service-body {
  order: 1;
}

.bb-jurupa-service-image {
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  background: #f4f4f4;
}

.bb-jurupa-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-jurupa-service-body h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.bb-jurupa-service-body p {
  line-height: 1.7;
  color: #444;
  margin: 0 0 1rem 0;
}

.bb-jurupa-service-body .bb-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 860px) {
  .bb-jurupa-service-card,
  .bb-jurupa-service-card.reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bb-jurupa-service-card .bb-jurupa-service-image,
  .bb-jurupa-service-card.reverse .bb-jurupa-service-image,
  .bb-jurupa-service-card .bb-jurupa-service-body,
  .bb-jurupa-service-card.reverse .bb-jurupa-service-body {
    order: initial;
  }

  .bb-jurupa-service-image {
    min-height: 220px;
  }
}

/* ===== Jurupa Valley Reviews Widget (wider for desktop) ===== */
.bb-jurupa-review-wrap {
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.bb-jurupa-review-wrap .lc_reviews_widget {
  width: 100%;
  min-width: 100%;
  min-height: 400px;
  border-radius: var(--bbp-radius, 15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: none;
  display: block;
}

/* ===== Jurupa Valley Photo Carousel ===== */
/* ===== Jurupa Valley "Why Choose Us" staggered cards ===== */
.bb-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.bb-why-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.6s ease;
  text-align: left;
}
.bb-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(255, 105, 180, 0.18);
  border-color: #4ECDC4;
}
.bb-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FF69B4;
  margin-bottom: 1.1rem;
}
.bb-why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #2C3E50;
  line-height: 1.35;
}
.bb-why-card p {
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 968px) {
  .bb-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bb-why-grid {
    grid-template-columns: 1fr;
  }
  .bb-why-card {
    text-align: center;
  }
  .bb-why-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

#jvPhotoTrack {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#jvPhotoTrack::-webkit-scrollbar {
  display: none;
}
#jvPhotoTrack {
  scrollbar-width: none;
}
#jvLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
#jvLightbox.open {
  display: flex;
}
#jvLightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}
#jvClose {
  top: 24px;
  right: 24px;
}
#jvPrev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
#jvNext {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== Jurupa Valley Gallery intro ===== */
.bb-jv-intro { padding: 56px 0; }
.bb-jv-intro-text { max-width: 760px; margin: 0 auto; text-align: center; font-size: 1.1rem; line-height: 1.8; color: #2C3E50; }

/* ===== Jurupa Valley Gallery (static grid + lightbox) ===== */
.bb-jv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0;
}
.bb-jv-gallery-cell {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bb-jv-gallery-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.bb-jv-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bb-jv-gallery-cell:hover img {
  transform: scale(1.05);
}
.bb-jv-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.bb-jv-gallery-lightbox.open {
  display: flex;
}
.bb-jv-gallery-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}
.bb-jv-gallery-close {
  top: 24px;
  right: 24px;
}
.bb-jv-gallery-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.bb-jv-gallery-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .bb-jv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bb-jv-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Jurupa Valley Certifications Carousel (seamless marquee) ===== */
.bb-certs-marquee {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.bb-certs-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: bb-certs-scroll 48s linear infinite;
  will-change: transform;
}
.bb-certs-track.paused {
  animation-play-state: paused;
}
@keyframes bb-certs-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.ck9-cert {
  flex: 0 0 260px;
  height: 260px;
  border-radius: var(--bbp-radius, 15px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Maintain identical desktop speed across all screen sizes */
@media (max-width: 768px) {
  .ck9-cert {
    flex: 0 0 220px;
    height: 220px;
  }
}
@media (max-width: 480px) {
  .ck9-cert {
    flex: 0 0 190px;
    height: 190px;
  }
}
.ck9-cert img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  background: #fff;
}
.ck9-cert:hover img {
  transform: scale(1.04);
}
#jvCertsLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
#jvCertsLightbox.open {
  display: flex;
}
#jvCertsLightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  background: #fff;
}
#jvCertsClose {
  top: 24px;
  right: 24px;
}
#jvCertsPrev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
#jvCertsNext {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== Jurupa Valley Package Cards ===== */
.bb-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.bb-pkg-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bb-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--pkg-accent, #4ECDC4) 35%, transparent);
  border-color: var(--pkg-accent, #4ECDC4);
}
.bb-pkg-badge {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
}
.bb-pkg-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-pkg-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1F2937;
  letter-spacing: -0.01em;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}
.bb-pkg-price {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pkg-accent, #FF69B4);
  background: color-mix(in srgb, var(--pkg-accent, #FF69B4) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--pkg-accent, #FF69B4) 30%, transparent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.35rem;
  width: fit-content;
}

/* Size-tier pricing table */
.bb-pkg-pricetable {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4rem;
  font-size: 0.88rem;
}
.bb-pkg-pricetable td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.bb-pkg-pricetable tr:last-child td {
  border-bottom: none;
}
.bb-pkg-pricetable td.bb-pkg-size {
  color: #4A5568;
  font-weight: 500;
  text-align: left;
}
.bb-pkg-pricetable td.bb-pkg-amount {
  text-align: right;
  font-weight: 700;
  color: var(--pkg-accent, #FF69B4);
  white-space: nowrap;
}
.bb-pkg-size-icon {
  flex-shrink: 0;
  color: var(--pkg-accent, #FF69B4);
  opacity: 0.75;
}

.bb-pkg-includes-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}
.bb-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  flex: 1;
}
.bb-pkg-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #4A5568;
  padding: 0.28rem 0;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bb-pkg-list.in-view li {
  opacity: 1;
  transform: translateY(0);
}
.bb-pkg-list li i {
  font-size: 0.85rem;
  flex-shrink: 0;
}
.bb-pkg-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  background: transparent;
  color: var(--pkg-accent, #FF69B4);
  border: 2px solid var(--pkg-accent, #FF69B4);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bb-pkg-cta:hover {
  background-color: var(--pkg-accent, #4ECDC4);
  color: #ffffff !important;
  border-color: var(--pkg-accent, #4ECDC4);
}
@media (max-width: 968px) {
  .bb-pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Jurupa Valley Package Booking Modal ===== */
#bbPkgModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
#bbPkgModal.open {
  display: flex;
}
.bb-pkg-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 850px;
  height: 92vh;
  max-height: 92vh;
  overflow-y: auto;
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
.bb-pkg-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #2c3e50;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.bb-pkg-modal-close:hover {
  background: #FF69B4;
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 640px) {
  #bbPkgModal {
    padding: 8px;
  }
  .bb-pkg-modal-inner {
    max-width: 100%;
    height: 96vh;
    max-height: 96vh;
    padding: 0.5rem;
  }
}

/* ===== Jurupa Valley Add-On Services ===== */
.bb-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.bb-addon-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 1rem 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bb-addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #FF69B4;
}
.bb-addon-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF69B4;
  font-size: 1.05rem;
}
.bb-addon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bb-addon-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2C3E50;
  line-height: 1.3;
}
.bb-addon-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF69B4;
  margin-top: 2px;
}

/* ===== Jurupa Valley Hours of Operation Card ===== */
.bb-hours-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  padding: 2rem 2.25rem;
}
.bb-hours-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.bb-hours-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF69B4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.bb-hours-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0;
  line-height: 1.25;
}
.bb-hours-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0.25rem 0 0;
  font-weight: 500;
}
.bb-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
.bb-hours-row:last-child {
  border-bottom: none;
}
.bb-hours-day {
  color: #4A5568;
  font-weight: 500;
}
.bb-hours-time {
  color: #2C3E50;
  font-weight: 600;
}
.bb-hours-card-alt {
  margin-top: 1.5rem;
  border-color: #e6fbf9;
}
.bb-hours-icon-alt {
  background: #4ECDC4;
}

/* About Jurupa Valley — layout helpers */
.bb-narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.bb-jurupa-about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}
.bb-jurupa-about-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.bb-jurupa-about-text h2 {
  margin-bottom: 1rem;
}
.bb-jurupa-about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #4A5568;
}
.bb-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: end;
}
.bb-jurupa-about-split-reverse .bb-jurupa-about-img {
  order: 2;
}
.bb-jurupa-about-split-reverse .bb-jurupa-about-text {
  order: 1;
}
@media (max-width: 768px) {
  .bb-jurupa-about-split-reverse .bb-jurupa-about-img,
  .bb-jurupa-about-split-reverse .bb-jurupa-about-text {
    order: unset;
  }
}
.bb-cert-cell {
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.bb-cert-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border-color: #4ECDC4;
}
.bb-cert-cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .bb-jurupa-about-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bb-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .bb-certs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Jurupa Valley Contact Page ===== */
.bb-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.bb-contact-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2.25rem 1.75rem;
  background: #fff;
  border-radius: 18px;
  border: 2px solid #f0e6ee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bb-contact-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.06) 0%, rgba(78, 205, 196, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bb-contact-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(255, 105, 180, 0.18);
  border-color: #FF69B4;
}
.bb-contact-action-card:hover::before {
  opacity: 1;
}
.bb-contact-action-card > * {
  position: relative;
  z-index: 1;
}
.bb-contact-action-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.bb-contact-action-card:hover .bb-contact-action-icon {
  transform: scale(1.08) rotate(-4deg);
}
.bb-contact-icon-pink {
  background: linear-gradient(135deg, #FF69B4 0%, #ff8fc7 100%);
}
.bb-contact-icon-teal {
  background: linear-gradient(135deg, #4ECDC4 0%, #6fe0d8 100%);
}
.bb-contact-icon-gold {
  background: linear-gradient(135deg, #FFD700 0%, #ffe55c 100%);
  color: #2c3e50;
}
.bb-contact-action-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.bb-contact-action-sub {
  color: #64748b;
  font-size: 0.98rem;
}

.bb-contact-form-wrap {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  min-height: 1000px;
}

.bb-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
.bb-contact-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 2px solid #f0e6ee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bb-contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(78, 205, 196, 0.18);
  border-color: #4ECDC4;
}
.bb-contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.bb-contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.6rem;
}
.bb-contact-info-card p {
  margin: 0.25rem 0;
  color: #475569;
}
.bb-contact-info-card p a {
  color: #FF69B4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bb-contact-info-card p a:hover {
  color: #C20A4B;
}
.bb-contact-info-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.5rem !important;
}

.bb-contact-salon-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
  align-items: stretch;
}
.bb-contact-salon-info {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 2px solid #f0e6ee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.bb-contact-salon-info p {
  color: #475569;
  line-height: 1.7;
}
.bb-contact-salon-address {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bb-contact-salon-address i {
  color: #FF69B4;
  font-size: 1.3rem;
}
.bb-contact-salon-info .bb-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.bb-contact-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border: 2px solid #f0e6ee;
  height: 100%;
  min-height: 320px;
}
.bb-contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (max-width: 900px) {
  .bb-contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .bb-contact-salon-wrap {
    grid-template-columns: 1fr;
  }
  .bb-contact-map-wrap {
    min-height: 280px;
  }
}
@media (max-width: 640px) {
  .bb-contact-actions {
    grid-template-columns: 1fr;
  }
}

/* ===== Jurupa Valley FAQ ===== */
.bb-faq-controls {
  margin-bottom: 2rem;
}
.bb-faq-search-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.bb-faq-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
}
.bb-faq-search {
  width: 100%;
  padding: 0.85rem 1.1rem 0.85rem 2.6rem;
  border: 2px solid #f0e6ee;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #2c3e50;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bb-faq-search:focus {
  border-color: #FF69B4;
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.12);
}
.bb-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.bb-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 2px solid #f0e6ee;
  border-radius: 50px;
  background: #fff;
  color: #64748b;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.bb-faq-tab i {
  font-size: 0.8rem;
}
.bb-faq-tab:hover {
  border-color: #FF69B4;
  color: #FF69B4;
}
.bb-faq-tab.active {
  background: linear-gradient(135deg, #FF69B4 0%, #ff8fc7 100%);
  border-color: #FF69B4;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 105, 180, 0.3);
}
.bb-faq-count {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 0.25rem;
}
.bb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bb-faq-item {
  background: #fff;
  border: 2px solid #f0e6ee;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bb-faq-item.open {
  border-color: #FF69B4;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.1);
}
.bb-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.bb-faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
}
.bb-faq-badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}
.bb-faq-badge-basics {
  background: rgba(78, 205, 196, 0.15);
  color: #2bb5ad;
}
.bb-faq-item[data-cat="salon-mobile"] .bb-faq-badge,
.bb-faq-badge-salon {
  background: rgba(255, 105, 180, 0.15);
  color: #d6478f;
}
.bb-faq-badge-booking {
  background: rgba(255, 215, 0, 0.18);
  color: #b8960a;
}
.bb-faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #94a3b8;
  transition: transform 0.3s ease;
}
.bb-faq-chevron.rotated {
  transform: rotate(180deg);
  color: #FF69B4;
}
.bb-faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.bb-faq-item.open .bb-faq-answer-wrap {
  max-height: 2000px;
}
.bb-faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #64748b;
}
.bb-faq-noresults {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #94a3b8;
}
.bb-faq-noresults i {
  font-size: 2.5rem;
  color: #FF69B4;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}
.bb-faq-noresults h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.4rem;
}
.bb-faq-noresults p {
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .bb-faq-tab span {
    display: none;
  }
  .bb-faq-tab {
    padding: 0.55rem 0.8rem;
  }
  .bb-faq-tab i {
    font-size: 0.95rem;
  }
  .bb-faq-badge {
    display: none;
  }
  .bb-faq-q-text {
    font-size: 0.92rem;
  }
}

/* ===== Full Groom Jurupa Valley page ===== */
.bb-callout-box {
  background: linear-gradient(135deg, #fff0f6, #f0fbfb);
  border-left: 4px solid #FF69B4;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-weight: 500;
  color: #475569;
}
.bb-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.bb-check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
  line-height: 1.6;
  color: #475569;
}
.bb-check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #FF69B4;
  font-size: 0.9rem;
}
.bb-fullgroom-heroimg {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
}
.bb-fullgroom-heroimg img {
  width: 100%;
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.bb-faq-heroimg {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.12);
  margin: 0 auto;
}
.bb-faq-heroimg img {
  width: 100%;
  height: auto;
  display: block;
}
.bb-fullgroom-inlineimg {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12);
}
.bb-fullgroom-inlineimg img {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: contain;
}
.bb-inline-link {
  color: #FF69B4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bb-inline-link:hover {
  color: #4ECDC4;
}
.bb-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF69B4;
  margin-bottom: 0.5rem;
}

/* ===== Bath and Tidy Jurupa Valley — light trust row (high contrast on light bg) ===== */
.bb-trust-row-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.bb-trust-item-light {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2C3E50;
  font-size: 0.98rem;
  background: #fff;
  border: 2px solid #f0e6ee;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.bb-trust-item-light:hover {
  border-color: #FF69B4;
  box-shadow: 0 4px 16px rgba(255, 105, 180, 0.15);
  transform: translateY(-2px);
}
.bb-trust-item-light i {
  color: #4ECDC4;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .bb-trust-row-light {
    gap: 12px;
  }
  .bb-trust-item-light {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

/* ===== Package card — centered decorative thumbnail ===== */
.bb-pkg-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.bb-pkg-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 3px solid color-mix(in srgb, var(--pkg-accent) 35%, #fff);
  transition: transform 0.25s, box-shadow 0.25s;
}
.bb-pkg-card:hover .bb-pkg-thumb {
  transform: scale(1.06);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--pkg-accent) 35%, transparent);
}
.bb-pkg-headtext {
  flex: 1;
  text-align: center;
}
.bb-pkg-headtext h3 {
  text-align: center;
}
.bb-pkg-body .bb-pkg-price {
  margin-left: auto;
  margin-right: auto;
}
