:root {
  --sand: #f6f1ea;
  --ink: #1f2937;
  --copper: #b45309;
  --forest: #065f46;
  --cloud: #f8fafc;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #fff7ed, #f6f1ea 55%, #f1e7dd 100%);
}

html,
body {
  overflow-x: hidden;
}


.font-display {
  font-family: "Playfair Display", serif;
}

.bg-sand {
  background-color: var(--sand);
}

.btn-primary {
  background: linear-gradient(120deg, #c2410c, #f59e0b);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-secondary {
  background: linear-gradient(120deg, #0e5fc9, #f59e0b);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #d6d3d1;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  color: #1f2937;
  font-weight: 600;
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
  color: #ffffff;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nav-link {
  color: #475569;
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.1;
}

a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 18px rgba(194, 65, 12, 0.25);
}

.btn-outline:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.nav-link:hover {
  color: #0f172a;
  background-color: #f1f5f9;
}

.nav-link--with-dot {
  min-width: max-content;
}

.nav-link--button {
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
}

.nav-cluster {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border-radius: 0.85rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.nav-link--mobile {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #ffffff;
}

.nav-link--mobile:hover {
  background: #f8fafc;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  width: 100%;
}

.apartment-proximity-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe2ea;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f8fafc, #eef6f1);
}

.apartment-proximity-card__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #dcfce7, #ccfbf1);
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1rem;
}

.apartment-proximity-card__content {
  min-width: 0;
}

.apartment-proximity-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #475569;
}

.apartment-proximity-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #475569;
}

.hero-grid {
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.landing-hero {
  position: relative;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background-color: #f8fafc;
  background-image: var(--landing-hero-mobile, radial-gradient(circle at top, #242322, #242322 55%, #242322 100%));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.35));
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .landing-hero {
    background-image: var(--landing-hero-desktop, var(--landing-hero-mobile, radial-gradient(circle at top, #fff7ed, #f6f1ea 55%, #f1e7dd 100%)));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}

@media (min-width: 1024px) {
  .apartment-proximity-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
  }

  .apartment-proximity-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .landing-hero {
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 0;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-video {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #e2e8f0;
}

.feature-video__link {
  display: block;
  position: relative;
}

.feature-video__media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.feature-video__label {
  position: absolute;
  top: 1.1rem;
  left: -1.75rem;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  padding: 0.35rem 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(-35deg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.gallery-video__label {
  min-width: 170px;
  padding: 0.35rem 1.1rem;
}

.feature-carousel {
  margin-top: 0.75rem;
  overflow: hidden;
}

.feature-carousel__track {
  display: inline-flex;
  gap: 0.6rem;
  animation: featureCarouselScroll 32s linear infinite;
}

.feature-carousel__item {
  display: inline-flex;
  width: 110px;
  height: 72px;
  border-radius: 0.8rem;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.feature-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-carousel__track {
  display: flex;
  width: 100%;
  gap: 0;
  align-items: stretch;
  animation: none;
  transition: transform 420ms ease-in-out;
  transform: translateX(0);
}

.package-carousel {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.package-carousel:active {
  cursor: grabbing;
}

.package-carousel .feature-carousel__item {
  width: 100%;
  min-width: 100%;
  height: auto;
  flex: 0 0 100%;
  box-shadow: none;
}

.package-pagination-controls {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.package-pagination-btn {
  border: 1px solid #dbe2ea;
  background: #ffffff;
  color: #0f172a;
  padding: 0.35rem 0.65rem;
  border-radius: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.package-pagination-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 1px solid #94a3b8;
  background: #e2e8f0;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.package-pagination-dot.is-active {
  border-color: #0f766e;
  background: #0f766e;
  transform: scale(1.2);
}

.package-card {
  width: 230px;
  min-height: 235px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid #dbe2ea;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
}

.package-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.package-card__media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid #dbe2ea;
  display: block;
}

.package-card__media-button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.package-card__media-button:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 3px;
  border-radius: 0.7rem;
}

.package-card__details {
  margin-top: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.35;
  padding-left: 1rem;
  list-style: disc;
}

.package-card__price {
  margin-top: auto;
}

.package-card__strike {
  font-size: 0.72rem;
  color: #fca5a5;
  text-decoration: line-through;
}

.package-card__amount {
  font-size: 0.9rem;
  font-weight: 800;
  color: #16a34a;
}

.package-card__pending {
  font-size: 0.78rem;
  color: #64748b;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 460ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.76);
  padding: 0;
}

.image-lightbox__dialog {
  position: relative;
  width: min(92vw, 900px);
  max-height: 88vh;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.75rem 0.75rem 0.95rem;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.38);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 460ms ease, opacity 460ms ease;
}

.image-lightbox.is-open .image-lightbox__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.image-lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox__img {
  width: 100%;
  max-height: calc(88vh - 4rem);
  object-fit: contain;
  border-radius: 0.65rem;
  display: block;
}

.image-lightbox__caption {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  color: #334155;
}

@media (min-width: 1024px) {
  .landing-package-desktop {
    padding: 1rem;
    margin-top: 0.25rem;
  }

  .landing-package-desktop .package-carousel {
    margin-top: 0.25rem;
  }

  .landing-package-desktop .package-carousel__track {
    gap: 0.75rem;
  }

  .landing-package-desktop .package-card {
    width: calc(50% - 0.375rem);
    min-width: calc(50% - 0.375rem);
    flex: 0 0 calc(50% - 0.375rem);
    min-height: 190px;
    padding: 0.65rem;
    gap: 0.55rem;
  }

  .landing-package-desktop .package-card__media {
    height: 240px;
  }

  .landing-package-desktop .package-card__details {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .gallery-package-desktop .package-card {
    min-height: 255px;
  }

  .gallery-package-desktop .package-card__media {
    height: 240px;
  }
}

@keyframes featureCarouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .feature-video__media {
    height: 240px;
  }

  .package-card__media {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-carousel__track {
    animation: none;
  }
}

.feature-map {
  margin-top: 1rem;
  grid-column: 1 / -1;
  width: 100%;
}

.booking-table-wrap {
  border-radius: 0.9rem;
}

.inbox-shell {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.inbox-list-panel {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
  padding: 0.85rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.inbox-panel-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.65rem;
}

.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.inbox-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #ffffff;
  text-align: left;
  padding: 0.75rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inbox-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.inbox-item.is-active {
  border-color: #0f766e;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.16);
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.inbox-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.inbox-item__subject-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.inbox-item__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.inbox-item__subject {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-item__date {
  font-size: 0.72rem;
  color: #64748b;
  white-space: nowrap;
}

.inbox-item__preview {
  margin-top: 0.35rem;
  font-size: 0.79rem;
  line-height: 1.35;
  color: #475569;
}

.inbox-item__from {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.inbox-mobile-count {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
  background: #ccfbf1;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

.payment-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
}

.payment-status-badge--success {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.payment-status-badge--pending {
  background: #fef9c3;
  border-color: #fde047;
  color: #a16207;
}

.payment-status-badge--cancel {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.inbox-detail-panel {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
  min-height: 380px;
  padding: 1rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.inbox-detail-panel.is-refreshing {
  animation: inboxFade 180ms ease-out;
}

.inbox-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.inbox-detail__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  background: #ccfbf1;
}

.inbox-mobile-back {
  display: none;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
}

.inbox-detail__date {
  font-size: 0.75rem;
  color: #64748b;
}

.inbox-detail__subject {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.inbox-detail__from {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

.inbox-detail__divider {
  margin-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.inbox-detail__body {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1e293b;
  white-space: pre-wrap;
}

@keyframes inboxFade {
  from {
    opacity: 0.6;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .inbox-shell {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }
}

@media (max-width: 1023px) {
  .inbox-shell {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 0.55rem;
    overflow: hidden;
  }

  .inbox-list-panel,
  .inbox-detail-panel {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.4rem;
  }

  .inbox-list {
    max-height: none;
    gap: 0.65rem;
  }

  .inbox-item {
    padding: 0.85rem;
    border-radius: 0.95rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  }

  .inbox-item__subject {
    font-size: 0.92rem;
  }

  .inbox-item__preview {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .inbox-detail-panel {
    min-height: auto;
  }

  .inbox-mobile-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .inbox-shell:not(.inbox-shell--show-detail) .inbox-detail-panel {
    display: none;
  }

  .inbox-shell.inbox-shell--show-detail .inbox-list-panel {
    display: none;
  }
}

.booking-table-scroll.is-scrollable {
  overflow: auto;
  scrollbar-width: thin;
  position: relative;
  overscroll-behavior: contain;
}

.booking-table-scroll.is-scrollable table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}

.booking-table-scroll.is-scrollable thead {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f8fafc;
}

.booking-table-scroll.is-scrollable thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: #f8fafc;
  box-shadow: inset 0 -1px 0 #e2e8f0;
}

.responsive-booking-table thead th {
  white-space: nowrap;
}

.responsive-booking-table tbody tr:hover {
  background: #f8fafc;
}

@media (max-width: 767px) {
  .responsive-booking-table {
    border: 0;
    width: 100%;
  }

  .responsive-booking-table thead {
    display: none;
  }

  .responsive-booking-table tbody {
    display: grid;
    gap: 0.75rem;
    background: transparent;
  }

  .responsive-booking-table tbody tr {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    background: #ffffff;
    padding: 0.2rem 0;
  }

  .responsive-booking-table tbody td {
    display: grid;
    grid-template-columns: minmax(92px, 40%) 1fr;
    gap: 0.55rem;
    align-items: baseline;
    border: 0;
    padding: 0.42rem 0.75rem;
  }

.responsive-booking-table tbody td::before {
    content: attr(data-label);
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

.fa-dumbbell,
.fa-utensils,
.fa-ban,
.fa-kitchen-set,
.fa-jug-detergent,
.fa-couch {
  font-size: 1.05rem;
}

.google-map {
  min-height: 340px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(140deg, #f8fafc, #e2e8f0);
  width: 100%;
  display: block;
}


.construction-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));
  padding: 1.5rem;
}

.construction-card {
  max-width: 460px;
  width: 100%;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
}

.construction-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 700;
  margin-bottom: 1rem;
}

.construction-tools {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
  position: relative;
}

.tool-icon {
  width: 100px;
  height: 100px;
  font-size: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  animation: toolSpin 5s linear infinite;
}

.tool-icon--small {
  width: 60px;
  height: 60px;
  font-size: 60px;
  margin-top:50px;
  margin-left:20px;
}

.construction-tools .tool-icon + .tool-icon {
  margin-left: -78px;
}

.tool-icon--front {
  z-index: 2;
}

.tool-icon--reverse {
  animation-direction: reverse;
}

.tool-icon--static {
  animation: none;
}

.construction-note {
  color: #475569;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@keyframes toolSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-ribbon {
  position: absolute;
  top: 0.75rem;
  right: -2.25rem;
  background: #16a34a;
  color: white;
  padding: 0.35rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.35);
}

.availability-status {
  --glow-rgb: 5, 150, 105;
  border-color: rgba(var(--glow-rgb), 0.6);
  box-shadow: 0 0 10px rgba(var(--glow-rgb), 0.35), 0 0 22px rgba(var(--glow-rgb), 0.2);
  animation: availabilityPulse 2.6s ease-in-out infinite;
  filter: saturate(1.1);
}

.availability-status[data-status="Booked"] {
  --glow-rgb: 220, 38, 38;
}

@keyframes availabilityPulse {
  0% {
    box-shadow: 0 0 0 rgba(var(--glow-rgb), 0.25), 0 0 0 rgba(var(--glow-rgb), 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(var(--glow-rgb), 0.55), 0 0 28px rgba(var(--glow-rgb), 0.25);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 rgba(var(--glow-rgb), 0.25), 0 0 0 rgba(var(--glow-rgb), 0.15);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .availability-status {
    animation: none;
  }
}

.whatsapp-float-icon {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
  animation: whatsappPulse 1.6s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float-icon__label {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float-icon:hover .whatsapp-float-icon__label {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.whatsapp-float-icon:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 640px) {
  .whatsapp-float-icon {
    right: 1.8rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-icon {
    animation: none;
  }
}
