:root {
  --gold: rgb(173, 150, 92);
  --gold-antique: rgb(173, 150, 92);
  --green: #36674f;
  --green-bright: #1cc343;
  --ink: #06020c;
  --muted: #d2d3d5;
  --white: #ffffff;
  --hero-cta: rgb(173, 150, 92);
  --btn-radius: 40px;
  --header-pad-x: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Nunito, sans-serif;
  color: #111;
  background: #000;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Header overlays the hero, matching header_position_over */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 12px var(--header-pad-x);
  column-gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.logo img {
  display: block;
  height: 92px;
  width: auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: block;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  padding: 16.2px;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--gold);
}

.nav-list a.is-active::before {
  content: "";
  position: absolute;
  left: 16.2px;
  right: 16.2px;
  bottom: 10px;
  height: 1px;
  background: var(--gold);
}

.search-toggle {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 8px 4px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease;
}

.search-toggle i {
  font-size: 15px;
}

.search-toggle:hover {
  color: var(--gold);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 2, 12, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 22px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.search-overlay-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.search-panel {
  width: min(720px, 100%);
  background: linear-gradient(180deg, rgba(28, 24, 18, 0.98), rgba(12, 10, 8, 0.98));
  border: 1px solid rgba(173, 150, 92, 0.45);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 36px 32px 28px;
}

.search-label {
  display: block;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 18px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 8px 8px 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.search-field:focus-within {
  border-color: var(--gold);
  background: rgba(173, 150, 92, 0.08);
}

.search-field > i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: Nunito, sans-serif;
  font-size: 17px;
  outline: none;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-field input::-webkit-search-cancel-button,
.search-field input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.search-clear:hover {
  color: #fff;
  background: transparent;
}

.search-clear[hidden] {
  display: none;
}

.search-field button[type="submit"] {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 14px 26px;
  border-radius: var(--btn-radius);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.search-field button[type="submit"]:hover {
  background: #9a8550;
}

.search-hint {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.phone-btn {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 13px 40px;
  border-radius: var(--btn-radius);
  white-space: nowrap;
}

.quote-btn:hover {
  background: #9a8550;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  font-size: 22px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-video,
.hero-poster,
.hero-shade,
.hero-fade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #111;
}

.hero-video,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-video {
  object-position: center 18%;
  filter: saturate(1.15) contrast(1.1) brightness(1.08);
}

.hero-poster {
  z-index: 1;
  object-position: center center;
  transition: opacity 0.6s ease;
}

.hero-media.is-playing .hero-poster {
  opacity: 0;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.16);
}

.hero-fade {
  background: linear-gradient(90deg, rgba(6, 2, 12, 0.72) 0%, rgba(6, 2, 12, 0.28) 42%, rgba(6, 2, 12, 0.12) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 0 0 70px;
}

.hero-kicker {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 8px 28px rgba(6, 2, 12, 0.35);
}

.hero-sub {
  font-family: Nunito, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 36px;
  background: var(--hero-cta);
  color: var(--white);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--btn-radius);
}

.hero-cta:hover {
  background: #9a8550;
}

.scroll-down {
  position: absolute;
  left: 70px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--white);
}

.scroll-arrow {
  display: grid;
  place-items: center;
  font-size: 16px;
}

.package {
  position: relative;
  min-height: 821px;
  padding: 80px 50px 90px;
  color: var(--white);
  background: #000 url("../images/package-chips.jpg") center / cover no-repeat;
  overflow: hidden;
}

.chip-pair {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.chip-pair img {
  position: absolute;
  width: 260px;
  height: auto;
  will-change: transform;
}

.chip-pair__left {
  top: 8%;
  left: -130px;
}

.chip-pair__right {
  top: 34%;
  right: -130px;
}

.chip-screen {
  position: relative;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  overflow: hidden;
}

.package-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
}

.package-inner {
  position: relative;
  z-index: 3;
  width: min(1242px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.package-offer,
.package-tables {
  width: 100%;
  min-width: 0;
}

.package-kicker {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 12.6px;
  line-height: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffc15e;
  margin-bottom: 20px;
}

.package-price {
  position: relative;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 169px;
  line-height: 0.95;
  letter-spacing: -1.1px;
  color: var(--white);
}

.package-star {
  position: absolute;
  top: 0.15em;
  font-size: 2.7rem;
  line-height: 1;
}

.package-name {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 48.6px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 8px 0 20px;
}

.package-includes {
  list-style: none;
  max-width: 468px;
  margin: 4px 0 22px;
}

.package-includes li {
  font-family: Nunito, sans-serif;
  font-size: 16.2px;
  line-height: 1.45;
  color: #d2d3d5;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.package-note {
  max-width: 468px;
  font-family: Nunito, sans-serif;
  font-size: 15.3px;
  line-height: 1.62;
  color: #d2d3d5;
}

.package-choose {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 48.6px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

.package-games {
  list-style: none;
  margin-bottom: 36px;
}

.package-games li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.package-game {
  display: block;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 20.7px;
  line-height: 1;
  color: var(--white);
  padding: 11px 0;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.package-game span {
  color: var(--gold);
  margin-right: 15px;
}

.package-game:hover {
  transform: scale(1.2);
}

.package-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 11.7px;
  line-height: 19px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 56px;
  border-radius: var(--btn-radius);
  transition: 0.3s;
}

.package-book:hover {
  background: #9a8550;
}

@media (max-width: 1200px) {
  :root {
    --header-pad-x: 28px;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-content,
  .scroll-down {
    padding-left: 40px;
  }

  .scroll-down {
    left: 40px;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 40px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 88px;
    padding: 12px 20px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 2, 12, 0.96);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list a {
    padding: 12px 0;
  }

  .search-toggle {
    margin: 8px 0 0;
  }

  .search-overlay-close {
    top: 16px;
    right: 16px;
  }

  .search-panel {
    padding: 28px 20px 22px;
  }

  .search-label {
    font-size: 18px;
  }

  .search-field {
    flex-wrap: wrap;
    padding: 12px;
  }

  .search-field button[type="submit"] {
    width: 100%;
  }

  .menu-toggle {
    display: grid;
  }

  .quote-btn {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-kicker {
    font-size: 16px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 24px;
  }

  .scroll-down {
    left: 20px;
    font-size: 15px;
  }

  .package {
    min-height: 0;
    padding: 64px 20px 72px;
  }

  .chip-pair {
    display: none;
  }

  .package-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .package-price {
    font-size: 110px;
  }

  .package-name,
  .package-choose {
    font-size: 36px;
  }

  .package-game:hover {
    transform: scale(1.08);
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 58px;
  }

  .hero-title {
    font-size: 31px;
    line-height: 34px;
  }

  .hero-cta {
    min-height: 48px;
    padding: 0 28px;
    font-size: 14px;
  }

  .package-price {
    font-size: 78px;
  }

  .package-name,
  .package-choose {
    font-size: 28px;
  }

  .package-game {
    font-size: 18px;
  }
}

.services-alt {
  position: relative;
  margin: 0;
  padding: 80px 0 88px;
  background: #fff;
  color: #1a2332;
  overflow: hidden;
}

.services-alt__intro {
  width: min(1242px, 90%);
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.services-alt__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-alt__heading {
  margin: 0 auto 0.85rem;
  color: #1a2332;
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
}

.services-alt__desc {
  margin: 0 auto;
  color: #6a7380;
  font-family: Nunito, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.services-alt__track {
  display: flex;
  width: 100%;
  height: min(68vh, 540px);
  overflow: hidden;
}

.services-alt__track:hover .svc-panel:not(:hover) {
  flex: 0.72 1 0;
}

.services-alt__track:hover .svc-panel:not(:hover) .svc-panel__media {
  filter: brightness(0.55) saturate(0.85);
}

.services-alt__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.svc-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  transition: flex 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svc-panel__media {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: brightness(0.68) saturate(0.95);
  transition: transform 0.55s, filter 0.55s;
}

.svc-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 2, 12, 0.86) 0%, rgba(6, 2, 12, 0.48) 42%, rgba(6, 2, 12, 0.28) 100%);
  transition: background 0.35s;
}

.svc-panel__collapsed {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1rem 1.25rem;
  color: #fff;
  transition: opacity 0.25s, transform 0.35s;
}

.svc-panel__collapsed-title {
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.svc-panel__collapsed-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.svc-panel__expanded {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: 2.5rem 1.6rem 2.5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s 0.08s, transform 0.4s;
}

.svc-panel__expanded-title {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
}

.svc-panel__desc {
  margin: 0 0 0.35rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: Nunito, sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.svc-panel__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.svc-panel__cta {
  align-self: flex-start;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--btn-radius);
  background: var(--gold);
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.28s, color 0.28s, border-color 0.28s, transform 0.2s;
}

.svc-panel__cta:hover,
.svc-panel__cta:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #9a8550;
  outline: none;
  transform: translateY(-2px);
}

.svc-panel:hover,
.svc-panel:focus-within {
  flex: 3.4 1 0;
}

.svc-panel:hover .svc-panel__media,
.svc-panel:focus-within .svc-panel__media {
  transform: scale(1);
  filter: brightness(0.52) saturate(1);
}

.svc-panel:hover .svc-panel__media::after,
.svc-panel:focus-within .svc-panel__media::after {
  background: linear-gradient(105deg, rgba(6, 2, 12, 0.78) 0%, rgba(6, 2, 12, 0.55) 48%, rgba(6, 2, 12, 0.28) 100%);
}

.svc-panel:hover .svc-panel__collapsed,
.svc-panel:focus-within .svc-panel__collapsed {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.svc-panel:hover .svc-panel__expanded,
.svc-panel:focus-within .svc-panel__expanded {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn {
  min-height: 50px;
  padding: 0 25px;
  border-radius: var(--btn-radius);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.32s, color 0.32s, box-shadow 0.32s, transform 0.22s;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #9a8550;
  color: #fff;
  box-shadow: 0 10px 22px rgba(154, 133, 80, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .services-alt__track {
    flex-direction: column;
    height: auto;
  }

  .svc-panel,
  .services-alt__track:hover .svc-panel:not(:hover),
  .svc-panel:hover,
  .svc-panel:focus-within {
    flex: 0 0 auto;
    min-height: 300px;
  }

  .svc-panel.is-open {
    min-height: 340px;
  }

  .svc-panel.is-open .svc-panel__collapsed {
    opacity: 0;
    pointer-events: none;
  }

  .svc-panel.is-open .svc-panel__expanded {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .svc-panel.is-open .svc-panel__media {
    transform: scale(1);
    filter: brightness(0.52) saturate(1);
  }

  .svc-panel.is-open .svc-panel__media::after {
    background: linear-gradient(105deg, rgba(6, 2, 12, 0.78) 0%, rgba(6, 2, 12, 0.55) 48%, rgba(6, 2, 12, 0.28) 100%);
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: whatsapp-pulse 1.8s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  outline: none;
}

.site-footer {
  background: linear-gradient(to bottom, #17283C, #000000);
  color: #fff;
}

.footer-inner {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 48px 40px;
}

.footer-logo img {
  height: 78px;
  width: auto;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-col h2 {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 12px;
}

.footer-col a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.45;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  width: 16px;
  margin-top: 3px;
  color: var(--gold);
  text-align: center;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
