.footer,
.package-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(4,15,77,.96), rgba(5,25,94,.92)),
    radial-gradient(circle at 90% 18%, rgba(47,107,255,.18), transparent 26%),
    var(--color-primary, #061570);
}

.footer {
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: 24px;
}

.package-footer {
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: 24px;
}

.footer-bottom,
.footer-bottom-package {
  margin-top: clamp(32px, 4vw, 54px);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.footer::before,
.package-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .11;
  background:
    radial-gradient(ellipse at 12% 105%, rgba(255,255,255,.22), transparent 38%),
    radial-gradient(ellipse at 86% 7%, rgba(47,107,255,.26), transparent 34%),
    repeating-radial-gradient(ellipse at 8% 96%, transparent 0 17px, rgba(255,255,255,.34) 18px 19px),
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: auto, auto, 620px 230px, 86px 86px, 86px 86px;
  animation: footerMapDrift 28s cubic-bezier(.22, 1, .36, 1) infinite alternate;
}

.footer::after,
.package-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: 128px;
  pointer-events: none;
  opacity: .07;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255,255,255,.8) 45% 50%, transparent 51%),
    linear-gradient(45deg, transparent 0 47%, rgba(255,255,255,.9) 48% 52%, transparent 53%);
  background-size: 180px 100%, 220px 100%;
  background-position: left bottom, 80px bottom;
}

.footer > *,
.package-footer > * {
  position: relative;
  z-index: 1;
}

.footer .footer-grid,
.package-footer .footer-grid-package {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1.24fr) minmax(150px, .72fr) minmax(190px, .9fr) minmax(300px, 1.34fr);
  align-items: start;
  gap: clamp(28px, 4vw, 70px);
  max-width: 1280px;
}

.footer .footer-grid::before,
.package-footer .footer-grid-package::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity: .75;
}

.site-footer .footer-column,
.site-footer .footer-brand,
.site-footer .footer-quick-column,
.site-footer .footer-services-column,
.site-footer .footer-reachout {
  min-width: 0;
}

.site-footer .footer-logo,
.site-footer .footer-brand img {
  width: clamp(118px, 9vw, 148px);
  height: auto;
  max-height: 94px;
  object-fit: contain;
  margin-bottom: 20px;
}

.site-footer .footer-description,
.site-footer .footer-brand > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
}

.site-footer .footer-heading,
.site-footer .footer-column > h3,
.site-footer .footer-follow-heading {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.site-footer .footer-follow-heading {
  margin-top: 36px;
  margin-bottom: 14px;
}

.site-footer .footer-links,
.site-footer .footer-column ul:not(.footer-contact-list) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer .footer-links li,
.site-footer .footer-links a,
.site-footer .footer-column ul:not(.footer-contact-list) li,
.site-footer .footer-column ul:not(.footer-contact-list) a {
  color: rgba(255,255,255,.83);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-animate {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms cubic-bezier(.22, 1, .36, 1),
    transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.footer-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-animate:not(.is-visible) {
  will-change: opacity, transform;
}

.footer-reveal-block {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 500ms cubic-bezier(.22, 1, .36, 1),
    transform 500ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--footer-delay, 0ms);
}

.footer-animate.is-visible .footer-reveal-block {
  opacity: 1;
  transform: translateY(0);
}

.footer-animate.is-visible .footer-reveal-block {
  animation: footerColumnReveal 520ms cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--footer-delay, 0ms);
}

.footer li a,
.footer-bottom a,
.package-footer li a,
.footer-bottom-package a {
  position: relative;
  display: inline-flex;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.footer li a::after,
.footer-bottom a::after,
.package-footer li a::after,
.footer-bottom-package a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: .65;
  transition: right .25s ease;
}

.footer li a:hover,
.footer-bottom a:hover,
.package-footer li a:hover,
.footer-bottom-package a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(3px);
}

.footer li a:hover::after,
.footer-bottom a:hover::after,
.package-footer li a:hover::after,
.footer-bottom-package a:hover::after {
  right: 0;
}

.footer-social,
.socials,
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.socials a,
.footer-socials a,
.footer-social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  color: var(--color-primary, #061570);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.socials a svg,
.footer-socials a svg,
.footer-social-link svg,
.socials a img,
.footer-socials a img,
.footer-social-link img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.socials a svg,
.footer-socials a svg,
.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a[aria-label*="Instagram" i] svg,
.footer-socials a[aria-label*="Instagram" i] svg,
.footer-social-link[aria-label*="Instagram" i] svg,
.socials a[aria-label*="WhatsApp" i] svg,
.footer-socials a[aria-label*="WhatsApp" i] svg,
.footer-social-link[aria-label*="WhatsApp" i] svg {
  fill: none;
}

.socials a:hover,
.footer-socials a:hover,
.footer-social-link:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255,255,255,1);
  background: #ffffff;
  color: var(--color-primary, #061570);
  box-shadow: 0 10px 24px rgba(0,0,0,.2), 0 0 0 4px rgba(255,255,255,.05);
}

.footer-reachout {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.footer-reachout h3 {
  margin-bottom: 20px;
}

.footer .footer-contact-list,
.package-footer .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.footer .footer-contact-list li,
.package-footer .footer-contact-list li,
.footer-contact-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(223,235,255,.96);
  display: grid;
  place-items: center;
}

.footer-contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer .footer-contact-list small,
.package-footer .footer-contact-list small {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.footer .footer-contact-list a,
.package-footer .footer-contact-list a {
  color: inherit;
  text-decoration: none;
}

.footer .footer-contact-list a:hover,
.package-footer .footer-contact-list a:hover {
  color: #ffffff;
}

.flyo-floating-actions {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.flyo-whatsapp-float,
.flyo-back-top {
  pointer-events: auto;
}

.flyo-whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.flyo-whatsapp-float:hover {
  transform: translateY(-3px);
  background: transparent;
  box-shadow: none;
}

.flyo-whatsapp-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  animation: whatsappSoftPulse 4.8s ease-in-out infinite;
}

.flyo-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flyo-whatsapp-icon img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.flyo-back-top {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(6,21,112,.96);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.17);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.flyo-back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  background: var(--color-primary, #061570);
}

.whatsapp-office-open {
  overflow: hidden;
}

.whatsapp-office-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.whatsapp-office-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.whatsapp-office-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 42, .58);
  backdrop-filter: blur(8px);
}

.whatsapp-office-dialog {
  position: relative;
  width: min(100%, 430px);
  border: 1px solid rgba(14, 55, 92, .12);
  border-radius: 22px;
  background: #ffffff;
  color: #0a2440;
  box-shadow: 0 28px 80px rgba(5, 21, 42, .28);
  padding: 28px;
  transform: translateY(14px) scale(.98);
  transition: transform .2s ease;
}

.whatsapp-office-modal.is-open .whatsapp-office-dialog {
  transform: translateY(0) scale(1);
}

.whatsapp-office-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(12, 45, 78, .12);
  border-radius: 999px;
  background: #f4f8fb;
  color: #0a2440;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-office-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(9, 96, 163, .1);
  color: #0960a3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.whatsapp-office-dialog h2 {
  margin: 16px 44px 8px 0;
  color: #061f3d;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.08;
}

.whatsapp-office-dialog p {
  margin: 0 0 22px;
  color: #5b6f82;
  line-height: 1.6;
}

.whatsapp-office-options {
  display: grid;
  gap: 12px;
}

.whatsapp-office-option {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  width: 100%;
  border: 1px solid rgba(9, 96, 163, .14);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: #0a2440;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.whatsapp-office-option:hover,
.whatsapp-office-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(9, 96, 163, .38);
  box-shadow: 0 16px 30px rgba(9, 96, 163, .13);
  outline: none;
}

.whatsapp-office-option-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #25d366;
  color: #ffffff;
}

.whatsapp-office-option-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.whatsapp-office-option strong,
.whatsapp-office-option small {
  display: block;
}

.whatsapp-office-option strong {
  font-size: 16px;
  line-height: 1.25;
}

.whatsapp-office-option small {
  margin-top: 4px;
  color: #5b6f82;
  font-size: 14px;
}

@media (max-width: 640px) {
  .whatsapp-office-modal {
    align-items: end;
    padding: 14px;
  }

  .whatsapp-office-dialog {
    width: 100%;
    border-radius: 22px 22px 18px 18px;
    padding: 24px 18px 18px;
  }

  .whatsapp-office-option {
    min-height: 82px;
  }
}

/* Prevent the footer brand-logo sizing rule from expanding social SVG files. */
.site-footer .footer-social-link img,
.site-footer .footer-socials a img,
.site-footer .socials a img {
  width: 24px !important;
  height: 24px !important;
  max-height: none !important;
  margin: 0 !important;
}

.flyo-whatsapp-icon img {
  width: 46px !important;
  height: 46px !important;
}

@keyframes footerMapDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 0, 22px 10px, 20px 14px, -18px 18px; }
}

@keyframes whatsappSoftPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.10); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,.035); }
}

@keyframes footerColumnReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .footer .footer-grid,
  .package-footer .footer-grid-package {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-reachout {
    max-width: none;
    justify-self: stretch;
  }

  .footer-bottom,
  .footer-bottom-package {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .footer::before,
  .package-footer::before {
    opacity: .055;
    background-size: auto, auto, 420px 180px, 64px 64px, 64px 64px;
  }

  .flyo-floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .flyo-whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .flyo-whatsapp-icon {
    width: 25px;
    height: 25px;
  }

  .flyo-back-top {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 560px) {
  .footer-animate {
    transform: translateY(14px);
  }

  .footer .footer-contact-list,
  .package-footer .footer-contact-list {
    gap: 14px;
  }

  .footer .footer-contact-list li,
  .package-footer .footer-contact-list li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
  }

  .footer-contact-icon {
    width: 26px;
    height: 26px;
  }

  .footer-contact-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .footer .footer-grid,
  .package-footer .footer-grid-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-reachout {
    max-width: none;
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer::before,
  .package-footer::before,
  .flyo-whatsapp-icon {
    animation: none;
  }

  .footer-animate,
  .footer-reveal-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .socials a,
  .footer-socials a,
  .footer li a,
  .footer-bottom a,
  .package-footer li a,
  .footer-bottom-package a,
  .flyo-whatsapp-float,
  .flyo-back-top {
    transition: none !important;
  }
}

/* Global footer cleanup: must stay after animation footer rules */
.footer .footer-grid,
.package-footer .footer-grid-package {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 22px 32px;
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.footer .footer-brand,
.footer .footer-about,
.package-footer .footer-brand,
.package-footer .footer-about {
  order: 1 !important;
}
.footer .footer-quick-column,
.package-footer .footer-quick-column {
  order: 2 !important;
}
.footer .footer-services-column,
.package-footer .footer-services-column {
  order: 3 !important;
}
.footer .footer-reachout,
.footer .footer-contact,
.package-footer .footer-reachout,
.package-footer .footer-contact {
  order: 4 !important;
}
.footer .footer-brand img,
.footer .footer-logo,
.package-footer .footer-brand img,
.package-footer .footer-logo {
  width: 112px;
  max-height: 82px;
}
.footer .footer-heading,
.footer .footer-follow-heading,
.footer .footer-grid h3,
.package-footer .footer-heading,
.package-footer .footer-follow-heading,
.package-footer .footer-grid-package h3 {
  margin: 0 0 14px;
  font-size: 17px;
}
.footer .footer-description,
.footer .footer-grid li,
.footer .footer-grid a,
.footer .footer-contact-list small,
.package-footer .footer-description,
.package-footer .footer-grid-package li,
.package-footer .footer-grid-package a,
.package-footer .footer-contact-list small {
  font-size: 13px;
  line-height: 1.55;
}
.footer .footer-social-link,
.footer .footer-socials a,
.footer .socials a,
.package-footer .footer-social-link,
.package-footer .footer-socials a {
  width: 34px;
  height: 34px;
}
.footer .footer-contact-list li,
.footer .footer-contact-item,
.package-footer .footer-contact-list li,
.package-footer .footer-contact-item {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
}
.footer .footer-contact-icon,
.package-footer .footer-contact-icon {
  width: 28px;
  height: 28px;
}
.footer .footer-contact-icon svg,
.package-footer .footer-contact-icon svg {
  width: 22px;
  height: 22px;
}
.footer .footer-bottom,
.package-footer .footer-bottom-package {
  width: min(100% - 44px, 1180px);
  margin: 0 auto;
  padding: 18px 0 24px;
}

@media (max-width: 980px) {
  .footer .footer-grid,
  .package-footer .footer-grid-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .footer .footer-grid,
  .package-footer .footer-grid-package {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer .footer-bottom,
  .package-footer .footer-bottom-package {
    width: min(100% - 30px, 520px);
  }
}

/* Footer redesign and scroll reveal polish */
.site-footer.footer,
.site-footer.package-footer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: clamp(48px, 5vw, 72px) 0 24px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.09), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(60,120,255,.18), transparent 32%),
    linear-gradient(135deg, #07156f 0%, #040b3d 100%);
}

.site-footer::before {
  opacity: .13;
  background:
    radial-gradient(ellipse at 12% 95%, rgba(255,255,255,.24), transparent 38%),
    repeating-radial-gradient(ellipse at 10% 100%, transparent 0 16px, rgba(255,255,255,.30) 17px 18px),
    linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,.18) 46% 47%, transparent 48%),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: auto, 680px 260px, 260px 100%, 90px 90px, 90px 90px;
  animation: footerMapDrift 22s cubic-bezier(.22, 1, .36, 1) infinite alternate;
}

.site-footer::after {
  width: 520px;
  height: 520px;
  left: auto;
  right: -190px;
  top: -190px;
  bottom: auto;
  border-radius: 999px;
  opacity: .55;
  filter: blur(12px);
  background: radial-gradient(circle, rgba(255,255,255,.10), rgba(47,107,255,.10) 38%, transparent 68%);
}

.site-footer .footer-grid,
.site-footer .footer-grid-package {
  box-sizing: border-box;
  width: min(100% - clamp(32px, 5vw, 72px), 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, .78fr) minmax(0, 1fr) minmax(0, 1.28fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
}

.site-footer .footer-grid::before,
.site-footer .footer-grid-package::before {
  top: -22px;
  opacity: .68;
}

.site-footer .footer-brand,
.site-footer .footer-about,
.site-footer .footer-quick-column,
.site-footer .footer-services-column,
.site-footer .footer-reachout {
  min-width: 0;
  max-width: 100%;
}

.site-footer .footer-reachout {
  justify-self: stretch;
}

.site-footer .footer-heading,
.site-footer .footer-follow-heading,
.site-footer .footer-grid h3,
.site-footer .footer-grid-package h3 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 900;
  line-height: 1.18;
}

.site-footer .footer-heading::after,
.site-footer .footer-follow-heading::after,
.site-footer .footer-grid h3::after,
.site-footer .footer-grid-package h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
}

.site-footer .footer-follow-heading {
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: clamp(17px, 1.2vw, 20px);
}

.site-footer .footer-description,
.site-footer .footer-brand > p {
  max-width: 360px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.68;
}

.site-footer .footer-links,
.site-footer .footer-column ul:not(.footer-contact-list) {
  gap: 11px;
}

.site-footer .footer-links a,
.site-footer .footer-column ul:not(.footer-contact-list) a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
  transition: color .25s ease, transform .25s ease;
}

.site-footer .footer-links a::before,
.site-footer .footer-column ul:not(.footer-contact-list) a::before {
  content: "";
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: .7;
  transition: width .25s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-column ul:not(.footer-contact-list) a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.site-footer .footer-links a:hover::before,
.site-footer .footer-column ul:not(.footer-contact-list) a:hover::before {
  width: 13px;
}

.site-footer .footer-social-link,
.site-footer .socials a,
.site-footer .footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.96);
  color: var(--color-primary, #061570);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.site-footer .footer-social-link:hover,
.site-footer .socials a:hover,
.site-footer .footer-socials a:hover {
  transform: translateY(-6px) scale(1.04);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
}

.site-footer .footer-contact-list {
  gap: 10px;
}

.site-footer .footer-contact-item,
.site-footer .footer-contact-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: background .25s ease, border-color .25s ease;
}

.site-footer .footer-contact-item:hover,
.site-footer .footer-contact-list li:hover {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.065);
}

.site-footer .footer-contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: #ffffff;
  transition: transform .25s ease, background .25s ease;
}

.site-footer .footer-contact-item:hover .footer-contact-icon,
.site-footer .footer-contact-list li:hover .footer-contact-icon {
  transform: translateY(-3px) rotate(-4deg);
  background: rgba(255,255,255,.18);
}

.site-footer .footer-contact-icon svg {
  width: 21px;
  height: 21px;
}

.site-footer .footer-contact-list small {
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.48;
}

.site-footer .footer-bottom,
.site-footer .footer-bottom-package {
  box-sizing: border-box;
  width: min(100% - clamp(32px, 5vw, 72px), 1280px);
  max-width: 1280px;
  margin: clamp(34px, 4vw, 54px) auto 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.site-footer.footer-animate,
.site-footer.reveal-footer {
  opacity: .01;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.site-footer.footer-visible,
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer .footer-reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.site-footer.footer-visible .footer-reveal-item,
.site-footer.is-visible .footer-reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.site-footer .footer-brand.footer-reveal-item,
.site-footer .footer-about.footer-reveal-item { transition-delay: .05s; }
.site-footer .footer-quick-column.footer-reveal-item { transition-delay: .15s; }
.site-footer .footer-services-column.footer-reveal-item { transition-delay: .25s; }
.site-footer .footer-contact.footer-reveal-item,
.site-footer .footer-reachout.footer-reveal-item { transition-delay: .35s; }
.site-footer .footer-bottom.footer-reveal-item,
.site-footer .footer-bottom-package.footer-reveal-item { transition-delay: .45s; }

.site-footer .footer-social-link {
  opacity: 0;
  transform: translateY(18px) scale(.9);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, background .25s ease;
}

.site-footer.footer-visible .footer-social-link,
.site-footer.is-visible .footer-social-link {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-footer .footer-social-link:nth-child(1) { transition-delay: .20s; }
.site-footer .footer-social-link:nth-child(2) { transition-delay: .26s; }
.site-footer .footer-social-link:nth-child(3) { transition-delay: .32s; }
.site-footer .footer-social-link:nth-child(4) { transition-delay: .38s; }
.site-footer .footer-social-link:nth-child(5) { transition-delay: .44s; }

.site-footer .footer-contact-item,
.site-footer .footer-contact-list li {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1),
    background .25s ease,
    border-color .25s ease;
}

.site-footer.footer-visible .footer-contact-item,
.site-footer.footer-visible .footer-contact-list li,
.site-footer.is-visible .footer-contact-item,
.site-footer.is-visible .footer-contact-list li {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-contact-item:nth-child(1),
.site-footer .footer-contact-list li:nth-child(1) { transition-delay: .40s; }
.site-footer .footer-contact-item:nth-child(2),
.site-footer .footer-contact-list li:nth-child(2) { transition-delay: .50s; }
.site-footer .footer-contact-item:nth-child(3),
.site-footer .footer-contact-list li:nth-child(3) { transition-delay: .60s; }
.site-footer .footer-contact-item:nth-child(4),
.site-footer .footer-contact-list li:nth-child(4) { transition-delay: .70s; }

body.footer-in-view .flyo-floating-actions {
  bottom: 92px;
}

@media (max-width: 1024px) {
  .site-footer .footer-grid,
  .site-footer .footer-grid-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .site-footer.footer,
  .site-footer.package-footer {
    padding-top: 42px;
  }

  .site-footer .footer-grid,
  .site-footer .footer-grid-package {
    width: min(100% - 28px, 560px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-description,
  .site-footer .footer-brand > p {
    max-width: none;
  }

  .site-footer .footer-reveal-item {
    transform: translateY(20px);
  }

  .site-footer .footer-contact-item,
  .site-footer .footer-contact-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 7px 0;
  }

  .site-footer .footer-bottom,
  .site-footer .footer-bottom-package {
    width: min(100% - 28px, 560px);
    align-items: flex-start;
  }

  body.footer-in-view .flyo-floating-actions {
    bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer,
  .site-footer .footer-reveal-item,
  .site-footer .footer-social-link,
  .site-footer .footer-contact-item,
  .site-footer .footer-contact-list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Final scroll and footer motion guard */
html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  overflow-y: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body,
.site-shell,
.page-shell,
.app,
#root,
main {
  max-width: 100%;
}

.app,
#root {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
}

main,
.page-shell,
.package-detail-hero,
.package-section,
.gallery-section,
.reviews-section,
.faq-section,
.package-options {
  overflow-y: visible;
}

img,
video,
picture,
canvas {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

.site-footer.footer,
.site-footer.package-footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.site-footer::before {
  opacity: 0;
  transform: scale(1.045);
  transform-origin: 18% 10%;
  transition:
    opacity 1.25s cubic-bezier(.22, 1, .36, 1),
    transform 1.25s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform, background-position;
}

.site-footer.footer-visible::before,
.site-footer.is-visible::before,
.site-footer.visible::before {
  opacity: .16;
  transform: scale(1);
}

.site-footer.footer-animate,
.site-footer.reveal-footer {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1.1s cubic-bezier(.22, 1, .36, 1),
    transform 1.1s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.site-footer.footer-visible,
.site-footer.is-visible,
.site-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer .footer-reveal-block,
.site-footer .footer-reveal-item,
.site-footer .footer-animate-item {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .95s cubic-bezier(.22, 1, .36, 1),
    transform .95s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--footer-delay, .1s);
  will-change: opacity, transform;
}

.site-footer.footer-visible .footer-reveal-block,
.site-footer.footer-visible .footer-reveal-item,
.site-footer.footer-visible .footer-animate-item,
.site-footer.is-visible .footer-reveal-block,
.site-footer.is-visible .footer-reveal-item,
.site-footer.is-visible .footer-animate-item,
.site-footer.visible .footer-reveal-block,
.site-footer.visible .footer-reveal-item,
.site-footer.visible .footer-animate-item {
  opacity: 1;
  transform: translateY(0);
}

.site-footer .footer-brand.footer-reveal-item,
.site-footer .footer-about.footer-reveal-item {
  transition-delay: .10s;
}

.site-footer .footer-social-link {
  transition-delay: .16s;
}

.site-footer .footer-quick-column.footer-reveal-item {
  transition-delay: .22s;
}

.site-footer .footer-services-column.footer-reveal-item {
  transition-delay: .34s;
}

.site-footer .footer-contact.footer-reveal-item,
.site-footer .footer-reachout.footer-reveal-item {
  transition-delay: .46s;
}

.site-footer .footer-bottom.footer-reveal-item,
.site-footer .footer-bottom-package.footer-reveal-item {
  transition-delay: .58s;
}

.site-footer .footer-contact-item,
.site-footer .footer-contact-list li {
  transform: translateY(34px);
}

.site-footer.footer-visible .footer-contact-item,
.site-footer.footer-visible .footer-contact-list li,
.site-footer.is-visible .footer-contact-item,
.site-footer.is-visible .footer-contact-list li,
.site-footer.visible .footer-contact-item,
.site-footer.visible .footer-contact-list li {
  transform: translateY(0);
}

.flyo-floating-actions {
  right: max(14px, env(safe-area-inset-right));
  max-width: calc(100vw - 28px);
}

.flyo-whatsapp-float,
.flyo-back-top {
  max-width: 100%;
}

:where(.site-footer, .footer-reveal-block, .footer-reveal-item, .footer-animate-item, .footer-social-link, .footer-contact-item, .flyo-whatsapp-float, .flyo-back-top) {
  backface-visibility: hidden;
}

@media (max-width: 640px) {
  .site-footer.footer-animate,
  .site-footer.reveal-footer {
    transform: translateY(46px);
  }

  .site-footer .footer-reveal-block,
  .site-footer .footer-reveal-item,
  .site-footer .footer-animate-item {
    transform: translateY(28px);
  }
}

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

  .site-footer,
  .site-footer::before,
  .site-footer .footer-reveal-block,
  .site-footer .footer-reveal-item,
  .site-footer .footer-animate-item,
  .site-footer .footer-social-link,
  .site-footer .footer-contact-item,
  .site-footer .footer-contact-list li,
  .flyo-whatsapp-icon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Calm footer animation override: one smooth reveal, no glitchy drift */
.site-footer::before,
.site-footer::after {
  transform: none !important;
  animation: none !important;
  transition: opacity .8s ease !important;
  will-change: opacity;
}

.site-footer::before {
  opacity: .10;
}

.site-footer.footer-visible::before,
.site-footer.is-visible::before,
.site-footer.visible::before {
  opacity: .13;
}

.site-footer.footer-animate,
.site-footer.reveal-footer {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.site-footer.footer-visible,
.site-footer.is-visible,
.site-footer.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer .footer-reveal-block,
.site-footer .footer-reveal-item,
.site-footer .footer-animate-item,
.site-footer .footer-social-link,
.site-footer .footer-contact-item,
.site-footer .footer-contact-list li {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: none !important;
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    transform .62s cubic-bezier(.22, 1, .36, 1),
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  will-change: opacity, transform;
}

.site-footer.footer-visible .footer-reveal-block,
.site-footer.footer-visible .footer-reveal-item,
.site-footer.footer-visible .footer-animate-item,
.site-footer.footer-visible .footer-social-link,
.site-footer.footer-visible .footer-contact-item,
.site-footer.footer-visible .footer-contact-list li,
.site-footer.is-visible .footer-reveal-block,
.site-footer.is-visible .footer-reveal-item,
.site-footer.is-visible .footer-animate-item,
.site-footer.is-visible .footer-social-link,
.site-footer.is-visible .footer-contact-item,
.site-footer.is-visible .footer-contact-list li,
.site-footer.visible .footer-reveal-block,
.site-footer.visible .footer-reveal-item,
.site-footer.visible .footer-animate-item,
.site-footer.visible .footer-social-link,
.site-footer.visible .footer-contact-item,
.site-footer.visible .footer-contact-list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer .footer-brand.footer-reveal-item,
.site-footer .footer-about.footer-reveal-item {
  transition-delay: .04s;
}

.site-footer .footer-social-link {
  transition-delay: .10s;
}

.site-footer .footer-quick-column.footer-reveal-item {
  transition-delay: .14s;
}

.site-footer .footer-services-column.footer-reveal-item {
  transition-delay: .20s;
}

.site-footer .footer-contact.footer-reveal-item,
.site-footer .footer-reachout.footer-reveal-item {
  transition-delay: .26s;
}

.site-footer .footer-bottom.footer-reveal-item,
.site-footer .footer-bottom-package.footer-reveal-item {
  transition-delay: .32s;
}

.footer-animate.is-visible .footer-reveal-block {
  animation: none !important;
}
/* Official Flyo footer contact cards */
.site-footer .footer-reachout,
.footer .footer-reachout,
.package-footer .footer-reachout {
  max-width: 520px;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.footer-office-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.footer-office-card h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.footer-office-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-office-card li > a,
.footer-office-card li > span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  min-width: 0;
}

.footer-office-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
}

.footer-office-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-office-card small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-office-card strong {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-office-card a {
  transition: transform .25s ease, color .25s ease;
}

.footer-office-card a:hover {
  transform: translateX(3px);
  color: #fff;
}

@media (max-width: 980px) {
  .site-footer .footer-reachout,
  .footer .footer-reachout,
  .package-footer .footer-reachout {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-office-grid {
    grid-template-columns: 1fr;
  }

  .footer-office-card {
    padding: 13px;
  }
}

/* Final page scroll comfort guard */
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

@media (prefers-reduced-motion: no-preference) {
  .footer-animate {
    transition-duration: 780ms;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }

  .site-footer .footer-reveal-block,
  .site-footer .footer-reveal-item {
    transition-duration: 760ms;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }
}

/* Clean footer contact columns */
.site-footer .footer-reachout,
.footer .footer-reachout,
.package-footer .footer-reachout {
  max-width: 560px;
}

.footer-office-grid {
  gap: 28px !important;
}

.footer-office-card {
  padding: 0 0 0 18px !important;
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-office-card h4 {
  margin-bottom: 16px !important;
  font-size: clamp(18px, 1.5vw, 24px) !important;
}

.footer-office-card ul {
  gap: 13px !important;
}

.footer-office-card li > a,
.footer-office-card li > span {
  grid-template-columns: 28px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
}

.footer-office-icon {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .06) !important;
}

.footer-office-icon svg {
  width: 14px !important;
  height: 14px !important;
}

.footer-office-card small {
  margin-bottom: 1px !important;
  color: rgba(255, 255, 255, .58) !important;
  font-size: 10px !important;
  letter-spacing: .08em !important;
}

.footer-office-card strong {
  color: rgba(255, 255, 255, .92) !important;
  font-size: clamp(13px, .95vw, 15px) !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
}

.footer-office-card a:hover {
  transform: translateX(2px) !important;
}

@media (max-width: 640px) {
  .footer-office-grid {
    gap: 22px !important;
  }

  .footer-office-card {
    padding-left: 14px !important;
  }
}

/* Compact office contact cards */
.site-footer .footer-grid,
.site-footer .footer-grid-package {
  grid-template-columns: minmax(210px, 1.08fr) minmax(130px, .66fr) minmax(170px, .82fr) minmax(520px, 1.78fr) !important;
  gap: clamp(24px, 2.6vw, 42px) !important;
}

.site-footer .footer-reachout,
.footer .footer-reachout,
.package-footer .footer-reachout {
  max-width: 620px !important;
}

.footer-office-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.footer-office-card {
  min-width: 0 !important;
  padding: 13px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .055) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10) !important;
}

.footer-office-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-office-card h4 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(15px, 1.05vw, 17px) !important;
  line-height: 1.2;
  font-weight: 900;
}

.footer-office-head span {
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-office-card ul {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.footer-office-card li > a,
.footer-office-card li > span {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: center !important;
  min-width: 0 !important;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
}

.footer-office-card li > a::before,
.footer-office-card li > a::after {
  display: none !important;
  content: none !important;
}

.footer-office-card li > a > span:not(.footer-office-icon),
.footer-office-card li > span > span:not(.footer-office-icon) {
  min-width: 0;
}

.footer-office-icon {
  display: grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  border: 1px solid rgba(255, 255, 255, .20) !important;
  border-radius: 10px !important;
  color: rgba(255, 255, 255, .94) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.footer-office-icon svg {
  width: 15px !important;
  height: 15px !important;
}

.footer-office-card small {
  display: block;
  margin: 0 0 1px !important;
  color: rgba(255, 255, 255, .58) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

.footer-office-card strong {
  display: block;
  min-width: 0;
  color: rgba(255, 255, 255, .92) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-office-card a {
  transition: color .25s ease, transform .25s ease;
}

.footer-office-card a:hover {
  color: #fff !important;
  transform: translateX(2px) !important;
}

@media (max-width: 1180px) {
  .site-footer .footer-grid,
  .site-footer .footer-grid-package {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-office-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-office-grid,
  .footer .footer-office-grid,
  .package-footer .footer-office-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-office-card {
    padding: 13px !important;
  }

  .footer-office-head {
    margin-bottom: 10px;
  }
}

/* Lightweight scroll performance overrides */
html {
  overflow-x: clip;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body::-webkit-scrollbar {
  width: initial;
  height: initial;
}

.footer,
.package-footer,
.site-footer.footer,
.site-footer.package-footer {
  overflow: hidden;
  contain: paint;
}

.footer::before,
.package-footer::before,
.site-footer::before,
.site-footer::after {
  animation: none !important;
  filter: none !important;
  transform: none !important;
  transition: opacity .55s ease !important;
  will-change: auto !important;
}

.site-footer::before {
  opacity: .09;
}

.site-footer.footer-visible::before,
.site-footer.is-visible::before,
.site-footer.visible::before {
  opacity: .12;
}

.site-footer.footer-animate,
.site-footer.reveal-footer {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .55s ease, transform .55s ease;
  will-change: auto;
}

.site-footer.footer-visible,
.site-footer.is-visible,
.site-footer.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.footer-animate,
.footer-reveal-block,
.site-footer .footer-reveal-block,
.site-footer .footer-reveal-item,
.site-footer .footer-animate-item,
.site-footer .footer-social-link,
.site-footer .footer-contact-item,
.site-footer .footer-contact-list li {
  animation: none !important;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .48s ease,
    transform .48s ease,
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease;
  will-change: auto !important;
}

.footer-animate.is-visible,
.footer-animate.is-visible .footer-reveal-block,
.site-footer.footer-visible .footer-reveal-block,
.site-footer.footer-visible .footer-reveal-item,
.site-footer.footer-visible .footer-animate-item,
.site-footer.footer-visible .footer-social-link,
.site-footer.footer-visible .footer-contact-item,
.site-footer.footer-visible .footer-contact-list li,
.site-footer.is-visible .footer-reveal-block,
.site-footer.is-visible .footer-reveal-item,
.site-footer.is-visible .footer-animate-item,
.site-footer.is-visible .footer-social-link,
.site-footer.is-visible .footer-contact-item,
.site-footer.is-visible .footer-contact-list li,
.site-footer.visible .footer-reveal-block,
.site-footer.visible .footer-reveal-item,
.site-footer.visible .footer-animate-item,
.site-footer.visible .footer-social-link,
.site-footer.visible .footer-contact-item,
.site-footer.visible .footer-contact-list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto !important;
}

.flyo-floating-actions {
  bottom: 22px;
  transform: translate3d(0, 0, 0);
  transition: transform .22s ease;
  will-change: auto;
}

body.footer-in-view .flyo-floating-actions {
  bottom: 22px !important;
  transform: translate3d(0, -70px, 0);
}

.flyo-whatsapp-float,
.flyo-back-top {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .13);
  transition: transform .2s ease, background-color .2s ease;
  will-change: auto;
}

.flyo-whatsapp-icon {
  animation: none !important;
  box-shadow: none !important;
}

.whatsapp-office-backdrop {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.whatsapp-office-dialog {
  box-shadow: 0 18px 44px rgba(5, 21, 42, .22);
}

@media (max-width: 640px) {
  body.footer-in-view .flyo-floating-actions {
    transform: translate3d(0, -56px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile footer cleanup */
.footer-office-tabs {
  display: none;
}

@media (max-width: 768px) {
  .site-footer.footer,
  .site-footer.package-footer {
    padding: 40px 0 24px !important;
    background:
      linear-gradient(145deg, rgba(7, 21, 111, .98), rgba(4, 11, 61, .98)),
      var(--color-primary, #061570) !important;
  }

  .site-footer::before {
    opacity: .045 !important;
    background-size: auto, 440px 170px, 180px 100%, 68px 68px, 68px 68px !important;
  }

  .site-footer::after {
    display: none !important;
  }

  .site-footer .footer-grid,
  .site-footer .footer-grid-package,
  .footer .footer-grid,
  .package-footer .footer-grid-package {
    width: min(100% - 40px, 560px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 !important;
  }

  .site-footer .footer-grid::before,
  .site-footer .footer-grid-package::before {
    display: none !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-about,
  .site-footer .footer-quick-column,
  .site-footer .footer-reachout {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  .site-footer .footer-reachout {
    padding-bottom: 92px !important;
  }

  .site-footer .footer-services-column,
  .package-footer .footer-services-column {
    display: none !important;
  }

  .site-footer .footer-logo,
  .site-footer .footer-brand img {
    width: 108px !important;
    max-height: 78px !important;
    margin: 0 0 14px !important;
  }

  .site-footer .footer-description,
  .site-footer .footer-brand > p {
    max-width: 310px !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .site-footer .footer-follow-heading {
    margin: 22px 0 12px !important;
    font-size: 20px !important;
  }

  .site-footer .footer-heading,
  .site-footer .footer-column > h3,
  .site-footer .footer-grid h3 {
    margin: 0 0 14px !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .site-footer .footer-social,
  .site-footer .socials,
  .site-footer .footer-socials {
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .site-footer .footer-social-link,
  .site-footer .footer-socials a,
  .site-footer .socials a {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    box-shadow: none !important;
  }

  .site-footer .footer-social-link img,
  .site-footer .footer-socials a img,
  .site-footer .socials a img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
  }

  .site-footer .footer-social-link[aria-label="TikTok"],
  .site-footer .footer-social-link[aria-label="X"] {
    display: none !important;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 18px !important;
  }

  .site-footer .footer-links li,
  .site-footer .footer-links a {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .site-footer .footer-quick-column .footer-links li:nth-last-child(-n+2) {
    display: none !important;
  }

  .site-footer .footer-office-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 0 0 12px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
  }

  .site-footer .footer-office-tab {
    min-height: 40px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }

  .site-footer .footer-office-tab.is-active {
    background: #ffffff;
    color: var(--color-primary, #061570);
  }

  .site-footer .footer-office-grid,
  .footer .footer-office-grid,
  .package-footer .footer-office-grid {
    display: block !important;
    margin: 0 !important;
  }

  .site-footer .footer-office-card,
  .footer .footer-office-card,
  .package-footer .footer-office-card {
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .06) !important;
    box-shadow: none !important;
  }

  .site-footer .footer-office-card[hidden] {
    display: none !important;
  }

  .site-footer .footer-office-head {
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  .site-footer .footer-office-head span {
    display: none !important;
  }

  .site-footer .footer-office-card h4 {
    font-size: 17px !important;
  }

  .site-footer .footer-office-card ul {
    gap: 9px !important;
  }

  .site-footer .footer-office-card li > a,
  .site-footer .footer-office-card li > span {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .site-footer .footer-office-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .site-footer .footer-office-card strong {
    font-size: 14px !important;
    line-height: 1.36 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .site-footer .footer-bottom,
  .site-footer .footer-bottom-package,
  .footer .footer-bottom,
  .package-footer .footer-bottom-package {
    width: min(100% - 40px, 560px) !important;
    margin: 28px auto 0 !important;
    padding: 18px 0 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    color: rgba(255, 255, 255, .74) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .site-footer .footer-bottom a,
  .site-footer .footer-bottom-package a {
    font-size: 12px !important;
  }
}

@media (max-width: 640px) {
  .flyo-floating-actions {
    right: max(18px, env(safe-area-inset-right)) !important;
    bottom: calc(90px + env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transform: none !important;
    z-index: 999 !important;
  }

  body.footer-in-view .flyo-floating-actions {
    bottom: calc(90px + env(safe-area-inset-bottom)) !important;
    transform: none !important;
  }

  .flyo-whatsapp-float,
  .flyo-whatsapp-icon {
    width: 54px !important;
    height: 54px !important;
  }

  .flyo-back-top {
    display: none !important;
  }
}
