:root {
  --primary: #0f4c5f;
  --secondary: #d28fb2;
  --light: #f8f9fa;
  --dark: #343a40;
  --primary-pink: #d28fb2;
  --pink-light: #f7eaf3;
  --nm-container: 1200px;
  --nm-gutter-x: 1.5rem;
  --nm-gutter-y: 1.5rem;
  --nm-radius: 14px;
  --nm-shadow: 0 10px 30px rgba(15, 76, 95, 0.1);
}

/* Performance/accessibility safeguard: cut all animation/transition durations
   to near-zero for users who prefer reduced motion, and as a blanket safety
   net against long-running non-composited transitions on hover-heavy elements
   (cards, badges, buttons) that use `transition: all`. Does not remove any
   visual state (colors/shadows/transforms still apply instantly). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reviews Section - Modern Design */
.reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(210, 143, 178, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.reviews-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(15, 76, 95, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.reviews-header h1,
.reviews-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f4c5f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.reviews-header p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.reviews-card {
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(15, 76, 95, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reviews-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: rgba(210, 143, 178, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.reviews-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 76, 95, 0.15);
}

.reviews-card-inner {
  position: relative;
  z-index: 1;
}

.reviews-card p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2d3748;
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviews-card .badge {
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(15, 76, 95, 0.1);
  color: #0f4c5f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 76, 95, 0.08);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c5f 0%, #1a6b85 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 76, 95, 0.2);
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f4c5f;
  margin: 0;
  line-height: 1.3;
}

.review-date {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

.review-stars {
  font-size: 1.5rem;
  color: #fbbf24;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
  display: block;
  margin-top: 0.5rem;
}

#reviewsCarousel {
  position: relative;
  padding: 0 70px;
  z-index: 1;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
  opacity: 1;
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#reviewsCarousel .carousel-control-prev:hover,
#reviewsCarousel .carousel-control-next:hover {
  background: #0f4c5f;
  border-color: #0f4c5f;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(15, 76, 95, 0.3);
}

#reviewsCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

#reviewsCarousel .carousel-control-prev:active,
#reviewsCarousel .carousel-control-next:active {
  transform: translateY(-50%) scale(1.05);
}

#reviewsCarousel .carousel-control-prev {
  left: 0;
}

#reviewsCarousel .carousel-control-next {
  right: 0;
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(28%) saturate(1547%)
    hue-rotate(148deg) brightness(95%) contrast(93%);
  transition: filter 0.3s ease;
}

.review-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #0f4c5f 0%, #1a6b85 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(15, 76, 95, 0.2);
}

.review-cta-button:hover {
  background: linear-gradient(135deg, #d28fb2 0%, #e5a5c8 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 143, 178, 0.3);
}

.review-cta-button i {
  font-size: 1.125rem;
}

.reviews-hero .home-lead-hero__container {
  min-height: clamp(420px, 54vw, 620px);
}

.reviews-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(140deg, #ffffff 0%, #f7eaf3 48%, #f8fbfc 100%);
}

.reviews-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 76, 95, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 76, 95, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
  pointer-events: none;
}

.reviews-intro .container {
  position: relative;
  z-index: 1;
}

.reviews-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.reviews-intro__copy {
  max-width: 760px;
}

.reviews-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.14);
  color: #b96d9d;
  border: 1px solid rgba(210, 143, 178, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.reviews-intro__eyebrow i {
  color: #0f4c5f;
}

.reviews-intro h1 {
  margin: 0 0 1.2rem;
  color: #0f4c5f;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}

.reviews-intro p {
  max-width: 650px;
  margin: 0 0 1.8rem;
  color: #52606d;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.reviews-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.reviews-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.reviews-intro__btn-primary {
  background: linear-gradient(135deg, #0f4c5f 0%, #0a3a4a 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 14px 30px rgba(15, 76, 95, 0.24);
}

.reviews-intro__btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 76, 95, 0.32);
}

.reviews-intro__btn-secondary {
  background: #fff;
  color: #0f4c5f;
  border: 2px solid rgba(15, 76, 95, 0.18);
  box-shadow: 0 8px 22px rgba(15, 76, 95, 0.08);
}

.reviews-intro__btn-secondary:hover {
  color: #0f4c5f;
  border-color: rgba(15, 76, 95, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 76, 95, 0.14);
}

.reviews-intro__stats {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 76, 95, 0.08);
  box-shadow: 0 20px 50px rgba(15, 76, 95, 0.1);
}

.reviews-intro__score {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(15, 76, 95, 0.1);
}

.reviews-intro__score-value {
  color: #0f4c5f;
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.95;
  font-weight: 850;
}

.reviews-intro__score-stars {
  color: #fbbf24;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.reviews-intro__score-label,
.reviews-intro__stat span {
  color: #52606d;
  font-size: 0.95rem;
}

.reviews-intro__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-intro__stat {
  min-height: 112px;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfc 100%);
  border: 1px solid rgba(15, 76, 95, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.reviews-intro__stat strong {
  color: #d28fb2;
  font-size: 1.8rem;
  line-height: 1;
}

.all-google-reviews {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.all-google-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.all-google-reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  color: #0f4c5f;
  background: rgba(15, 76, 95, 0.07);
  border: 1px solid rgba(15, 76, 95, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.all-google-reviews__header h2 {
  color: #0f4c5f;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 0.75rem;
  font-weight: 850;
  letter-spacing: 0;
}

.all-google-reviews__header p {
  color: #52606d;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.all-google-reviews__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: #0f4c5f;
  border: 2px solid rgba(15, 76, 95, 0.14);
  box-shadow: 0 10px 24px rgba(15, 76, 95, 0.08);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.all-google-reviews__cta:hover {
  color: #0f4c5f;
  border-color: rgba(15, 76, 95, 0.38);
  transform: translateY(-2px);
}

.all-google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.all-google-reviews__loading {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 18px;
  background: #fff;
  color: #52606d;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 76, 95, 0.08);
}

.google-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(
    from -45deg,
    #4285f4 0 25%,
    #34a853 0 50%,
    #fbbc05 0 75%,
    #ea4335 0 100%
  );
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 76, 95, 0.12);
  flex: 0 0 auto;
}

.google-review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #52606d;
  font-size: 0.85rem;
  font-weight: 800;
}

.google-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 76, 95, 0.08);
  box-shadow: 0 12px 34px rgba(15, 76, 95, 0.08);
  overflow: hidden;
}

.google-review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #34a853 33%,
    #fbbc05 66%,
    #ea4335 100%
  );
}

.google-review-card__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.google-review-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c5f 0%, #d28fb2 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 76, 95, 0.12);
}

.google-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-review-card__identity h3 {
  color: #0f4c5f;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.2rem;
  font-weight: 800;
}

.google-review-card__identity p,
.google-review-card__rating span:last-child {
  color: #7a8490;
  margin: 0;
  font-size: 0.9rem;
}

.google-review-card__google {
  text-decoration: none;
}

.google-review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.google-review-card__stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.google-review-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.google-review-card__badges span {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.12);
  color: #9a5b80;
  font-size: 0.78rem;
  font-weight: 800;
}

.google-review-card__text {
  color: #2d3748;
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 1.1rem;
}

.google-review-card__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.25rem 0 1rem;
}

.google-review-card__photos img {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 76, 95, 0.12);
}

.google-review-card__owner {
  margin-top: auto;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 76, 95, 0.06),
    rgba(210, 143, 178, 0.08)
  );
  border: 1px solid rgba(15, 76, 95, 0.08);
}

.google-review-card__owner strong {
  display: block;
  color: #0f4c5f;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.google-review-card__owner p {
  color: #52606d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .reviews-header h1,
  .reviews-header h2 {
    font-size: 2rem;
  }

  .reviews-header p {
    font-size: 1rem;
  }

  #reviewsCarousel {
    padding: 0 55px;
  }

  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
  }

  #reviewsCarousel .carousel-control-prev-icon,
  #reviewsCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }

  .review-stars {
    font-size: 1.3rem;
  }

  .reviews-card {
    min-height: 240px;
  }

  .reviews-card p {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .all-google-reviews__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-intro__layout {
    grid-template-columns: 1fr;
  }

  .reviews-intro__copy {
    max-width: none;
    text-align: center;
  }

  .reviews-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-intro__actions {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .all-google-reviews__grid {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    padding: 1.15rem;
  }

  .reviews-hero .home-lead-hero__container {
    min-height: auto;
  }

  .reviews-intro {
    padding: 2.6rem 0 3.25rem;
  }

  .reviews-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-intro__btn {
    width: 100%;
  }

  .reviews-intro__mini-grid {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--dark);
  background: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--secondary);
}

.container {
  width: 100%;
  max-width: var(--nm-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--nm-gutter-x) * 0.5);
  padding-right: calc(var(--nm-gutter-x) * 0.5);
}
.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--nm-gutter-x) * 0.5);
  padding-right: calc(var(--nm-gutter-x) * 0.5);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--nm-gutter-x) * -0.5);
  margin-right: calc(var(--nm-gutter-x) * -0.5);
  margin-top: calc(var(--nm-gutter-y) * -1);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: calc(var(--nm-gutter-x) * 0.5);
  padding-right: calc(var(--nm-gutter-x) * 0.5);
  margin-top: var(--nm-gutter-y);
}
.g-0,
.gx-0 {
  --nm-gutter-x: 0rem;
}
.g-0,
.gy-0 {
  --nm-gutter-y: 0rem;
}
.g-1,
.gx-1 {
  --nm-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --nm-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --nm-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --nm-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --nm-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --nm-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --nm-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --nm-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --nm-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --nm-gutter-y: 3rem;
}

.col {
  flex: 1 0 0%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}

.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-column {
  flex-direction: column !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.text-center {
  text-align: center !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.top-0 {
  top: 0 !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.start-0 {
  left: 0 !important;
}
.end-0 {
  right: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.me-0 {
  margin-right: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}

/* Tighter spacing for booking form fields */
#bookingForm .mb-3 {
  margin-bottom: 0.5rem !important;
}
#bookingForm .mb-4 {
  margin-bottom: 1rem !important;
}
#bookingForm .row.mb-4 {
  margin-bottom: 1.25rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.small {
  font-size: 0.875em !important;
}
.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(52, 58, 64, 0.85);
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}

.rounded {
  border-radius: 0.5rem !important;
}
.rounded-3 {
  border-radius: 0.75rem !important;
}
.rounded-4 {
  border-radius: 1rem !important;
}
.rounded-pill {
  border-radius: 999px !important;
}
.shadow {
  box-shadow: 0 6px 20px rgba(15, 76, 95, 0.12) !important;
}
.shadow-sm {
  box-shadow: 0 3px 12px rgba(15, 76, 95, 0.1) !important;
}
.shadow-lg {
  box-shadow: var(--nm-shadow) !important;
}

.bg-light {
  background-color: var(--light) !important;
}
.bg-white {
  background-color: #fff !important;
}
.text-muted {
  color: rgba(52, 58, 64, 0.65) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-white {
  color: #fff !important;
}

.border {
  border: 1px solid rgba(15, 76, 95, 0.14) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: 1px solid rgba(15, 76, 95, 0.14) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.05rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 76, 95, 0.12);
}
.btn:active {
  transform: translateY(0);
}
.btn-lg {
  padding: 0.85rem 1.4rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background: #0d3f50 !important;
  border-color: #0d3f50 !important;
}
.btn-outline-primary {
  background: transparent !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.btn-outline-primary:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.btn-light {
  background: #fff !important;
  border-color: rgba(15, 76, 95, 0.18) !important;
  color: var(--primary) !important;
}
.btn-outline-light {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.card {
  background: #fff;
  border-radius: var(--nm-radius);
  border: 1px solid rgba(15, 76, 95, 0.1);
  box-shadow: 0 10px 28px rgba(15, 76, 95, 0.08);
  overflow: hidden;
}
.card-body {
  padding: 1.5rem;
}
.card-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.card-text {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 95, 0.14);
  background: #fff;
  color: var(--dark);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.35rem;
}
.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 76, 95, 0.2);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(210, 143, 178, 0.9);
  box-shadow: 0 0 0 0.25rem rgba(210, 143, 178, 0.2);
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.form-check-input {
  width: 1.1rem;
  height: 1.1rem;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-none {
    display: none !important;
  }
}

.nm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9998;
}
.nm-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(92vw, 360px);
  background: #fff;
  z-index: 9999;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transform: translateX(110%);
  transition: transform 0.22s ease;
  padding: 1rem;
  overflow-y: auto;
}
.offcanvas.offcanvas-end {
  right: 0;
  left: auto;
}
.offcanvas.offcanvas-start {
  left: 0;
  right: auto;
  transform: translateX(-110%);
}
.offcanvas.show {
  transform: translateX(0);
}
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 76, 95, 0.12);
}
.offcanvas-title {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
}
.btn-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 76, 95, 0.08);
  cursor: pointer;
  position: relative;
}
.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--primary);
  transform-origin: center;
}
.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.offcanvas-body {
  padding-top: 1rem;
}

.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

.accordion {
  border-radius: var(--nm-radius);
}
.accordion-item {
  border: 1px solid rgba(15, 76, 95, 0.12);
  border-radius: var(--nm-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 76, 95, 0.06);
}
.accordion-item + .accordion-item {
  margin-top: 0.85rem;
}
.accordion-button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, #fff, #f8f9fa);
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
}
.accordion-button::after {
  content: "\25BE";
  font-size: 0.9rem;
  opacity: 0.75;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
}
.accordion-button.collapsed::after {
  transform: rotate(-90deg);
}
.accordion-body {
  padding: 1rem 1.25rem 1.15rem 1.25rem;
  color: rgba(52, 58, 64, 0.9);
}

.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  display: none;
  position: relative;
  width: 100%;
}
.carousel-item.active {
  display: block;
}
.carousel-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.carousel-indicators [data-bs-target],
.carousel-indicators [data-bs-slide-to] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.carousel-indicators .active {
  background: var(--secondary);
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-prev {
  left: 18px;
}
.carousel-control-next {
  right: 18px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.carousel-control-prev-icon {
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  margin-left: 4px;
}
.carousel-control-next-icon {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin-right: 4px;
}

.hero-carousel.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}
.hero-carousel .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.hero-carousel .carousel-caption h1,
.hero-carousel .carousel-caption h3,
.hero-carousel .carousel-caption p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767.98px) {
  .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: unset;
    padding: 1.1rem 0.6rem 1.3rem 0.6rem;
    background: rgba(15, 76, 95, 0.65);
    text-align: center;
    border-radius: 0 0 1.2rem 1.2rem;
    width: 100vw;
    max-width: 100vw;
  }
  .carousel-caption h1,
  .carousel-caption h3 {
    font-size: 1.15rem !important;
    line-height: 1.24;
    padding: 0.3rem 0.7rem;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .carousel-caption h1 {
    font-size: 1.22rem !important;
  }
  .carousel-caption p {
    font-size: 1rem !important;
    margin-bottom: 0.4rem;
  }
  .carousel-caption .btn {
    font-size: 1rem;
    padding: 0.5rem 1.3rem;
    margin-top: 0.7rem;
  }
}
blockquote.blockquote {
  border-left: 4px solid #0f4c5f;
  padding-left: 1rem;
  color: #343a40;
}

/* Keep location-page review carousels readable when they sit on white cards. */
.card-body:has(#testCarousel) > h3.text-white,
.card-body:has(#testCarousel) h3.text-white {
  color: #0f4c5f !important;
}

#testCarousel blockquote.blockquote,
#testCarousel blockquote.blockquote p,
#testCarousel .carousel-item p.text-white {
  color: #4a5568 !important;
}
/* Modern Mobile Header */

.hero-bg {
  min-height: 380px;
  position: relative;
  color: var(--light);
  background: none;
  padding: 0;
  overflow: hidden;
}

.hero-full-img {
  width: 100vw;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(15, 76, 95, 0.75) 0%,
    rgba(210, 143, 178, 0.38) 100%
  );
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-radius: 0 0 2.5rem 2.5rem;
}

@media (max-width: 991.98px) {
  .hero-full-img {
    min-height: 200px;
    max-height: 260px;
  }
  .hero-overlay {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 0 0 1.2rem 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-full-img {
    min-height: 120px;
    max-height: 160px;
  }
  .hero-overlay {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0 0.7rem 0.7rem;
  }
}

.hero-inline-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(15, 76, 95, 0.13);
  margin-bottom: 2rem;
  object-fit: cover;
}
.hero-bg .container {
  position: relative;
  z-index: 2;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.65) 0%,
    rgba(210, 143, 178, 0.25) 100%
  );
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
}
.hero-bg h1,
.hero-bg p,
.hero-bg .btn {
  position: relative;
  z-index: 3;
}
.hero-bg .btn-outline-light {
  border-color: var(--light);
  color: var(--light);
}
.hero-bg .btn-outline-light:hover {
  background: var(--light);
  color: var(--primary);
}

/* Pink details and frames */
:root {
  --primary-pink: #d28fb2;
  --pink-light: #f7eaf3;
}
.pink-frame {
  border: 4px solid var(--primary-pink) !important;
  box-shadow: 0 2px 12px 0 rgba(210, 143, 178, 0.09);
  padding: 2px;
  background: #fff;
}
.pink-detail {
  color: #a94b78 !important;
}
.pink-bg {
  background: var(--primary-pink) !important;
  color: #fff !important;
}
.pink-border {
  border-color: var(--primary-pink) !important;
}
.pink-list .list-group-item {
  border-left: 4px solid var(--primary-pink);
  background: #fff;
}
.btn-primary,
.btn-pink {
  background: var(--primary-pink) !important;
  border-color: var(--primary-pink) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px 0 rgba(210, 143, 178, 0.15);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover,
.btn-pink:hover {
  background: #b96d9d !important;
  border-color: #b96d9d !important;
  color: #fff !important;
  box-shadow: 0 4px 16px 0 rgba(210, 143, 178, 0.22);
}
.btn-link {
  color: white;
  transition: color 0.2s;
}
.btn-link:hover {
  color: #b96d9d;
  text-decoration: underline;
}
.section-lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(120deg, #fff 80%, var(--pink-light) 100%);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px 0 rgba(210, 143, 178, 0.07);
}

.pbmit-heading-subheading h4.pbmit-subtitle {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-pink) !important;
}
.card,
.pbmit-ihbox-style-1 {
  border-radius: 1rem;
  border: 2px solid var(--primary-pink);
  box-shadow: 0 2px 16px 0 rgba(210, 143, 178, 0.08);
  background: #fff;
}
.list-group-item {
  border-radius: 0.5rem !important;
  margin-bottom: 0.5rem;
  border: 1px solid #f2d5e7;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-pink);
}
.carousel-caption h1,
.carousel-caption h3 {
  background: rgba(210, 143, 178, 0.75);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(210, 143, 178, 0.09);
}
.blockquote-footer {
  color: var(--primary-pink) !important;
  font-weight: 500;
}
.cta-section {
  background: linear-gradient(
    120deg,
    var(--primary-pink) 70%,
    #0f4c5f 100%
  ) !important;
  color: #fff !important;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(210, 143, 178, 0.09);
}
/* Responsive tweaks */
@media (max-width: 991.98px) {
  .section-lg {
    border-radius: 0.7rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cta-section {
    border-radius: 0.7rem;
  }
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fff 60%, #f7eaf3 100%);
  border-radius: 50%;
  box-shadow: 0 4px 18px 0 rgba(210, 143, 178, 0.22);
  border: 3px solid #d28fb2;
  color: #d28fb2;
  font-size: 2rem;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    color 0.18s,
    background 0.18s;
  position: relative;
}
.footer-social a:hover {
  background: linear-gradient(120deg, #d28fb2 60%, #fff 100%);
  color: #fff;
  border-color: #b96d9d;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 28px 0 rgba(210, 143, 178, 0.33);
  z-index: 2;
}
.footer-social .fa-facebook-f {
  color: #4267b2;
}
.footer-social .fa-instagram {
  color: #e1306c;
}
.footer-social a:hover .fa-facebook-f,
.footer-social a:hover .fa-instagram,
.footer-social a:hover .fa-google {
  color: #fff;
}
.footer-section {
  background: linear-gradient(120deg, #f8f9fa 70%, #f7eaf3 100%) !important;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -4px 32px 0 rgba(210, 143, 178, 0.1);
  padding: 3rem 0 1.5rem 0;
  margin-top: 3rem;
  color: #343a40;
  font-size: 1.08rem;
}
.footer-logo {
  width: 200px;
  max-width: 200px;
  height: auto !important;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 2px 6px #d28fb2aa);
}
.footer-title {
  font-weight: 700;
  color: #d28fb2;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-links a {
  color: #0f4c5f;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.18s;
  font-weight: 500;
  font-size: 1.02rem;
}
.footer-links a:hover {
  color: #d28fb2;
  text-decoration: underline;
}
.footer-contact i {
  color: #d28fb2;
  margin-right: 0.5rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px 0 rgba(210, 143, 178, 0.17);
  border: 3px solid #d28fb2;
  font-size: 2.1rem;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    color 0.18s,
    background 0.18s;
  position: relative;
}
.footer-social a:hover {
  background: linear-gradient(120deg, #d28fb2 70%, #fff 100%);
  color: #fff;
  border-color: #b96d9d;
  transform: scale(1.13) translateY(-4px);
  box-shadow: 0 8px 28px 0 rgba(210, 143, 178, 0.25);
  z-index: 2;
}
.footer-social .fa-facebook-f {
  color: #4267b2;
}
.footer-social .fa-instagram {
  color: #e1306c;
}
.footer-social a:hover .fa-facebook-f,
.footer-social a:hover .fa-instagram,
.footer-social a:hover .fa-google {
  color: #fff;
}
.footer-section .small,
.footer-section .copyright {
  color: #b96d9d;
  font-size: 0.98rem;
}
.footer-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0.7rem;
}
.footer-section ul li {
  margin-bottom: 0.22rem;
}
.footer-contact {
  margin-top: 0.8rem;
}
.footer-social-label {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #d28fb2;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-end;
  }
  .footer-section .col-md-4 {
    text-align: left;
  }
  .footer-section .col-md-4:last-child {
    text-align: right;
  }
}
@media (max-width: 991.98px) {
  .footer-section {
    text-align: center;
    padding-bottom: 80px !important;
  }
  .footer-social {
    justify-content: center;
  }
}
/* Fix for subtitle icon */
.pbmit-subtitle {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pbmit-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #0f4c5f 30%, #d28fb2 100%);
  box-shadow: 0 1px 3px rgba(15, 76, 95, 0.2);
}

.pbmit-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d28fb2;
  box-shadow: 0 0 4px rgba(210, 143, 178, 0.5);
  opacity: 0.9;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.pbmit-subtitle:hover::after {
  transform: translateY(-50%) scale(1.2);
  opacity: 1;
}
/* Service Cards Styling */
.service-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
  font-size: 2.5rem;
  color: #d28fb2;
  margin-bottom: 1rem;
}

.service-card .card-title {
  color: #0f4c5f;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card .card-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #0f4c5f, #d28fb2);
  border-radius: 3px;
}

.btn-outline-primary {
  color: #0f4c5f;
  border-color: #0f4c5f;
}

.btn-outline-primary:hover {
  background-color: #0f4c5f;
  border-color: #0f4c5f;
  color: white;
}
.faq-section .pbmit-subtitle {
  color: #d28fb2 !important;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.faq-section .pbmit-title {
  color: #0f4c5f !important;
  font-weight: 700;
  margin-bottom: 2.2rem;
  font-size: 2.1rem;
}
.faq-section .accordion-flush .accordion-item {
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(15, 76, 95, 0.1);
  border: 1.5px solid #d28fb2;
  margin-bottom: 1.2rem;
  background: #fff;
  transition: box-shadow 0.2s;
}
.faq-section .accordion-item:hover {
  box-shadow: 0 8px 32px 0 rgba(210, 143, 178, 0.14);
  border-color: #0f4c5f;
}
.faq-section .accordion-button {
  background: linear-gradient(90deg, #f8f9fa 80%, #f7eaf3 100%);
  color: #0f4c5f;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.1rem 1.5rem;
  border: none;
  outline: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.faq-section .accordion-button.collapsed {
  color: #343a40;
  background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
  color: #d28fb2;
  background: linear-gradient(90deg, #f7eaf3 60%, #fff 100%);
  box-shadow: none;
}
.faq-section .accordion-body {
  color: #343a40;
  background: #fff;
  padding: 1.4rem 2rem 1.2rem 2rem;
  font-size: 1.07rem;
  border-top: 1px solid #f8f9fa;
}
.faq-section ul {
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
}
.faq-section ul li {
  margin-bottom: 0.4rem;
  font-size: 1.04rem;
}
.faq-section strong[style] {
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .faq-section .accordion-body {
    padding: 1.1rem 0.8rem;
  }
  .faq-section .pbmit-title {
    font-size: 1.3rem;
  }
  .faq-section .accordion-button {
    font-size: 1rem;
    padding: 0.8rem 0.7rem;
  }
}
/* FAQ Section Custom Styling */
.faq-section {
  position: relative;
  overflow: visible;
}
.faq-section .pbmit-title {
  color: #0f4c5f !important;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
}
.faq-section .accordion-flush .accordion-item {
  border-radius: 0.75rem !important;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(15, 76, 95, 0.08);
  border: none;
  margin-bottom: 0.7rem;
  background: #fff;
  transition:
    box-shadow 0.2s,
    border 0.2s;
  position: relative;
}
.faq-section .accordion-item:before {
  display: none;
}
.faq-section .accordion-item:hover {
  box-shadow: 0 6px 20px 0 rgba(210, 143, 178, 0.13);
  border: 1px solid #d28fb2;
}
.faq-section .accordion-button {
  background: linear-gradient(90deg, #f8f9fa 80%, #f7eaf3 100%);
  color: #0f4c5f;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.3rem 0.85rem 2.1rem;
  border: none;
  outline: none;
  border-radius: 0.75rem;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 1px 6px 0 rgba(210, 143, 178, 0.03);
  position: relative;
  min-height: 0;
  align-items: center;
  display: flex;
}
.faq-section .accordion-button:before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #d28fb2;
  margin-right: 0.7rem;
  font-size: 1.05em;
  vertical-align: middle;
  display: inline-block;
}
.faq-section .accordion-button.collapsed {
  color: #343a40;
  background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(90deg, #d28fb2 60%, #0f4c5f 100%);
  box-shadow: 0 2px 10px 0 rgba(210, 143, 178, 0.1);
}
.faq-section .accordion-button:not(.collapsed):before {
  color: #fff;
}
.faq-section .accordion-body {
  color: #343a40;
  background: #fff;
  padding: 1rem 1.4rem 1rem 2.1rem;
  font-size: 0.97rem;
  border-top: 1px solid #f8f9fa;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 2px 6px 0 rgba(15, 76, 95, 0.03);
  position: relative;
}
.faq-section ul {
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}
.faq-section ul li {
  margin-bottom: 0.32rem;
  font-size: 0.97rem;
}
.faq-section strong[style] {
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .faq-section .accordion-body {
    padding: 0.7rem 0.5rem 0.7rem 1.1rem;
  }
  .faq-section .pbmit-title {
    font-size: 1.08rem;
  }
  .faq-section .accordion-button {
    font-size: 0.95rem;
    padding: 0.6rem 0.5rem 0.6rem 1.2rem;
  }
}
/* Modern, Pretty Navigation Bar */
.site-header-menu {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(15, 76, 95, 0.07);
  border-bottom: 2px solid #f7eaf3;
  padding: 0.7rem 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
.pbmit-main-header-area {
  background: transparent;
}
.pbmit-logo-menuarea {
  gap: 1.8rem;
}
.site-branding {
  display: flex;
  align-items: center;
}
.site-branding .logo-img {
  height: 42px;
  margin-right: 0.7rem;
}
.site-branding span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f4c5f;
  letter-spacing: 1px;
}
.main-menu .navbar-nav .nav-link {
  color: #0f4c5f;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 0.7rem 1.3rem;
  border-radius: 2rem;
  transition:
    background 0.18s,
    color 0.18s;
  position: relative;
  margin: 0 0.15rem;
}
.main-menu .navbar-nav .nav-link.active,
.main-menu .navbar-nav .nav-link:hover {
  background: linear-gradient(90deg, #d28fb2 30%, #0f4c5f 100%);
  color: #fff !important;
  box-shadow: 0 2px 12px 0 rgba(210, 143, 178, 0.08);
  text-decoration: none;
}
.main-menu .navbar-nav .nav-item.active .nav-link {
  background: linear-gradient(90deg, #0f4c5f 70%, #d28fb2 100%);
  color: #fff !important;
  font-weight: 700;
}
.navbar-toggler {
  border: none;
  background: #d28fb2;
  border-radius: 50%;
  padding: 0.4rem 0.6rem;
  box-shadow: 0 2px 8px 0 rgba(210, 143, 178, 0.15);
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d28fb2;
}
.offcanvas-header {
  border-bottom: 1px solid #f7eaf3;
}
.offcanvas-title {
  color: #0f4c5f;
  font-weight: 700;
  letter-spacing: 1px;
}
.offcanvas-body .nav-link {
  color: #0f4c5f;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 1.5rem;
  margin-bottom: 0.25rem;
}
.offcanvas-body .nav-link.active,
.offcanvas-body .nav-link:hover {
  background: linear-gradient(90deg, #d28fb2 30%, #0f4c5f 100%);
  color: #fff !important;
}
@media (max-width: 991px) {
  .site-header-menu {
    padding: 0.5rem 0;
  }
  .main-menu .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  .site-branding .logo-img {
    height: 36px;
  }
}
@media (max-width: 575px) {
  .main-menu .navbar-nav .nav-link {
    font-size: 0.98rem;
    padding: 0.5rem 0.7rem;
  }
  .site-branding .logo-img {
    height: 30px;
  }
}
/* Elegant menu underline style - no background, black text, pink underline */
.main-menu .navbar-nav .nav-link {
  position: relative;
  color: #23272b;
  background: none !important;
  border: none;
  font-weight: 500;
  transition: color 0.2s;
}
.main-menu .navbar-nav .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: #d28fb2;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-menu .navbar-nav .nav-link.active,
.main-menu .navbar-nav .nav-item.active .nav-link {
  color: #d28fb2 !important;
  background: none !important;
}
.main-menu .navbar-nav .nav-link.active:after,
.main-menu .navbar-nav .nav-item.active .nav-link:after {
  transform: scaleX(1);
  background: #d28fb2;
}
.main-menu .navbar-nav .nav-link:hover:after {
  transform: scaleX(1);
}
.main-menu .navbar-nav .nav-link:hover {
  color: #d28fb2 !important;
}
/* Mobile menu underline */
.offcanvas-body .navbar-nav .nav-link {
  position: relative;
  color: #23272b;
  background: none !important;
  border: none;
  font-weight: 500;
  transition: color 0.2s;
}
.offcanvas-body .navbar-nav .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: #d28fb2;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-body .navbar-nav .nav-link.active:after,
.offcanvas-body .navbar-nav .nav-item.active .nav-link:after {
  transform: scaleX(1);
  background: #d28fb2;
}
.offcanvas-body .navbar-nav .nav-link.active,
.offcanvas-body .navbar-nav .nav-item.active .nav-link {
  color: #23272b !important;
  background: none !important;
}
.offcanvas-body .navbar-nav .nav-link:hover:after {
  transform: scaleX(1);
}
.offcanvas-body .navbar-nav .nav-link:hover {
  color: #d28fb2 !important;
}

.why-choose-section {
  margin-bottom: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.why-choose-accent {
  width: 50px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0f4c5f 30%, #d28fb2 100%);
  margin-bottom: 0.7rem;
}
.why-choose-title {
  font-size: 1.25rem;
  opacity: 0.95;
  letter-spacing: 1.2px;
  margin-bottom: 0.3rem;
}
.why-choose-grid {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}
.why-choose-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 36px 0 rgba(210, 143, 178, 0.13);
  border: none;
  transition:
    box-shadow 0.23s,
    transform 0.18s;
  position: relative;
  z-index: 2;
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.why-choose-card:hover {
  box-shadow:
    0 12px 48px 0 rgba(15, 76, 95, 0.19),
    0 0 0 8px #d28fb226;
  transform: translateY(-8px) scale(1.045);
}
.why-choose-img-pretty {
  height: 340px;
  max-width: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 2.2rem;
  box-shadow:
    0 12px 40px 0 rgba(15, 76, 95, 0.13),
    0 6px 28px 0 rgba(210, 143, 178, 0.15);
  background: #fff;
  margin-bottom: 1.2rem;
  border: none;
  transition: transform 0.18s;
}
.why-choose-card:hover .why-choose-img-pretty {
  box-shadow:
    0 16px 48px 0 rgba(210, 143, 178, 0.22),
    0 8px 32px 0 rgba(15, 76, 95, 0.13);
  transform: scale(1.06) rotate(-1deg);
}
.why-choose-h5 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #a94b78 !important;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}
.why-choose-desc {
  color: #343a40;
  font-size: 1.07rem;
  opacity: 0.92;
  margin-bottom: 0;
}
.why-choose-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (max-width: 991.98px) {
  .why-choose-img-pretty {
    height: 300px;
    max-width: 240px;
    border-radius: 1.6rem;
  }
  .why-choose-card {
    min-height: 460px;
  }
}
@media (max-width: 575.98px) {
  .why-choose-img-pretty {
    width: min(78vw, 280px);
    height: clamp(300px, 92vw, 380px);
    max-width: 280px;
    border-radius: 1.45rem;
    margin-bottom: 1.35rem;
  }
  .why-choose-section {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }
  .why-choose-card {
    min-height: auto;
    padding: 1.35rem !important;
  }
}

.service-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: 0 18px 36px rgba(15, 76, 95, 0.12);
  isolation: isolate;
}
.service-card-glow {
  position: absolute;
  inset: -25% -20% 45% -20%;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(210, 143, 178, 0.32),
      transparent 65%
    ),
    radial-gradient(circle at 75% 20%, rgba(15, 76, 95, 0.28), transparent 70%);
  filter: blur(24px);
  opacity: 0.9;
  z-index: -1;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.06) rotate(-1.2deg);
  filter: saturate(1.05);
}
@media (max-width: 991.98px) {
  .service-card-visual {
    border-radius: 22px;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .service-card-visual {
    border-radius: 18px;
    margin-bottom: 1rem;
  }
}

.review-carousel-section {
  background: transparent;
  margin-bottom: 3rem;
  padding: 2rem 0;
  position: relative;
}
.review-carousel-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.review-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2.75rem;
  margin: 0 auto;
  max-width: 880px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.google-badge {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
}
.google-logo {
  height: 32px;
  width: auto;
}
.stars {
  color: #d28fb2;
  font-size: 1.2rem;
  letter-spacing: 3px;
}
.review-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 1.75rem;
  margin-top: 1.5rem;
}
.review-content p {
  margin: 0;
}
.reviewer-info h5 {
  margin: 0;
  color: #0f4c5f;
  font-weight: 700;
  font-size: 1.05rem;
}
.reviewer-info .small {
  color: #d28fb2;
  font-weight: 500;
}
.review-date {
  font-size: 0.92rem;
  color: #a0aec0;
  font-weight: 400;
}
#reviewCarousel {
  position: relative;
  padding: 0 80px;
}
#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
  width: 56px;
  height: 56px;
  background: #0f4c5f;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border: none;
  box-shadow: 0 6px 20px rgba(15, 76, 95, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#reviewCarousel .carousel-control-prev {
  left: 0;
}
#reviewCarousel .carousel-control-next {
  right: 0;
}
#reviewCarousel .carousel-control-prev:hover,
#reviewCarousel .carousel-control-next:hover {
  background: #0f4c5f;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(15, 76, 95, 0.35);
}
#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-image: none;
  background-size: 0;
  filter: none;
  display: block;
  position: relative;
}
#reviewCarousel .carousel-control-prev-icon::before,
#reviewCarousel .carousel-control-next-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid white;
  border-right: 2.5px solid white;
}
#reviewCarousel .carousel-control-prev-icon::before {
  transform: rotate(-135deg);
  right: 5px;
}
#reviewCarousel .carousel-control-next-icon::before {
  transform: rotate(45deg);
  left: 5px;
}
#reviewCarousel .carousel-indicators {
  position: static;
  margin-top: 2.25rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
#reviewCarousel .carousel-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #0f4c5f;
  border: none;
  opacity: 0.25;
  margin: 0;
  transition: all 0.3s ease;
  padding: 0;
}
#reviewCarousel .carousel-indicators button:hover {
  opacity: 0.5;
}
#reviewCarousel .carousel-indicators button.active {
  background-color: #d28fb2;
  opacity: 1;
  width: 32px;
  border-radius: 5px;
}

.reviews-google-cta {
  margin-top: 1.75rem;
}

.reviews-google-btn {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(90deg, #d28fb2 0%, #0f4c5f 100%);
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(15, 76, 95, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-google-btn i {
  font-size: 1.1rem;
}

.reviews-google-btn:hover {
  background: linear-gradient(90deg, #0f4c5f 0%, #d28fb2 100%);
  box-shadow: 0 12px 34px rgba(210, 143, 178, 0.4);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .review-card {
    padding: 1.75rem 1.5rem;
    margin: 0 1rem;
  }
  #reviewCarousel {
    padding: 0 60px;
  }
  #reviewCarousel .carousel-control-prev,
  #reviewCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
  }
  .review-content {
    font-size: 1rem;
  }
}

.sticky-contact-widget {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.contact-toggle-btn {
  background: linear-gradient(90deg, #d28fb2 30%, #0f4c5f 100%);
  color: #fff;
  border: none;
  border-radius: 2rem 2rem 2rem 2rem;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.85rem 1.7rem 0.85rem 1.3rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(15, 76, 95, 0.13);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.14s ease;
}
.contact-toggle-btn:hover {
  background: linear-gradient(90deg, #0f4c5f 60%, #d28fb2 100%);
  box-shadow: 0 8px 28px 0 rgba(210, 143, 178, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.contact-widget-panel {
  background: linear-gradient(120deg, #fff 70%, #f7eaf3 100%);
  border: 2px solid #d28fb2;
  border-radius: 1.7rem;
  padding: 2.1rem 2rem 1.5rem 2rem;
  min-width: 320px;
  max-width: 350px;
  box-shadow: 0 8px 28px 0 rgba(15, 76, 95, 0.13);
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.4s cubic-bezier(0.28, 0.84, 0.42, 1) 1;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-widget-panel.active {
  display: flex;
}

.contact-widget-form {
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 0.9rem 1rem;
  box-shadow: 0 4px 16px rgba(15, 76, 95, 0.08);
}

.contact-widget-form .hero-quote-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-widget-form .hero-quote-form .form-row {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-widget-form .hero-quote-form .form-row .form-group {
  width: 100%;
  margin-bottom: 0.35rem;
}

.contact-widget-form .hero-quote-form .form-group {
  margin-bottom: 0.4rem;
}

.contact-widget-form .hero-quote-form .form-group input,
.contact-widget-form .hero-quote-form .form-group select,
.contact-widget-form .hero-quote-form .form-group textarea {
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem 0.55rem 2.3rem;
}

.contact-widget-form .hero-quote-form .input-icon .icon {
  left: 0.85rem;
  width: 16px;
  height: 16px;
}

.contact-widget-form .hero-quote-form textarea {
  min-height: 70px;
}

.contact-widget-form .btn-hero-cta {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.contact-widget-form__loading {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #d28fb2;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.contact-close-btn:hover {
  color: #0f4c5f;
}
.cta-socials .cta-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(15, 76, 95, 0.08);
  text-decoration: none;
  border: none;
}
.cta-socials .cta-icon-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 18px 0 rgba(210, 143, 178, 0.16);
  filter: brightness(1.15);
  text-decoration: none;
  color: #fff;
}
.contact-widget-panel .btn-primary {
  background: linear-gradient(90deg, #d28fb2 30%, #0f4c5f 100%) !important;
  color: #fff !important;
  border-radius: 2rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px 0 rgba(15, 76, 95, 0.11);
  letter-spacing: 0.5px;
  border: none;
}
.contact-widget-panel .btn-primary:hover {
  background: linear-gradient(90deg, #0f4c5f 60%, #d28fb2 100%) !important;
  color: #fff !important;
}

/* Facebook Share Button Styling */
.facebook-share-container {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(15, 76, 95, 0.08);
  border: 1px solid rgba(210, 143, 178, 0.2);
  transition: all 0.3s ease;
  max-width: 250px;
  margin-left: auto;
}

.facebook-share-container:hover {
  box-shadow: 0 6px 18px rgba(210, 143, 178, 0.15);
  transform: translateY(-2px);
}

.fb-share-label {
  color: #d28fb2;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.fb-share-label i {
  color: #d28fb2;
}

.facebook-like-button {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Hero section Facebook share button */
.hero-share-button {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  max-width: 220px;
}

.hero-share-button:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
}

.share-label {
  color: #d28fb2;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Media queries for responsive Facebook buttons */
@media (max-width: 767px) {
  .facebook-share-container {
    margin: 0 auto;
  }

  .hero-share-button {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .sticky-contact-widget {
    right: 1rem;
    bottom: 1rem;
  }
  .contact-widget-panel {
    min-width: 90vw;
    max-width: 96vw;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}

/* Services Page Styles */
.service-card {
  border-radius: 15px;
  box-shadow: 0 6px 32px 0 rgba(15, 76, 95, 0.13);
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.cta-section-pink .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.cta-img {
  max-width: 320px;
  width: 100%;
  border-radius: 1.7rem;
  box-shadow: 0 8px 32px 0 rgba(15, 76, 95, 0.12);
  margin-bottom: 0;
  background: #fff;
  object-fit: cover;
}
.cta-btn-pink {
  background: #0f4c5f !important;
  color: #fff !important;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 2px 14px 0 rgba(15, 76, 95, 0.11);
  letter-spacing: 0.7px;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.13s;
}
.cta-btn-pink:hover {
  background: #d28fb2 !important;
  color: #0f4c5f !important;
  border: 2px solid #0f4c5f;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(210, 143, 178, 0.18);
}
.cta-or-text {
  display: inline-block;
  font-size: 1.08rem;
  color: #fff;
  opacity: 0.93;
  margin-right: 0.5rem;
}
@media (max-width: 900px) {
  .cta-section-pink .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .cta-img {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .cta-section-pink {
    border-radius: 1.2rem;
  }
  .cta-section-pink .display-6 {
    font-size: 1.35rem;
  }
  .cta-btn-pink {
    font-size: 1rem;
    padding: 0.7rem 1.3rem;
  }
  .cta-img {
    max-width: 140px;
    margin-bottom: 1.2rem;
  }
}

/* About Page Styles */
.team-gallery-section {
  margin-bottom: 2.5rem;
}

.about-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(210, 143, 178, 0.09);
  margin-top: -70px;
  margin-bottom: 2rem;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
}

.about-section h2,
.about-section h5 {
  color: #d698b9 !important;
}

/* Core Values (About Page) */
.values-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.values-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #0f4c5f;
  background: rgba(15, 76, 95, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.values-intro__eyebrow i {
  color: #d28fb2;
}

.values-intro__title {
  color: #0f4c5f;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.values-intro__copy {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.7;
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: stretch;
}

.values-highlight {
  background: linear-gradient(
    160deg,
    rgba(15, 76, 95, 0.08) 0%,
    rgba(210, 143, 178, 0.08) 100%
  );
  border-radius: 28px;
  padding: 2.75rem;
  box-shadow: 0 24px 60px rgba(15, 76, 95, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.values-highlight__title {
  color: #0f4c5f;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}

.values-highlight__copy {
  color: #3d4b55;
  font-size: 1.05rem;
  line-height: 1.7;
}

.values-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-weight: 600;
  color: #0f4c5f;
}

.values-highlight__list i {
  color: #d28fb2;
  margin-right: 0.6rem;
}

.values-highlight__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 14px 30px rgba(15, 76, 95, 0.12);
}

.values-highlight__badge i {
  font-size: 1.75rem;
  color: #52b788;
}

.values-highlight__badge-label {
  display: block;
  font-weight: 700;
  color: #0f4c5f;
}

.values-highlight__badge small {
  color: #6c7a84;
  font-size: 0.85rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.values-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 24px 40px rgba(52, 58, 64, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.values-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(210, 143, 178, 0.12) 0%,
    rgba(15, 76, 95, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px rgba(15, 76, 95, 0.12);
}

.values-card:hover::after {
  opacity: 1;
}

.values-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 95, 0.08);
  color: var(--icon-color, #d28fb2);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.values-card__title {
  color: #0f4c5f;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.values-card__copy {
  color: #4f5a64;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.values-card--mission {
  background: linear-gradient(
    150deg,
    rgba(15, 76, 95, 0.95),
    rgba(15, 76, 95, 0.82)
  );
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 76, 95, 0.18);
}

.values-card--mission .values-card__title,
.values-card--mission .values-card__copy {
  color: #ffffff;
}

.values-card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 992px) {
  .values-layout {
    grid-template-columns: 1fr;
  }

  .values-highlight {
    padding: 2.2rem;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-card {
    padding: 1.75rem;
  }
}

.feature-block {
  background: var(--light);
  border-radius: 1rem;
  padding: 2rem 1rem 1.25rem 1rem;
  box-shadow: 0 2px 12px rgba(210, 143, 178, 0.07);
  text-align: center;
  transition: box-shadow 0.2s;
  height: 100%;
  color: var(--dark);
}

.feature-block:hover {
  box-shadow: 0 4px 24px rgba(15, 76, 95, 0.13);
}

.hero-section {
  background: linear-gradient(120deg, var(--secondary) 0%, #fff 100%);
  border-radius: 1.5rem;
  box-shadow: 0 2px 24px 0 rgba(210, 143, 178, 0.07);
  padding: 4.5rem 1.5rem 3.5rem 1.5rem;
  margin-top: 2rem;
}

.btn-outline-pink {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  background: #fff;
  border-radius: 2rem;
  font-weight: 600;
  transition:
    background 0.18s,
    color 0.18s;
}

.btn-outline-pink:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .hero-section {
    padding: 2.5rem 0.7rem 1.5rem 0.7rem;
  }
}
/* Footer Styles */
.footer-section .fa {
  vertical-align: middle;
}
.footer-section .footer-title i,
.footer-section .footer-social-label i {
  font-size: 1.15rem;
  margin-right: 0.4rem;
}
.footer-section .footer-links a i {
  color: var(--primary-pink);
  margin-right: 0.3rem;
  font-size: 1.07rem;
}
/* Footer contact icon styles combined with rule below */
.footer-section .footer-contact a.email-link {
  font-size: 0.97em;
  vertical-align: middle;
  white-space: nowrap;
  overflow-wrap: anywhere;
  display: inline-block;
  margin-left: 0.1em;
  max-width: 100%;
}
.footer-section .footer-contact .business-hours {
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 575.98px) {
  .footer-section .footer-contact a.email-link {
    display: block !important;
    text-align: center !important;
    margin: 0.2em auto !important;
    width: fit-content;
    float: none !important;
  }
}

.footer-section .footer-contact i {
  color: var(--primary-pink);
  margin-right: 0.35rem;
  font-size: 1.07rem;
}
.footer-section .small i {
  color: var(--primary-pink);
  margin-right: 0.25rem;
  font-size: 1.07rem;
}

.footer-social a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.footer-social a:visited,
.footer-social a:active,
.footer-social a:focus,
.footer-social a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Responsive Footer Styles */
@media (max-width: 991.98px) {
  .footer-responsive .row.align-items-center {
    flex-direction: column !important;
    text-align: center !important;
  }
  .footer-responsive .footer-title,
  .footer-responsive .footer-links,
  .footer-responsive .footer-contact,
  .footer-responsive .footer-social-label,
  .footer-responsive .footer-social {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 1rem;
  }
  .footer-responsive .footer-logo {
    margin-bottom: 1rem;
    max-width: 180px;
  }
  .footer-responsive .footer-social a {
    margin: 0 0.5rem 0.7rem 0.5rem !important;
    font-size: 1.5rem;
    padding: 0.7rem;
    border-radius: 50%;
  }
  .footer-responsive .footer-contact div,
  .footer-responsive .footer-links a {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
  }
  .footer-responsive .footer-links a {
    padding: 0.4rem 0;
  }
  .footer-responsive .copyright,
  .footer-responsive .footer-link {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1201px) and (max-width: 1395px) {
  .footer-email-responsive {
    display: block !important;
    width: 100%;
    margin-bottom: 2.5rem !important;
    text-align: left;
  }
  .footer-responsive .footer-social {
    display: block !important;
    width: 100%;
    margin-top: -1rem !important;
    text-align: left;
  }
}

@media (max-width: 1200px) {
  .footer-responsive .row.align-items-center {
    flex-direction: column !important;
    text-align: center !important;
  }
  .footer-responsive .footer-title,
  .footer-responsive .footer-links,
  .footer-responsive .footer-contact,
  .footer-responsive .footer-social-label,
  .footer-responsive .footer-social {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 1rem;
  }
  .footer-responsive .footer-logo {
    margin-bottom: 1rem;
    max-width: 180px;
  }
  .footer-responsive .footer-social a {
    margin: 0 0.5rem 0.7rem 0.5rem !important;
    font-size: 1.5rem;
    padding: 0.7rem;
    border-radius: 50%;
  }
  .footer-responsive .footer-contact div,
  .footer-responsive .footer-links a {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
  }
  .footer-responsive .footer-links a {
    padding: 0.4rem 0;
  }
  .footer-responsive .copyright,
  .footer-responsive .footer-link {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(120deg, var(--light) 80%, var(--pink-light) 100%);
  border-radius: 1.5rem 1.5rem 0 0;
  margin-bottom: 0;
  box-shadow: 0 -4px 32px 0 rgba(210, 143, 178, 0.1);
  border-top: 4px solid var(--primary);
}

/* Location Pages Styles */
.location-hero {
  background: linear-gradient(
    120deg,
    var(--primary) 70%,
    var(--secondary) 100%
  );
  color: white;
}

.location-cta {
  background: var(--secondary);
  color: #fff;
}

.location-heading {
  color: var(--primary);
}

.location-btn {
  background: var(--primary);
  border: none;
}

.location-footer {
  background: var(--light);
  color: var(--dark);
}

.location-footer img {
  height: 40px;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
  .site-header-menu {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(15, 76, 95, 0.07);
    border-bottom: 2px solid var(--secondary);
    padding: 0.3rem 0;
    z-index: 1051;
  }
  .pbmit-logo-menuarea {
    width: 100%;
    justify-content: space-between !important;
    align-items: center;
  }
  .site-branding {
    padding-left: 1rem;
  }
  .navbar-toggler {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-right: 0.5rem;
    padding: 0.25rem 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    z-index: 1060;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-color: var(--secondary);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,76,95,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .offcanvas {
    border-radius: 18px 0 0 18px;
    box-shadow: -2px 0 16px rgba(15, 76, 95, 0.1);
    z-index: 1061;
  }
  .offcanvas-backdrop {
    z-index: 1060;
  }
}

.location-footer a {
  color: var(--primary);
}

/* LinkedIn Icon Color */
.footer-social .fa-linkedin-in {
  color: #0a66c2;
}

.gallery-img-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  border: 2px solid #d28fb2;
  box-shadow: 0 2px 16px 0 rgba(210, 143, 178, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gallery-img-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(15, 76, 95, 0.13);
  border-color: #0f4c5f;
}
.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.2rem;
  transition: filter 0.2s;
  box-shadow: 0 2px 8px rgba(15, 76, 95, 0.07);
}
@media (max-width: 900px) {
  .gallery-img {
    height: 170px;
  }
}
@media (max-width: 600px) {
  .gallery-img {
    height: 110px;
  }
  .team-gallery-section {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* =============================================
   Standard Site Navigation (injected by scripts.js)
   All styles are scoped to #nm-nav and injected
   inline by the script — nothing needed here.
   ============================================= */

.footer-social a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.footer-social a:visited,
.footer-social a:active,
.footer-social a:focus,
.footer-social a:hover {
  text-decoration: none !important;

  box-shadow: none !important;
}

/* === Migrated inline styles === */
/* Source: about.html */
/* Floating Bubbles Animation */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(210, 143, 178, 0.1);
  animation: float 8s ease-in-out infinite;
}

.bubble-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.bubble-3 {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 30%;
  animation-delay: 2s;
  background: rgba(15, 76, 95, 0.1);
}

.bubble-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
  background: rgba(15, 76, 95, 0.1);
}

.bubble-5 {
  width: 60px;
  height: 60px;
  bottom: 40%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
}

/* Additional Styles */
.text-pink {
  color: #d28fb2 !important;
}

.btn-outline-pink {
  color: #d28fb2;
  border-color: #d28fb2;
  transition: all 0.3s ease;
}

.btn-outline-pink:hover {
  background-color: #d28fb2;
  color: white;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Source: airbnb-cleaning.html */
/* Feature Cards Styling */
.feature-card {
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 95, 0.05);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 30px rgba(15, 76, 95, 0.1) !important;
}

.feature-icon {
  width: 95px;
  height: 95px;
  background-color: rgba(15, 76, 95, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background-color: rgba(210, 143, 178, 0.2) !important;
  transform: scale(1.1);
}

.feature-icon i {
  color: #d28fb2;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  transform: rotate(10deg);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.image-container img {
  height: 160px;
  object-fit: cover;
  width: 100%;
  transition: all 0.5s ease;
}

.feature-card:hover .image-container img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 76, 95, 0.1),
    rgba(210, 143, 178, 0.2)
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .image-overlay {
  opacity: 1;
}

/* Benefits Section Styling */
.benefit-item {
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 2px solid rgba(15, 76, 95, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background-color: rgba(210, 143, 178, 0.1);
  border-color: #d28fb2;
  transform: scale(1.1);
}

.benefit-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.card-text {
  color: #6c757d;
  line-height: 1.6;
}

.btn-primary {
  background-color: #0f4c5f;
  border-color: #0f4c5f;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0a3a4a;
  border-color: #0a3a4a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(15, 76, 95, 0.3);
}

.image-accent-shape {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(210, 143, 178, 0.2);
  z-index: -1;
}

/* Add responsive adjustments */
@media (max-width: 767px) {
  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-img {
    height: 26px;
  }
}

/* Source: airbnb-cleaning.html */
.airbnb-services {
  background-color: #f8f9fa;
}

.service-card {
  transition: all 0.4s ease;
  background-color: #fff;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(15, 76, 95, 0.1) !important;
}

.service-icon-wrapper {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(15, 76, 95, 0.1);
  transition: all 0.4s ease;
}

.service-icon i {
  color: #0f4c5f;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(210, 143, 178, 0.2);
  transform: rotate(10deg);
}

.service-card:hover .service-icon i {
  color: #d28fb2;
  transform: scale(1.1);
}

.service-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(210, 143, 178, 0.05);
  z-index: 0;
  transition: all 0.4s ease;
}

.service-card:hover .service-shape {
  transform: scale(1.5);
  background-color: rgba(210, 143, 178, 0.1);
}

@media (max-width: 767px) {
  .service-card {
    padding: 1.5rem !important;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }
}

/* Source: airbnb-cleaning.html */
.col-lg-2-4 {
  width: 20%;
}
@media (max-width: 992px) {
  .col-lg-2-4 {
    width: auto;
  }
}

/* Source: airbnb-cleaning.html */
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Source: application.html */
:root {
  --primary: #0f4c5f;
  --primary-dark: #0a3a4a;
  --secondary: #d28fb2;
  --light: #f8f9fa;
  --dark: #343a40;
}

body {
  padding-top: 80px;
}

/* â”€â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.careers-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.careers-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Show the full photo, never crop: "contain" fits the whole
               image inside the box; any leftover space shows the section's
               brand-colored background instead of slicing off a head. */
  object-fit: contain;
  opacity: 0.45;
}
.careers-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.careers-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.careers-hero h1 span {
  color: var(--secondary);
}
.careers-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1.45rem;
  padding: 0.85rem 2rem;
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(210, 143, 178, 0.45);
  margin-bottom: 1.5rem;
}
.pay-badge i {
  font-size: 1.1rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.hero-tags span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-tags span i {
  margin-right: 0.4rem;
  color: var(--secondary);
}

.btn-apply-hero {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.9rem 2.6rem;
  border-radius: 60px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(15, 76, 95, 0.35);
}
.btn-apply-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(15, 76, 95, 0.45);
  color: #fff;
}

.section-badge {
  display: inline-block;
  background: rgba(210, 143, 178, 0.12);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.section-sub {
  color: #6c757d;
  font-size: 1.05rem;
  max-width: 560px;
}

/* â”€â”€â”€ Benefit Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.perk-card {
  background: var(--light);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid transparent;
}
.perk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(15, 76, 95, 0.1);
  border-color: rgba(210, 143, 178, 0.3);
}
.perk-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.perk-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.perk-card p {
  color: #6c757d;
  font-size: 0.92rem;
  margin: 0;
}

/* â”€â”€â”€ Requirements â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.req-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
}
.req-section .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.req-section .section-heading {
  color: #fff;
}
.req-section .section-sub {
  color: rgba(255, 255, 255, 0.75);
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.req-item:last-child {
  border-bottom: none;
}
.req-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
}
.req-item span {
  font-size: 1.05rem;
  padding-top: 0.5rem;
}

/* â”€â”€â”€ Image Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.image-banner {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: var(--primary, #0f4c5f);
}
.image-banner img {
  width: 100%;
  height: 100%;
  /* Show the full photo, never crop: portrait photos (like the one
               used here) were being center-cropped by "cover" inside this
               fixed-height banner, cutting off heads. "contain" fits the
               whole image; the brand-colored background above fills any
               leftover space instead. */
  object-fit: contain;
}
.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--primary) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.image-banner-overlay blockquote {
  color: #fff;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  max-width: 600px;
}
.image-banner-overlay blockquote footer {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-top: 0.5rem;
  background: none;
  padding: 0;
  text-align: left;
}

/* â”€â”€â”€ Application Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-section {
  padding: 5rem 0;
  background: var(--light);
}
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}
.form-card .form-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.form-card .form-control,
.form-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 76, 95, 0.12);
}
.required-star::after {
  content: " *";
  color: #dc3545;
}
.btn-submit-app {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 60px;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-submit-app:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(15, 76, 95, 0.35);
  color: #fff;
}

/* â”€â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.careers-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.92rem;
}
.careers-footer a {
  color: var(--secondary);
  text-decoration: none;
}
.careers-footer a:hover {
  text-decoration: underline;
}

/* â”€â”€â”€ Contact Widget â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sticky-contact-widget {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
}
.contact-toggle-btn {
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  background-color: var(--primary) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  transition: transform 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 1rem !important;
}
.contact-widget-panel {
  position: absolute !important;
  bottom: calc(100% + 15px) !important;
  right: 0 !important;
  width: 300px !important;
  background: white !important;
  padding: 1.5rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  border-radius: 15px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) !important;
  transition:
    transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
  pointer-events: none !important;
}
.contact-widget-panel.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.contact-close-btn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  color: #666 !important;
  cursor: pointer !important;
}
.contact-close-btn:hover {
  color: #333 !important;
}
.cta-icon-link {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}
.cta-icon-link:hover {
  transform: translateY(-3px) !important;
  color: white !important;
}
@media (max-width: 576px) {
  .sticky-contact-widget {
    bottom: 20px !important;
    right: 20px !important;
  }
  .contact-toggle-btn {
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
  }
  .contact-widget-panel {
    width: 280px !important;
    right: -10px !important;
  }
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
  .careers-hero h1 {
    font-size: 2.4rem;
  }
  .pay-badge {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }
  .section-heading {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .careers-hero {
    min-height: 75vh;
  }
  .careers-hero h1 {
    font-size: 1.9rem;
  }
  .pay-badge {
    font-size: 1.05rem;
  }
  .form-card {
    padding: 2rem 1.5rem;
  }
  .image-banner {
    height: 300px;
  }
}

.careers-hero--image-only {
  min-height: clamp(280px, 48vw, 560px);
  background: #0f4c5f;
}
.careers-hero--image-only::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 76, 95, 0.08) 0%,
    rgba(15, 76, 95, 0.32) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.careers-hero--image-only .careers-hero-img {
  opacity: 1;
  filter: none;
}
.careers-intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff 0%, #f7eaf3 52%, #f8fbfc 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.careers-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 76, 95, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 76, 95, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
  pointer-events: none;
}
.careers-intro .container {
  position: relative;
  z-index: 1;
}
.careers-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.careers-intro__copy {
  max-width: 760px;
}
.careers-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.14);
  color: #b96d9d;
  border: 1px solid rgba(210, 143, 178, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.careers-intro__eyebrow i {
  color: #0f4c5f;
}
.careers-intro h1 {
  margin: 0 0 1.2rem;
  color: #0f4c5f;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}
.careers-intro h1 span {
  color: #d28fb2;
}
.careers-intro p {
  max-width: 650px;
  margin: 0 0 1.8rem;
  color: #52606d;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}
.careers-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.careers-intro .btn-apply-hero {
  background: linear-gradient(135deg, #0f4c5f 0%, #0a3a4a 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 76, 95, 0.24);
}
.careers-intro__secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 2px solid rgba(15, 76, 95, 0.18);
  background: #fff;
  color: #0f4c5f;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 76, 95, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.careers-intro__secondary-btn:hover {
  color: #0f4c5f;
  border-color: rgba(15, 76, 95, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 76, 95, 0.14);
}
.careers-intro__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.careers-intro__highlight {
  min-height: 132px;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 76, 95, 0.08);
  box-shadow: 0 16px 36px rgba(15, 76, 95, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}
.careers-intro__highlight i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0f4c5f 0%, #d28fb2 100%);
  box-shadow: 0 10px 22px rgba(15, 76, 95, 0.14);
}
.careers-intro__highlight span {
  color: #0f4c5f;
  font-weight: 800;
  line-height: 1.25;
}
@media (max-width: 991px) {
  .careers-intro__layout {
    grid-template-columns: 1fr;
  }
  .careers-intro__copy {
    max-width: none;
    text-align: center;
  }
  .careers-intro p {
    margin-left: auto;
    margin-right: auto;
  }
  .careers-intro__actions {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .careers-hero--image-only {
    min-height: 260px;
  }
  .careers-intro {
    padding: 2.6rem 0 3.25rem;
  }
  .careers-intro__highlights {
    grid-template-columns: 1fr;
  }
  .careers-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .careers-intro .btn-apply-hero,
  .careers-intro__secondary-btn {
    width: 100%;
  }
}

/* Source: book-now.html */
.footer-section .fa {
  vertical-align: middle;
}
.footer-section .footer-title i,
.footer-section .footer-social-label i {
  font-size: 1.15rem;
  margin-right: 0.4rem;
}
.footer-section .footer-links a i {
  color: var(--primary-pink);
  margin-right: 0.3rem;
  font-size: 1.07rem;
}
.footer-section .footer-contact i {
  color: var(--primary-pink);
  margin-right: 0.35rem;
  font-size: 1.07rem;
}
.footer-section .small i {
  color: var(--primary-pink);
  margin-right: 0.25rem;
  font-size: 1.07rem;
}

/* Source: commercial-cleaning.html */
.review-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  min-height: 220px;
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}
.google-badge {
  color: #444;
}
.stars {
  color: #fbbc05;
  margin-left: 10px;
  letter-spacing: -1px;
}
.client-logo {
  transition: all 0.3s ease;
}
.grayscale {
  filter: grayscale(100%) opacity(0.6);
}
.client-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
  background-color: rgba(15, 76, 95, 0.7);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
#reviewCarousel .carousel-indicators {
  margin-bottom: -2.5rem;
}
#reviewCarousel .carousel-indicators button {
  background-color: #0f4c5f;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Source: contact-us.html */
/* Custom styles for Contact page */
.hero-banner {
  background: linear-gradient(120deg, #0f4c5f 70%, #d28fb2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-banner::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #d28fb2;
  opacity: 0.5;
}

.contact-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f4c5f, #d28fb2);
}

.contact-form-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(15, 76, 95, 0.1);
  overflow: hidden;
}

.contact-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(15, 76, 95, 0.1);
  min-width: 0;
  max-width: 100%;
}

/* Contact card rows are flex containers; text children need min-width:0
           so long unbroken strings (email/URL) shrink to the card instead of
           overflowing it, then wrap via overflow-wrap below. */
.contact-info-card ul.list-unstyled > li {
  min-width: 0;
}

.contact-info-card ul.list-unstyled > li > div {
  min-width: 0;
  flex: 1 1 auto;
}

.contact-info-card ul.list-unstyled > li > div > a,
.contact-info-card ul.list-unstyled > li > div > span {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-container {
  height: 800px;
  overflow: hidden;
}

.contact-hero-image {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.contact-hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.location-badge {
  transition: all 0.3s ease;
}

.location-badge:hover {
  background-color: #d28fb2 !important;
  color: white !important;
}

/* Source: contact-us.html */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 76, 95, 0.2) !important;
  background: #156b84 !important;
}

.btn-outline-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(210, 143, 178, 0.2) !important;
  background: #d28fb2 !important;
  color: white !important;
}

/* Source: deep-cleaning-lp.html */
/* Modern Landing Page Styles */
:root {
  --primary: #0f4c5f;
  --secondary: #d28fb2;
  --light: #f8f9fa;
  --dark: #343a40;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-xl: 30px;
}

body {
  font-family: "Inter", "Montserrat", sans-serif;
  overflow-x: hidden;
  color: var(--dark);
  line-height: 1.7;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-3,
.display-4,
.display-5 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}

/* Modern Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 60%,
    var(--secondary) 140%
  );
  padding: 120px 0 140px;
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 144"><path d="M144,0H0v144C63.9,144,144,63.9,144,0z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
  z-index: 1;
}

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

.section-title {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 92px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #fff3f8 0 3px, transparent 3.6px),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(210, 143, 178, 0.45) 14%,
      #d28fb2 36%,
      #efbfd5 50%,
      #d28fb2 64%,
      rgba(210, 143, 178, 0.45) 86%,
      transparent 100%
    );
  box-shadow: 0 5px 14px rgba(210, 143, 178, 0.32);
}

/* Modern Button Styles */
.cta-btn-primary {
  background: var(--secondary);
  border: none;
  padding: 14px 32px;
  color: white;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(210, 143, 178, 0.4);
}

.cta-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(210, 143, 178, 0.6);
}

.cta-btn-primary:hover::before {
  transform: translateX(0);
}

/* Modern Badges */
.rating-badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  margin: 0 8px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.star-rating {
  color: #ffd700;
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.bounce-animation {
  animation: bounce 2s infinite;
}

/* Modern Feature Badge */
.feature-badge {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(15, 76, 95, 0.2);
  transition: var(--transition);
}

.feature-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 76, 95, 0.3);
}

.feature-badge i {
  color: var(--secondary);
}

/* Modern Offer Box */
.limited-offer-box {
  background: rgba(210, 143, 178, 0.08);
  border: 2px dashed var(--secondary);
  padding: 30px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 10px 30px rgba(210, 143, 178, 0.15);
  backdrop-filter: blur(5px);
}

.offer-badge {
  background: var(--secondary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(210, 143, 178, 0.4);
}

/* Modern Review Cards */
.google-reviews-box {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(222, 226, 230, 0.5);
  box-shadow: var(--box-shadow);
}

.google-logo {
  width: 26px;
  height: auto;
  margin-right: 8px;
}

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.reviewer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(15, 76, 95, 0.1);
}

/* Modern Guarantee Badge */
.guarantee-badge {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--secondary) 0%, #e68fb5 100%);
  color: white;
  text-align: center;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
  box-shadow: 0 10px 25px rgba(210, 143, 178, 0.4);
  animation: pulse 3s infinite;
  z-index: 10;
}
body {
  font-family: "Montserrat", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f4c5f;
  margin-bottom: 1rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0f4c5f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.badge-feature {
  background: #d28fb2;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-btn-primary {
  background: #d28fb2;
  border-color: #d28fb2;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #0f4c5f;
  border-color: #0f4c5f;
  transform: scale(1.02);
}

.arrow-pointer {
  position: absolute;
  top: -20px;
  color: #d28fb2;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

/* Sticky Contact Widget Styles */
.sticky-contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.contact-toggle-btn {
  background: #d28fb2;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-toggle-btn:hover {
  background: #0f4c5f;
}

.contact-widget-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  transition: all 0.3s;
}

.contact-widget-panel.active {
  display: block;
  animation: fadeIn 0.3s;
}

.contact-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #777;
}

.cta-socials .cta-icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.cta-socials .cta-icon-link:hover {
  transform: scale(1.1);
}

/* Source: deep-cleaning.html */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Source: deep-cleaning.html */
.hover-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Source: deep-cleaning.html */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle i {
  font-size: 2rem;
}
.benefit-card {
  transition: transform 0.3s ease;
  border-radius: 12px;
}
.benefit-card:hover {
  transform: translateY(-10px);
}
.text-pink {
  color: #d28fb2 !important;
}
.bg-pink {
  background-color: #d28fb2 !important;
}

/* Redesigned Deep Cleaning benefits */
.deep-benefits {
  position: relative;
  padding: 4rem 0;
}

.deep-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.08),
    rgba(210, 143, 178, 0.12)
  );
  border-radius: 32px;
  z-index: 0;
}

.deep-benefits__shell {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.deep-benefits__intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.deep-benefits__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: rgba(15, 76, 95, 0.12);
  color: #0f4c5f;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.deep-benefits__title {
  margin-top: 1.5rem;
  color: #0f4c5f;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
}

.deep-benefits__copy {
  margin-top: 1rem;
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.7;
}

.deep-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
}

.deep-benefit {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 76, 95, 0.12);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.deep-benefit:hover {
  transform: translateY(-12px);
  box-shadow: 0 36px 80px rgba(15, 76, 95, 0.16);
}

.deep-benefit__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.deep-benefit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.deep-benefit:hover .deep-benefit__media img {
  transform: scale(1.07);
}

.deep-benefit__icon {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(15, 76, 95, 0.92);
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 16px 30px rgba(15, 76, 95, 0.25);
}

.deep-benefit__body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.deep-benefit__body h3 {
  color: #0f4c5f;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.deep-benefit__body p {
  color: #4f5a64;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .deep-benefits__grid {
    grid-template-columns: 1fr;
  }

  .deep-benefits {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .deep-benefits__shell {
    padding: 0 1rem;
  }

  .deep-benefit__body {
    padding: 1.8rem;
  }
}

/* Service flow / How it works */
.service-flow {
  position: relative;
  padding: 4rem 0;
}

.service-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.08),
    rgba(210, 143, 178, 0.12)
  );
  border-radius: 32px;
  z-index: 0;
}

.service-flow__shell {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.service-flow__intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.service-flow__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(15, 76, 95, 0.12);
  color: #0f4c5f;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.service-flow__title {
  margin-top: 1.5rem;
  color: #0f4c5f;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
}

.service-flow__copy {
  margin-top: 1rem;
  color: #4f5a64;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  position: relative;
}

.service-flow__grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(15, 76, 95, 0.2),
    rgba(210, 143, 178, 0.35)
  );
  z-index: 0;
}

.flow-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: 0 20px 40px rgba(15, 76, 95, 0.12);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 76, 95, 0.18);
}

.flow-step__number {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c5f, #d28fb2);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 16px 30px rgba(15, 76, 95, 0.2);
}

.flow-step__title {
  color: #0f4c5f;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.flow-step__text {
  color: #4f5a64;
  margin: 0;
  line-height: 1.65;
}

.flow-step__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.12);
  color: #0f4c5f;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
  .service-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-flow__grid::before {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(15, 76, 95, 0.2),
      rgba(210, 143, 178, 0.35)
    );
  }
}

@media (max-width: 768px) {
  .service-flow {
    padding: 3rem 0;
  }

  .service-flow__shell {
    padding: 0 1rem;
  }

  .service-flow__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-flow__grid::before {
    display: none;
  }

  .flow-step {
    padding: 1.9rem;
  }
}

/* Source: deep-cleaning.html */
.location-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Source: deep-cleaning.html */
.text-glow {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.2);
}
.cta-btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pulse-glow {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 143, 178, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(210, 143, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(210, 143, 178, 0);
  }
}

/* Source: index.html */
/* Critical CSS inline */
body {
  margin: 0;
  padding-top: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}
.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fff;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo-img {
  max-height: 60px;
  width: auto;
}

/* Prevent layout shifts */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 2;
}

/* Reserve space for navbar - handled by nm-nav-spacer injected via scripts.js */

/* Font display swap optimization - applied via CSS property */
* {
  font-display: swap;
}

/* Additional layout shift prevention */
.carousel-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 15%;
  right: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

/* Reserve space for images to prevent layout shift */
.service-card img,
.why-choose-img-pretty {
  aspect-ratio: attr(width) / attr(height);
}

/* Video overlay positioning fix */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Source: index.html */
/* Contact Widget Inline Styles - Fallback */
.sticky-contact-widget {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
  font-family: "Montserrat", sans-serif !important;
}
.contact-toggle-btn {
  width: auto !important;
  height: auto !important;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  background-color: #0f4c5f !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  transition: transform 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 1rem !important;
}
.contact-widget-panel {
  position: absolute !important;
  bottom: calc(100% + 15px) !important;
  right: 0 !important;
  width: 300px !important;
  background: white !important;
  padding: 1.5rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  border-radius: 15px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) !important;
  transition:
    transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
  pointer-events: none !important;
}
.contact-widget-panel.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.contact-close-btn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  color: #666 !important;
  cursor: pointer !important;
}

.contact-close-btn:hover {
  color: #333 !important;
}

.cta-icon-link {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.cta-icon-link:hover {
  transform: translateY(-3px) !important;
  color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 576px) {
  .sticky-contact-widget {
    bottom: 20px !important;
    right: 20px !important;
  }

  .contact-toggle-btn {
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
  }

  .contact-widget-panel {
    width: 280px !important;
    padding: 1.25rem !important;
    right: -10px !important;
  }
}

/* Source: index.html */
.nm-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  color: #343a40;
}
.nm-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(210, 143, 178, 0.25) 0%,
      rgba(210, 143, 178, 0) 55%
    ),
    radial-gradient(
      1100px 600px at 90% 20%,
      rgba(15, 76, 95, 0.22) 0%,
      rgba(15, 76, 95, 0) 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 0;
}
.nm-hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.nm-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nm-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f4c5f;
  background: rgba(210, 143, 178, 0.18);
  border-radius: 999px;
  border: 1px solid rgba(210, 143, 178, 0.28);
  width: fit-content;
}
.nm-hero-title {
  font-size: clamp(2.4rem, 4.1vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f4c5f;
  max-width: 20ch;
}
.nm-hero-title span {
  color: #d28fb2;
}
.nm-hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(52, 58, 64, 0.78);
  max-width: 58ch;
}
.nm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nm-hero-tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 95, 0.18);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(52, 58, 64, 0.75);
}
.nm-hero-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.nm-hero-stage {
  position: relative;
  width: clamp(260px, 42vw, 480px);
  height: clamp(340px, 55vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.nm-hero-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  /* filter intentionally not transitioned: animating filter/blur is
               main-thread (non-composited) work, and this carousel auto-advances
               every 4s via JS (js/scripts.js applyPositions), so an eased filter
               transition here runs continuously for the page's lifetime. transform
               and opacity stay animated (compositor-friendly); blur now snaps
               instantly alongside them, preserving the depth-of-field look without
               the recurring main-thread animation flagged by Lighthouse. */
  transition:
    transform 0.55s ease,
    opacity 0.55s ease;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 76, 95, 0.18);
  border: 2px solid rgba(15, 76, 95, 0.08);
  background: #fff;
  opacity: 0;
  visibility: hidden;
}
.nm-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nm-hero-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: blur(0);
  z-index: 10;
}
.nm-hero-card.is-adjacent {
  opacity: 0.45;
  visibility: visible;
  filter: blur(3px);
  z-index: 5;
}
.nm-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #0f4c5f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
  z-index: 2;
}
.nm-hero-nav i {
  font-size: 1rem;
}
.nm-hero-nav:hover {
  box-shadow: 0 10px 24px rgba(15, 76, 95, 0.2);
  transform: translateY(-50%) scale(1.05);
}
.nm-hero-nav:focus-visible {
  outline: 2px solid rgba(15, 76, 95, 0.35);
  outline-offset: 2px;
}
.nm-hero-nav--prev {
  left: -16px;
}
.nm-hero-nav--next {
  right: -16px;
}
@media (max-width: 992px) {
  .nm-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .nm-hero-stage {
    width: clamp(220px, 60vw, 380px);
    height: clamp(320px, 75vw, 420px);
  }
  .nm-hero-nav {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
  }
  .nm-hero-nav--prev {
    left: -8px;
  }
  .nm-hero-nav--next {
    right: -8px;
  }
}
@media (max-width: 575px) {
  .nm-hero-wrapper {
    gap: 2.5rem;
  }
  .nm-hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .nm-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .nm-hero-stage {
    width: 90%;
    height: clamp(280px, 80vw, 360px);
  }
  .nm-hero-nav {
    display: none;
  }
}

.why-choose-card {
  position: relative;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 52px rgba(15, 76, 95, 0.08);
  backdrop-filter: blur(6px);
}

@media (max-width: 767px) {
  .why-choose-card {
    border-radius: 1.5rem;
  }
}

.nm-faq {
  position: relative;
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: linear-gradient(
    145deg,
    rgba(248, 249, 250, 0.96) 0%,
    rgba(210, 143, 178, 0.14) 48%,
    rgba(15, 76, 95, 0.1) 100%
  );
}

.nm-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 120% at 10% 0%,
      rgba(210, 143, 178, 0.24),
      transparent 60%
    ),
    radial-gradient(
      100% 120% at 90% 10%,
      rgba(15, 76, 95, 0.18),
      transparent 68%
    );
  pointer-events: none;
  opacity: 0.9;
}

.nm-faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.nm-faq-intro {
  border-radius: 28px;
  padding: clamp(2.25rem, 4vw, 3rem);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 249, 250, 0.85) 100%
  );
  box-shadow: 0 30px 60px rgba(15, 76, 95, 0.12);
  border: 1px solid rgba(15, 76, 95, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.nm-faq-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(210, 143, 178, 0.18);
  border: 1px solid rgba(210, 143, 178, 0.38);
}

.nm-faq-heading {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--dark);
}

.nm-faq-heading span {
  color: var(--secondary);
}

.nm-faq-copy {
  color: rgba(15, 76, 95, 0.75);
  font-size: 1.05rem;
}

.nm-faq-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nm-faq-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.8rem 1.3rem;
  border-radius: 18px;
  background: rgba(15, 76, 95, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nm-faq-meta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(15, 76, 95, 0.18);
}

.nm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.nm-faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 76, 95, 0.14);
  box-shadow: 0 24px 45px rgba(15, 76, 95, 0.08);
  overflow: hidden;
}

.nm-faq-item[open] {
  border-color: rgba(15, 76, 95, 0.45);
  box-shadow: 0 28px 60px rgba(15, 76, 95, 0.12);
}

.nm-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

.nm-faq-item summary::-webkit-details-marker {
  display: none;
}

.nm-faq-item .nm-faq-trigger {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.4;
}

.nm-faq-item .nm-faq-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.22);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--secondary);
}

.nm-faq-item .nm-faq-indicator {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 76, 95, 0.08);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.nm-faq-item[open] .nm-faq-indicator {
  transform: rotate(45deg);
}

.nm-faq-body {
  padding: 0 1.8rem 1.6rem 1.8rem;
  font-size: 1rem;
  color: rgba(15, 76, 95, 0.78);
  border-top: 1px solid rgba(15, 76, 95, 0.12);
}

.nm-faq-body p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .nm-faq-item summary {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .nm-faq-item .nm-faq-indicator {
    margin-left: auto;
  }
}

/* Source: index.html */
.video-container {
  cursor: pointer;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}
.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}
.play-button {
  width: 60px;
  height: 60px;
  background: #d28fb2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.play-button i {
  color: white;
  font-size: 24px;
  margin-left: 4px;
}
.video-overlay:hover .play-button {
  transform: scale(1.1);
}

/* Source: indexa.html */
/* Critical CSS inline */
body {
  margin: 0;
  padding-top: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}
.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fff;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo-img {
  max-height: 60px;
  width: auto;
}

/* Prevent layout shifts */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 2;
}

/* Reserve space for navbar to prevent layout shift */
body {
  padding-top: 80px;
}

/* Font display swap optimization - applied via CSS property */
* {
  font-display: swap;
}

/* Additional layout shift prevention */
.carousel-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 15%;
  right: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

/* Reserve space for images to prevent layout shift */
.service-card img,
.why-choose-img-pretty {
  aspect-ratio: attr(width) / attr(height);
}

/* Video overlay positioning fix */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Source: indexa.html */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Source: maryland/house-cleaning-service-maryland.html */
.hover-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.card-header[data-bs-toggle="collapse"] .fa-chevron-down {
  transition: transform 0.3s ease;
}
.card-header[data-bs-toggle="collapse"][aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

/* Source: move-in-out-cleaning.html */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__fadeInDown {
  animation: fadeInDown 1s both;
}

.animate__fadeIn {
  animation: fadeIn 1s both;
}

.animate__fadeInUp {
  animation: fadeInUp 1s both;
}

.animate__delay-1s {
  animation-delay: 0.5s;
}

.animate__delay-2s {
  animation-delay: 1s;
}

.animate__slower {
  animation-duration: 3s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0.5;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Source: office-cleaning.html */
:root {
  --bs-primary: #0f4c5f;
  --bs-secondary: #d28fb2;
  --bs-light: #f8f9fa;
  --bs-dark: #343a40;
}
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #0a3a4a !important;
  border-color: #0a3a4a !important;
}
.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #c07a9d !important;
  border-color: #c07a9d !important;
}
.btn-outline-light:hover {
  color: var(--bs-primary);
}
.text-primary {
  color: var(--bs-primary) !important;
}
.text-secondary {
  color: var(--bs-secondary) !important;
}
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}
.card {
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.rounded-circle.bg-primary.bg-opacity-10 {
  background-color: rgba(15, 76, 95, 0.1) !important;
}
.rounded-circle.bg-secondary.bg-opacity-10 {
  background-color: rgba(210, 143, 178, 0.1) !important;
}

/* Source: office-cleaning.html */
.process-line {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--bs-primary);
}

/* Source: office-cleaning.html */
:root {
  --primary: #0f4c5f;
  --secondary: #d28fb2;
  --light: #f8f9fa;
  --dark: #343a40;
}
.footer-section .fa {
  vertical-align: middle;
}
.footer-section .footer-title i,
.footer-section .footer-social-label i {
  font-size: 1.15rem;
  margin-right: 0.4rem;
}
.footer-section .footer-links a i {
  color: var(--secondary);
  margin-right: 0.3rem;
  font-size: 1.07rem;
}
.footer-section .footer-contact i {
  color: var(--secondary);
  margin-right: 0.35rem;
  font-size: 1.07rem;
}
.footer-section .small i {
  color: var(--secondary);
  margin-right: 0.25rem;
  font-size: 1.07rem;
}

/* Source: one-time-cleaning-washington-md.html */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}
.hero-section {
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
  }
}

/* Source: post-construction-cleaning.html */
:root {
  --primary: #0f4c5f;
  --secondary: #d28fb2;
  --light: #f8f9fa;
  --dark: #343a40;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(15, 76, 95, 0.1);
  color: var(--primary);
}
.accordion-button:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(15, 76, 95, 0.25);
}

/* Source: post-construction-cleaning.html */
.hover-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.service-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: #d28fb2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(210, 143, 178, 0.3);
  font-size: 24px;
}
.overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(15, 76, 95, 0.2) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}

/* Source: post-construction-cleaning.html */
.testimonial-card {
  transition: transform 0.3s ease;
  border-top: 4px solid #d28fb2;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Source: post-construction-cleaning.html */
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(15, 76, 95, 0.1);
  color: #0f4c5f;
}
.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 76, 95, 0.25);
}
.custom-accordion .accordion-button::after {
  background-color: #d28fb2;
  border-radius: 50%;
  background-position: center;
  width: 20px;
  height: 20px;
}

/* Source: residential-cleaning.html */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-pink {
  color: white;
}
.btn-pink:hover {
  background-color: #c47ea1 !important;
  color: white;
}
.hero-section {
  margin-bottom: -1px;
}

/* Source: residential-cleaning.html */
.service-card {
  transition: transform 0.3s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #0f4c5f;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}

/* Source: residential-cleaning.html */
.location-card {
  transition: all 0.3s ease;
}
.location-card:hover {
  transform: translateY(-5px);
  background-color: rgba(15, 76, 95, 0.03) !important;
}

/* Source: residential-cleaning.html */
.testimonial-card {
  transition: all 0.3s ease;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f4c5f 0%, #d28fb2 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.testimonial-card:hover::after {
  opacity: 1;
}

/* Source: residential-cleaning.html */
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: white;
  box-shadow: none;
  color: #0f4c5f;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(210, 143, 178, 0.5);
}

.custom-accordion .accordion-button::after {
  background-size: 16px;
  background-color: rgba(15, 76, 95, 0.1);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  background-position: center;
}

.custom-accordion .accordion-item {
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Source: services.html */
.service-links {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.service-link-item {
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  text-decoration: none;
  color: #0f4c5f;
  transition: all 0.3s ease;
}
.service-link-item:hover {
  background: #0f4c5f;
  color: white;
  text-decoration: none;
}

/* Source: services.html */
.cta-section .btn:hover {
  background: linear-gradient(90deg, #fff 60%, #d28fb2 100%) !important;
  color: #0f4c5f !important;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 2px 8px #d28fb220;
  border-color: #d28fb2;
}

/* Source: services.html */
.footer-section {
  border-radius: 20px 20px 0 0;
  padding: 40px 0;
}
.footer-section .fa {
  vertical-align: middle;
}
.footer-section .footer-title i,
.footer-section .footer-social-label i {
  font-size: 1.15rem;
  margin-right: 0.4rem;
}
.footer-section .footer-links a i {
  color: var(--primary-pink);
  margin-right: 0.3rem;
  font-size: 1.07rem;
}
.footer-section .footer-contact i {
  color: var(--primary-pink);
  margin-right: 0.35rem;
  font-size: 1.07rem;
}
.footer-section .small i {
  color: var(--primary-pink);
  margin-right: 0.25rem;
  font-size: 1.07rem;
}
.footer-social a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.footer-social a:visited,
.footer-social a:active,
.footer-social a:focus,
.footer-social a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Source: spring-cleaning.html */
/* Custom styles for service card images */
.card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* Timeline styling */
.timeline-number {
  top: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #dee2e6;
    transform: translateX(-50%);
  }

  .timeline {
    position: relative;
  }

  .timeline-item {
    position: relative;
  }

  .timeline-number {
    top: 15px;
  }

  .timeline-item:nth-child(odd) .timeline-number {
    right: -25px;
    left: auto;
  }

  .timeline-item:nth-child(even) .timeline-number {
    left: -25px;
  }
}

@media (max-width: 767.98px) {
  .timeline-number {
    left: 0;
  }
}

/* Source: virginia/alexandria/affordable-cleaning-service-alexandria-virginia.html */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Source: virginia/alexandria/affordable-cleaning-service-alexandria-virginia.html */
.hover-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Source: virginia/alexandria/affordable-cleaning-service-alexandria-virginia.html */
.location-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Source: virginia/alexandria/affordable-cleaning-service-alexandria-virginia.html */
.text-glow {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse-glow {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 143, 178, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(210, 143, 178, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(210, 143, 178, 0);
  }
}

/* Homepage Lead Hero */
.home-lead-hero {
  position: relative;
  padding: 0;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.9) 0%,
    rgba(15, 76, 95, 0.85) 45%,
    rgba(210, 143, 178, 0.75) 100%
  );
  overflow: hidden;
}

.home-lead-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/portfolio/veranice-banner-a-sm.webp");
  /* Show the full photo at every breakpoint: "contain" fits the whole image
     inside the box without cropping, zooming, or stretching (never "cover",
     which center-crops portrait photos and cuts off heads). Any leftover
     space in the box shows the section's own gradient background, which is
     intentional -- not a bug. */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.78;
  transform: scale(1);
  filter: none;
  z-index: 0;
}

.home-lead-hero[data-bg]::before {
  background-image: var(--hero-bg-image);
}

/* Ensure hero content is visible even if AOS JS/CSS is delayed */
.home-lead-hero [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.home-lead-hero::after {
  display: none;
}

.home-lead-hero__headline {
  max-width: none;
  color: inherit;
  text-align: center;
}

.home-lead-hero__accent {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  margin: 0 auto 1.1rem;
  background:
    radial-gradient(circle at center, #fff3f8 0 3px, transparent 3.6px),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(210, 143, 178, 0.45) 14%,
      #d28fb2 36%,
      #efbfd5 50%,
      #d28fb2 64%,
      rgba(210, 143, 178, 0.45) 86%,
      transparent 100%
    );
  box-shadow: 0 5px 14px rgba(210, 143, 178, 0.32);
}

.home-lead-hero__headline-main {
  display: block;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--primary);
  margin: 0 0 0.6rem;
}

.home-lead-hero__headline-sub {
  display: block;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
  margin: 0 0 1.1rem;
}

.home-lead-hero__headline-caption {
  margin: 0 auto 1.85rem;
  padding: 0;
  font-size: 1.05rem;
  max-width: 42rem;
  color: #5b6570;
  line-height: 1.75;
  font-weight: 400;
}

.home-lead-hero__cta-row {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.home-lead-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.home-lead-hero__btn i {
  font-size: 1rem;
}

.home-lead-hero__btn-primary {
  background: linear-gradient(135deg, #0f4c5f 0%, #0c3b4a 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 10px 26px rgba(15, 76, 95, 0.28);
}

.home-lead-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 76, 95, 0.35);
}

.home-lead-hero__btn-outline {
  background: #fff;
  color: #0f4c5f;
  border: 2px solid rgba(15, 76, 95, 0.18);
  box-shadow: 0 4px 14px rgba(15, 76, 95, 0.08);
}

.home-lead-hero__btn-outline:hover {
  border-color: rgba(15, 76, 95, 0.4);
  background: #f7fafb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 76, 95, 0.14);
}

.home-lead-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 580px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem;
}

/* Hero layout wrapper: groups the image (.home-lead-hero), the content
   section (.home-lead-hero-info) and the quote form (.home-lead-hero__container,
   moved here as a direct child by tools/restructure_hero_order.py) so their
   visual order can be controlled without ever detaching the form from
   document flow. Mobile/tablet: simple block stacking in source order
   (image, then content, then form) -- exactly the required reading order,
   no CSS reordering needed. Desktop: CSS Grid repositions the same three
   items into image+form side by side with content below, independent of
   source order. */
.hero-grid {
  display: block;
}

@media (min-width: 1025px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 420px);
    grid-template-areas:
      "image form"
      "content content";
    align-items: stretch;
  }

  .hero-grid > .home-lead-hero {
    grid-area: image;
  }

  .hero-grid > .home-lead-hero-info {
    grid-area: content;
  }

  .hero-grid > .home-lead-hero__container {
    grid-area: form;
  }
}

/* Content section below the hero image: holds the headline/copy/CTA that
   used to overlay the photo. Lives outside .home-lead-hero entirely so it
   can never compete for stacking/click space with the form. */
.home-lead-hero-info {
  background: linear-gradient(160deg, #fff 55%, var(--pink-light) 100%);
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
}

.home-lead-hero-info__inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-intro {
  position: relative;
}

.service-intro__inner {
  max-width: 1040px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 143, 178, 0.22);
  border-radius: clamp(18px, 2.4vw, 28px);
  box-shadow: 0 24px 70px rgba(15, 76, 95, 0.12);
}

.service-intro__content {
  max-width: 820px;
  margin: 0 auto;
}

.service-intro .home-lead-hero__headline {
  color: var(--dark);
}

.service-intro .badge {
  color: var(--primary);
  background: rgba(15, 76, 95, 0.08);
  border: 1px solid rgba(15, 76, 95, 0.12);
}

.service-intro .display-4 {
  color: var(--primary);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-intro .display-4 span {
  color: var(--secondary) !important;
}

.service-intro .lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: #5b6570 !important;
  opacity: 1 !important;
  line-height: 1.75;
}

.service-intro__actions {
  gap: 1rem !important;
}

.service-intro .btn,
.service-intro .home-lead-hero__btn {
  min-height: 46px;
}

.service-intro .btn-light {
  background: linear-gradient(135deg, #0f4c5f 0%, #0c3b4a 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 26px rgba(15, 76, 95, 0.24);
}

.service-intro .btn-light:hover {
  background: linear-gradient(135deg, #0c3b4a 0%, #0f4c5f 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 76, 95, 0.32);
}

.service-intro .btn-outline-light {
  background: #fff !important;
  color: var(--primary) !important;
  border: 2px solid rgba(15, 76, 95, 0.2) !important;
}

.service-intro .btn-outline-light:hover {
  background: #f7fafb !important;
  color: var(--primary) !important;
  border-color: rgba(15, 76, 95, 0.45) !important;
  transform: translateY(-2px);
}

.service-intro a:focus-visible,
.home-lead-hero__btn:focus-visible {
  outline: 3px solid rgba(210, 143, 178, 0.55);
  outline-offset: 4px;
}

.home-lead-hero__form-block {
  position: relative;
  flex-shrink: 0;
  margin-right: 1.5rem;
  max-width: 420px;
}

.home-lead-hero__form-block::before {
  display: none;
}

.home-lead-hero__form-block .quote-form-card {
  position: relative;
  z-index: 1;
}

.quote-form-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: clamp(16px, 2.4vw, 26px);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(15, 76, 95, 0.15);
  border: 1px solid rgba(15, 76, 95, 0.08);
}

/* Reserve space for the quote form injected by js/hero-form.js so the
   layout doesn't shift once the JS populates #hero-form-root (CLS fix). */
[data-hero-form-root] {
  display: block;
  min-height: 600px;
}

.quote-form-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  color: var(--primary);
  font-weight: 800;
}

.quote-form-trust {
  margin: 0 0 1.65rem;
  color: rgba(52, 58, 64, 0.75);
  font-size: 1rem;
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.hero-quote-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-quote-form .form-group {
  position: relative;
}

.hero-quote-form .input-icon svg.icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(15, 76, 95, 0.45);
  pointer-events: none;
}

.hero-quote-form .input-icon input,
.hero-quote-form .input-icon select,
.hero-quote-form .input-icon textarea {
  padding-left: 3rem;
}

.hero-quote-form input,
.hero-quote-form select,
.hero-quote-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 76, 95, 0.18);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: #fff;
}

.hero-quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, #0c3b4a 100%);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 76, 95, 0.25);
}

.btn-hero-cta .arrow {
  stroke: currentColor;
}

.form-micro-trust {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: rgba(52, 58, 64, 0.75);
  font-size: 0.95rem;
}

.form-micro-trust svg {
  margin-right: 0.45rem;
}

@media (max-width: 1024px) {
  .home-lead-hero {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  /* Slim banner: no text/form overlay competes for this space anymore, so
     the image only needs to establish the photo, not host content.
     min-height is a floor, not a crop box -- background-size:contain above
     means portrait photos simply show smaller within it, never sliced.
     (Kept at 240px, matching the inline CLS-reservation duplicate baked
     into every page's <head>, so nothing shifts once this stylesheet loads.) */
  .home-lead-hero::before {
    position: relative;
    min-height: 240px;
    width: 100%;
  }

  .home-lead-hero__container {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    max-width: 100%;
    min-height: auto;
    background: #f8f9fa;
  }

  .home-lead-hero__cta-row {
    justify-content: flex-start;
  }

  .home-lead-hero__form-block {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .home-lead-hero__form-block::before {
    display: none;
  }

  .quote-form-card {
    margin: 0 auto;
    max-width: 540px;
  }

  .hero-quote-form .form-row {
    grid-template-columns: 1fr;
  }

  /* Form rows stack to a single column here, so the injected form is
     taller than on desktop; bump the reserved space to match. */
  [data-hero-form-root] {
    min-height: 820px;
  }
}

@media (max-width: 640px) {
  .home-lead-hero {
    padding: 0;
  }

  .home-lead-hero__form-block {
    padding: 1.5rem 1rem;
  }

  .quote-form-card {
    padding: 1.5rem;
  }

  .home-lead-hero-info {
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .service-intro__inner {
    padding: 1.65rem 1.15rem;
    border-radius: 18px;
  }

  .home-lead-hero__headline-main {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .home-lead-hero__headline-sub {
    font-size: 1rem;
    line-height: 1.35;
  }

  .home-lead-hero__headline-caption {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .home-lead-hero__btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .home-lead-hero__btn i {
    font-size: 0.85rem;
  }

  .home-lead-hero__cta-row {
    gap: 0.65rem;
    flex-direction: column;
    align-items: stretch;
  }

  .home-lead-hero__btn {
    width: 100%;
  }

  .service-intro .btn {
    width: 100%;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-quote-form input,
  .hero-quote-form select,
  .hero-quote-form textarea {
    padding-left: 2.75rem;
  }

  .hero-quote-form .input-icon svg.icon {
    left: 0.85rem;
  }
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.gallery-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0f4c5f 0%, #d28fb2 100%);
  border-radius: 2px;
}

.gallery-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.portfolio-gallery {
  display: grid;
  gap: 1.5rem;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  aspect-ratio: 4/3;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.85) 0%,
    rgba(210, 143, 178, 0.75) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(15, 76, 95, 0.2);
}

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

@media (min-width: 769px) {
  .reviews-work-gallery {
    padding-top: clamp(3rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
  }

  .reviews-work-gallery .container {
    max-width: 1120px;
  }

  .reviews-work-gallery .gallery-header {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-work-gallery .portfolio-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 1040px;
    margin: 0 auto;
  }

  .reviews-work-gallery .gallery-item {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 28px rgba(15, 76, 95, 0.09);
    border: 1px solid rgba(15, 76, 95, 0.07);
  }

  .reviews-work-gallery .gallery-item:nth-child(6n + 1),
  .reviews-work-gallery .gallery-item:nth-child(6n + 4) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }

  .reviews-work-gallery .gallery-item:nth-child(6n + 2),
  .reviews-work-gallery .gallery-item:nth-child(6n + 5) {
    aspect-ratio: 4 / 5;
  }

  .reviews-work-gallery .gallery-item:nth-child(6n + 3),
  .reviews-work-gallery .gallery-item:nth-child(6n + 6) {
    aspect-ratio: 5 / 4;
  }

  .reviews-work-gallery .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 76, 95, 0.16);
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .reviews-work-gallery .portfolio-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-work-gallery .gallery-item:nth-child(6n + 1),
  .reviews-work-gallery .gallery-item:nth-child(6n + 4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Home cleaning video feature */
.home-cleaning-video {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 5.75rem) 0;
  background: linear-gradient(140deg, #ffffff 0%, #f8fbfc 48%, #f7eaf3 100%);
}

.home-cleaning-video .container {
  max-width: 1120px;
}

.home-cleaning-video__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.home-cleaning-video__copy {
  max-width: 620px;
}

.home-cleaning-video__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  background: rgba(210, 143, 178, 0.14);
  color: #b96d9d;
  border: 1px solid rgba(210, 143, 178, 0.28);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cleaning-video h2 {
  margin: 0 0 1rem;
  color: #0f4c5f;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.home-cleaning-video__copy p:not(.home-cleaning-video__eyebrow) {
  margin: 0 0 1.6rem;
  color: #52606d;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.home-cleaning-video__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f4c5f, #0a3a4a);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 76, 95, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-cleaning-video__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 76, 95, 0.3);
}

.home-cleaning-video__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.home-cleaning-video__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f4c5f;
  font-size: 0.94rem;
  font-weight: 750;
}

.home-cleaning-video__note i {
  color: #b96d9d;
}

.home-cleaning-video--transformation {
  border-top: 1px solid rgba(15, 76, 95, 0.08);
  background: #fff;
}

.home-cleaning-video--transformation .home-cleaning-video__layout {
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
}

.home-cleaning-video--transformation .home-cleaning-video__copy {
  order: 2;
  justify-self: end;
}

.home-cleaning-video--transformation .home-cleaning-video__frame {
  order: 1;
  margin-right: auto;
  margin-left: 0;
  background: linear-gradient(145deg, #d28fb2, #b96d9d);
  box-shadow: 0 26px 70px rgba(185, 109, 157, 0.22);
}

.home-cleaning-video__frame {
  width: min(100%, 430px);
  margin-left: auto;
  padding: clamp(0.75rem, 1.6vw, 1rem);
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(15, 76, 95, 0.95),
    rgba(10, 58, 74, 0.96)
  );
  box-shadow: 0 26px 70px rgba(15, 76, 95, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.home-cleaning-video__screen {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0f4c5f;
  aspect-ratio: 9 / 16;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.home-cleaning-video__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-cleaning-video__sound {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f4c5f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.home-cleaning-video__sound:hover {
  background: #fff;
}

@media (max-width: 991px) {
  .home-cleaning-video__layout {
    grid-template-columns: 1fr;
  }

  .home-cleaning-video--transformation .home-cleaning-video__layout {
    grid-template-columns: 1fr;
  }

  .home-cleaning-video__copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .home-cleaning-video__frame {
    margin: 0 auto;
  }

  .home-cleaning-video--transformation .home-cleaning-video__copy {
    order: 1;
    justify-self: center;
  }

  .home-cleaning-video--transformation .home-cleaning-video__frame {
    order: 2;
    margin: 0 auto;
  }

  .home-cleaning-video__actions {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .home-cleaning-video {
    padding: 2.75rem 0 3.25rem;
  }

  .home-cleaning-video__frame {
    width: min(100%, 340px);
    border-radius: 26px;
    padding: 0.65rem;
  }

  .home-cleaning-video__screen {
    border-radius: 20px;
  }

  .home-cleaning-video__cta,
  .home-cleaning-video__sound {
    width: 100%;
  }

  .home-cleaning-video__sound {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    width: auto;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-gallery {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .gallery-header h2 {
    font-size: 2rem;
  }

  .gallery-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    aspect-ratio: 16/10;
  }

  .gallery-header h2 {
    font-size: 1.75rem;
  }
}

/* home-services-mobile-visibility */
@media (max-width: 767.98px) {
  #services,
  #services[data-aos],
  #services [data-aos],
  #services.aos-init,
  #services.aos-animate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  #services {
    display: block !important;
    padding-top: 3rem !important;
    padding-bottom: 3.25rem !important;
  }

  #services .pbmit-heading-subheading {
    margin-bottom: 1.75rem !important;
  }

  #services .pbmit-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(15, 76, 95, 0.08);
    border: 1px solid rgba(15, 76, 95, 0.12);
    font-size: 0.78rem;
    line-height: 1.2;
  }

  #services .pbmit-title {
    margin-top: 0.9rem;
    color: #0f4c5f;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.18;
    letter-spacing: 0;
  }

  #services .pbmit-heading-desc {
    margin-top: 1rem;
    color: #52606d;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  #services .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0;
  }

  #services .row > * {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  #services .service-card {
    display: block !important;
    min-height: 0;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 76, 95, 0.1) !important;
    transform: none !important;
  }

  #services .service-card .card-body {
    padding: 1.15rem !important;
  }

  #services .service-card-visual {
    min-height: 210px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    margin-bottom: 1rem;
  }

  #services .service-card-img,
  #services .service-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  #services .card-title {
    color: #0f4c5f;
    line-height: 1.25;
  }

  #services .card-text,
  #services .small {
    color: #52606d !important;
    line-height: 1.6;
  }

  #services .text-center.mt-5 {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.75rem !important;
  }

  #services .text-center.mt-5 .btn {
    width: 100%;
    margin-left: 0 !important;
  }
}
