/* ==========================================================================
   Masterpiece Painting Contractors — Boca Raton Landing Page
   ========================================================================== */

:root {
  --main-color-mp: #00AEEF;
  --btn-color-mp: #fff;
  --secundary-color-mp: #00719b;
  --main-color-mp-opacity: #00aeefcc;

  --text-dark: #0b1b26;
  --text-muted: #4a5c68;
  --header-height: 88px;
}

html {
  scroll-behavior: smooth;
  color-scheme: light only;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: #fff;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.container-mp {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5);
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: var(--main-color-mp);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: .5rem;
  z-index: 2000;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* ==========================================================================
   Header — floating, white
   ========================================================================== */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding: .6rem .9rem .6rem 1.1rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(11, 27, 38, 0.12), 0 2px 8px rgba(11, 27, 38, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-header__call-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--main-color-mp);
  color: var(--btn-color-mp);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.15;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
}

.site-header__call-btn:hover,
.site-header__call-btn:focus-visible {
  background: var(--secundary-color-mp);
  color: var(--btn-color-mp);
  transform: translateY(-1px);
}

.site-header__call-btn i {
  font-size: 1.05rem;
}

.site-header__call-btn .call-label {
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width: 575.98px) {
  .site-header {
    top: 10px;
  }
  .site-header__inner {
    padding: .5rem .5rem .5rem .85rem;
  }
  .site-header__logo img {
    height: 34px;
  }
  .site-header__call-btn {
    padding: .6rem .8rem;
    font-size: 0;
    gap: 0;
  }
  .site-header__call-btn i {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 8rem;
  background:
    linear-gradient(180deg, rgba(4, 20, 30, 0.55) 0%, rgba(4, 20, 30, 0.35) 45%, rgba(4, 20, 30, 0.6) 100%),
    linear-gradient(135deg, var(--secundary-color-mp) 0%, var(--main-color-mp) 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .3;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  right: -15%;
  top: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero__aside {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(3, 15, 23, 0.3);
}

.hero__aside-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--secundary-color-mp);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.hero__aside .hero__cta-text {
  font-size: .98rem;
  margin-bottom: 1.75rem;
  max-width: none;
}

.hero__aside .hero__btn {
  width: 100%;
  justify-content: center;
}

.hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero__cta-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--btn-color-mp);
  color: var(--secundary-color-mp);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.hero__btn:hover,
.hero__btn:focus-visible {
  background: var(--main-color-mp);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 4.5rem;
    text-align: left;
  }
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits {
  padding: 5.5rem 0;
  background: #f6fafc;
}

.benefits__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 3rem;
}

.benefit-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.1rem;
  padding: 2.25rem 1.9rem;
  box-shadow: 0 20px 45px rgba(11, 27, 38, 0.08), 0 4px 12px rgba(11, 27, 38, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(11, 27, 38, 0.14), 0 6px 16px rgba(11, 27, 38, 0.06);
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color-mp) 0%, var(--secundary-color-mp) 100%);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 22px rgba(0, 174, 239, 0.28);
}

.benefit-card__title {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--text-dark);
}

.benefit-card__text {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   About Us
   ========================================================================== */
.about {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 113, 155, 0.9) 0%, rgba(4, 20, 30, 0.88) 100%);
  overflow: hidden;
  isolation: isolate;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/about-us.jpg");
  background-size: cover;
  background-position: center;
  opacity: .3;
  z-index: -1;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.about__title {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.about__title .text-highlight {
  color: #ffe194;
  text-decoration: underline;
  text-decoration-color: rgba(255, 225, 148, .45);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.about__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 640px;
}

.about-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(3, 15, 23, 0.35);
}

.about-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--secundary-color-mp);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--main-color-mp);
  color: var(--btn-color-mp);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.4;
  letter-spacing: .01em;
  padding: 1rem 1.25rem;
  border-radius: .85rem;
  transition: background-color .18s ease, transform .15s ease, box-shadow .18s ease;
}

.about-cta__btn:hover,
.about-cta__btn:focus-visible {
  background: var(--secundary-color-mp);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

@media (max-width: 767.98px) {
  .about {
    padding: 4.5rem 0;
    text-align: left;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: 5.5rem 0;
  background: #ddd;
}

.testimonials__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 3rem;
}

.testimonials__wrap {
  position: relative;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  background: #fff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 55px rgba(11, 27, 38, 0.12), 0 6px 16px rgba(11, 27, 38, 0.06);
}

.testimonial-card__quote-icon {
  color: var(--main-color-mp);
  opacity: .35;
  font-size: 1.9rem;
  margin-bottom: .75rem;
}

.testimonial-card__stars {
  color: #f7b500;
  font-size: 1rem;
  letter-spacing: .2rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color-mp) 0%, var(--secundary-color-mp) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0, 174, 239, 0.28);
}

.testimonial-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.testimonial-card__source {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.testimonials-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--secundary-color-mp);
  box-shadow: 0 10px 24px rgba(11, 27, 38, 0.15);
  z-index: 5;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.testimonials-control:hover,
.testimonials-control:focus-visible {
  background: var(--main-color-mp);
  color: #fff;
}

.testimonials-control--prev {
  left: -6px;
}

.testimonials-control--next {
  right: -6px;
}

.testimonials__indicators {
  position: static;
  margin: 2.25rem 0 0;
}

.testimonials__indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b7c1c6;
  opacity: 1;
  margin: 0 5px;
  border: 0;
}

.testimonials__indicators .active {
  background-color: var(--main-color-mp);
}

@media (max-width: 991.98px) {
  .testimonials-control {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 2.25rem 1.5rem;
  }
}

/* ==========================================================================
   How We Work
   ========================================================================== */
.process {
  padding: 5.5rem 0;
  background: #fff;
}

.process__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: .75rem;
}

.process__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.process-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #edf1f3;
  border-radius: 1.1rem;
  padding: 2.25rem 1.9rem;
  box-shadow: 0 16px 40px rgba(11, 27, 38, 0.07), 0 4px 10px rgba(11, 27, 38, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.35);
  box-shadow: 0 26px 55px rgba(11, 27, 38, 0.14), 0 6px 16px rgba(11, 27, 38, 0.06);
}

.process-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color-mp) 0%, var(--secundary-color-mp) 100%);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 22px rgba(0, 174, 239, 0.28);
  transition: transform .3s ease;
}

.process-card:hover .process-card__icon {
  transform: scale(1.1) rotate(-6deg);
}

.process-card__title {
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: var(--text-dark);
}

.process-card__text {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-final {
  padding: 5.5rem 0;
  background: #fff;
}

.cta-final__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-inline: auto;
}

.cta-final__title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-wrap: balance;
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--main-color-mp);
  color: var(--btn-color-mp);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 174, 239, 0.28);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.cta-final__btn:hover,
.cta-final__btn:focus-visible {
  background: var(--secundary-color-mp);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 113, 155, 0.32);
}

@media (max-width: 767.98px) {
  .cta-final {
    padding: 4rem 0;
    text-align: center;
  }

  .cta-final__image {
    max-width: 380px;
  }
}

/* ==========================================================================
   Privacy Policy page
   ========================================================================== */
.policy {
  padding: calc(var(--header-height) + 3.5rem) 0 5rem;
  background: #fff;
}

.policy__container {
  max-width: 820px;
}

.policy__title {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
}

.policy h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.policy a {
  color: var(--secundary-color-mp);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy a:hover,
.policy a:focus-visible {
  color: var(--main-color-mp);
}

/* Scroll fade-in animation */
.fade-in-up {
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-up.fade-hidden {
  opacity: 0;
  transform: translateY(28px);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    transition: none;
  }
}

/* ==========================================================================
   Gallery button + fullscreen modal
   ========================================================================== */
.testimonials__gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  color: var(--secundary-color-mp);
  border: 2px solid var(--main-color-mp);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  background: var(--main-color-mp);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 174, 239, 0.28);
}

.gallery-modal .modal-content {
  background: #111417;
  border: 0;
  border-radius: 0;
}

.gallery-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1.5rem;
}

.gallery-modal__heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-modal .modal-title {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.gallery-modal__counter {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
}

.gallery-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #111417;
}

.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item {
  height: 100%;
}

.gallery-carousel {
  width: 100%;
}

.gallery-carousel .carousel-item {
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-carousel .carousel-item.active {
  display: flex;
}

.gallery-carousel__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  z-index: 5;
  transition: background-color .18s ease;
}

.gallery-carousel__control:hover,
.gallery-carousel__control:focus-visible {
  background: var(--main-color-mp);
}

.gallery-carousel__control--prev {
  left: 1.25rem;
}

.gallery-carousel__control--next {
  right: 1.25rem;
}

@media (max-width: 575.98px) {
  .gallery-carousel__control {
    width: 42px;
    height: 42px;
    font-size: .95rem;
  }

  .gallery-carousel__control--prev {
    left: .5rem;
  }

  .gallery-carousel__control--next {
    right: .5rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #2b2f33;
  padding: 1.75rem 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}

@media (min-width: 576px) {
  .site-footer__inner {
    padding-right: 5rem;
  }
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: .9rem;
  margin-bottom: 0;
}

.site-footer__links a {
  color: #fff;
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: color .18s ease, text-decoration-color .18s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--main-color-mp);
  text-decoration-color: var(--main-color-mp);
}

@media (max-width: 575.98px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Floating call button
   ========================================================================== */
.floating-call-btn {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--main-color-mp);
  color: var(--btn-color-mp);
  font-size: 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 174, 239, 0.45);
  z-index: 1100;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

body.modal-open .floating-call-btn {
  opacity: 0;
  pointer-events: none;
}

.floating-call-btn:hover,
.floating-call-btn:focus-visible {
  background: var(--secundary-color-mp);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(0, 113, 155, 0.5);
}

.floating-call-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--main-color-mp);
  opacity: .55;
  z-index: -1;
  animation: floatingCallPulse 2.2s ease-out infinite;
}

@keyframes floatingCallPulse {
  0% {
    transform: scale(1);
    opacity: .55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .floating-call-btn {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-call-btn__pulse {
    animation: none;
    display: none;
  }
}
