:root {
  --blue-900: #10255f;
  --blue-800: #1e3a8a;
  --blue-700: #2952c7;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --white: #ffffff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --surface: rgba(255, 255, 255, 0.88);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 18px 40px rgba(30, 58, 138, 0.12);
  --shadow-sm: 0 12px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1120px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top left, rgba(41, 82, 199, 0.12), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-strip {
  padding: 0.7rem 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: rgba(255, 255, 255, 0.92);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
}

.top-strip-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-strip-actions a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.section-space {
  padding: 5.5rem 0;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--blue-800);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.why-section h2,
.location-card h2,
.cta-panel h2 {
  margin: 1rem 0 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading p,
.section-intro,
.location-card p,
.cta-panel p,
.hero-text,
.service-card p,
.review-card p,
.benefit-list p,
.metric-card span {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.9rem 0;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.brand strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.brand span {
  color: var(--slate-500);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--slate-700);
  font-weight: 600;
  transition: color 200ms ease;
}

.site-nav a:hover {
  color: var(--blue-800);
}

.nav-cta {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white) !important;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-800);
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero-section {
  position: relative;
  padding: 4rem 0 5rem;
}

.hero-glow {
  position: absolute;
  filter: blur(16px);
  border-radius: 999px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-blue {
  top: 2rem;
  left: -7rem;
  width: 18rem;
  height: 18rem;
  background: rgba(30, 58, 138, 0.18);
}

.hero-glow-orange {
  top: 5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(249, 115, 22, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin: 2rem 0 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(30, 58, 138, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(30, 58, 138, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-800);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.btn-light {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-footer {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-footer-alt {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-stat {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.hero-stat strong,
.package-content h3,
.process-card h3,
.faq-card h3 {
  display: block;
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
}

.hero-stat span,
.process-card p,
.faq-card p,
.package-content p {
  color: var(--slate-600);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  animation: floatCard 5.8s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-image {
  object-position: center;
}

.hero-secondary-photo {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  height: 34%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.hero-secondary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.hero-secondary-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.36)),
    linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(249, 115, 22, 0.08));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), transparent 32%, rgba(15, 23, 42, 0.18)),
    linear-gradient(135deg, rgba(30, 58, 138, 0.14), rgba(249, 115, 22, 0.1));
}

.hero-badge {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-badge span {
  display: block;
  color: var(--slate-900);
  font-weight: 800;
}

.hero-badge small {
  color: var(--slate-500);
}

.hero-badge-top {
  top: 1.3rem;
  right: 1.3rem;
}

.hero-badge-bottom {
  bottom: 1.3rem;
  left: 1.3rem;
  z-index: 2;
}

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

.service-card,
.review-card,
.location-card,
.map-frame,
.why-panel,
.gallery-card,
.cta-panel {
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.service-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-media {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.service-card:hover,
.gallery-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 58, 138, 0.16);
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(249, 115, 22, 0.14));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--blue-800);
}

.service-card h3,
.review-card strong,
.site-footer h3,
.site-footer h4,
.benefit-list strong,
.metric-card strong,
.address-box strong {
  margin: 0 0 0.65rem;
  font-family: "Poppins", sans-serif;
}

.why-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.6rem;
  align-items: start;
}

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

.package-card,
.process-card,
.faq-card {
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.package-card {
  overflow: hidden;
}

.package-image {
  position: relative;
  min-height: 250px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

.package-content {
  display: grid;
  gap: 0.95rem;
  padding: 1.4rem;
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.package-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
}

.benefit-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.1rem 1.1rem 1.1rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.check-icon {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 12px 20px rgba(249, 115, 22, 0.22);
}

.check-icon::after {
  content: "";
  position: absolute;
  inset: 8px 7px 8px 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.why-panel {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.metric-card {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.accent-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(16, 37, 95, 0.94));
}

.accent-card strong,
.accent-card span {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 260px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-card,
.faq-card {
  padding: 1.5rem;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(249, 115, 22, 0.18));
  color: var(--blue-800);
  font-weight: 800;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--white);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.map-frame {
  padding: 0.8rem;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 22px;
}

.location-card {
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.address-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.5rem 0 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(30, 58, 138, 0.06);
  color: var(--slate-700);
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--slate-700);
}

.stars {
  font-size: 1.2rem;
  letter-spacing: 0.24rem;
  color: var(--orange-500);
}

.review-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.review-card span {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(16, 37, 95, 0.97), rgba(30, 58, 138, 0.94)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.3), transparent 35%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 3rem 0 6rem;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #10255f 0%, #0a1740 100%);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-number {
  margin: 0 0 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.32);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 24;
  display: none;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(12px);
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.22);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .hero-stats,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .reviews-grid,
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .why-grid,
  .location-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .top-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding-top: 0.7rem;
  }

  .nav-shell {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section-space {
    padding: 4rem 0;
  }

  .top-strip {
    padding: 0.85rem 0;
  }

  .top-strip-actions {
    gap: 0.75rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-card {
    min-height: 360px;
  }

  .hero-badge {
    max-width: calc(100% - 2.6rem);
  }

  .services-grid,
  .reviews-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .review-card,
  .location-card,
  .cta-panel,
  .process-card,
  .faq-card {
    padding: 1.3rem;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    bottom: 5.9rem;
    right: 1rem;
    padding-inline: 1rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .mobile-sticky-bar {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
