/* ============================================================
   Galaxis Plus — black / white / gold
   ============================================================ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gold: #c9a84c;
  --ink-60: #5c5c5c;
  --ink-40: #8a8a8a;
  --line: #e6e6e6;
  --line-dark: rgba(255, 255, 255, 0.14);
  --surface: #f6f6f4;
  --shell: 1.25rem;
  --nav-h: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background-color: var(--black);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container { padding-inline: var(--shell); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
  .wa-pulse { animation: none !important; }
  .scroll-dot { animation: none !important; }
}

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  color: var(--black);
}
.section-title-inv { color: var(--white); }

.gold-rule {
  display: block;
  width: 68px;
  height: 2px;
  background: var(--gold);
  margin: 1.75rem 0;
}
.gold-rule-center { margin-inline: auto; }

.body-copy { color: var(--ink-60); }
.lead-copy {
  font-size: 1.0625rem;
  color: #3a3a3a;
  margin-bottom: 1.25rem;
}

.link-gold {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.25s ease, gap 0.25s ease;
  white-space: nowrap;
}
.link-gold:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* ---------- buttons ---------- */
.btn-gp-primary,
.btn-gp-secondary,
.btn-gp-gold,
.btn-gp-ghost {
  --btn-b: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--btn-b);
  transition: background-color 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn-lg-gp { padding: 1.05rem 2.1rem; }

.btn-gp-primary {
  background: var(--black);
  color: var(--white);
  --btn-b: var(--black);
}
.btn-gp-primary:hover {
  background: var(--black);
  color: var(--gold);
  --btn-b: var(--gold);
  transform: translateY(-2px);
}

.btn-gp-secondary {
  background: var(--white);
  color: var(--black);
  --btn-b: var(--black);
}
.btn-gp-secondary:hover {
  --btn-b: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-gp-gold {
  background: var(--gold);
  color: var(--black);
  --btn-b: var(--gold);
}
.btn-gp-gold:hover {
  background: var(--white);
  color: var(--black);
  --btn-b: var(--white);
  transform: translateY(-2px);
}

.btn-gp-ghost {
  background: transparent;
  color: var(--white);
  --btn-b: rgba(255, 255, 255, 0.35);
}
.btn-gp-ghost:hover {
  --btn-b: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- navbar ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  transition: background-color 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header .navbar { padding: 0; }
.site-header .container {
  display: flex;
  align-items: center;
  min-height: var(--nav-h);
  flex-wrap: wrap;
}

.site-header.solid {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-dark);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}
.brand-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.brand-text {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--white);
}
.brand-plus { color: var(--gold); margin-left: 0.28em; }

.navbar-nav .nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.55rem 0.85rem;
  position: relative;
  transition: color 0.22s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* nav CTA sits on dark ground, so it needs light treatment.
   Desktop only — the mobile panel keeps the solid gold fill. */
@media (min-width: 992px) {
  .site-header .navbar-nav .btn-gp-primary {
    background: transparent;
    color: var(--white);
    --btn-b: rgba(255, 255, 255, 0.32);
  }
  .site-header .navbar-nav .btn-gp-primary:hover {
    background: var(--gold);
    color: var(--black);
    --btn-b: var(--gold);
  }
}

.navbar-toggler {
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  box-shadow: none !important;
}
.toggler-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--black);
    border-top: 1px solid var(--line-dark);
    margin: 0 calc(var(--shell) * -1);
    padding: 0.75rem var(--shell) 1.5rem;
    width: calc(100% + var(--shell) * 2);
  }
  .navbar-nav .nav-link { padding: 0.7rem 0; }
  .navbar-nav .nav-link::after { left: 0; right: 0; bottom: 0.4rem; }
  .navbar-nav .btn-gp-primary {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    --btn-b: var(--gold);
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 6.5rem;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.72) 46%, rgba(10,10,10,0.5) 100%),
    linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.1) 55%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.hero .eyebrow {
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.75rem;
}
.hero-kicker {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.9rem;
}
.hero-title {
  font-size: clamp(2.25rem, 6.4vw, 4.5rem);
  color: var(--white);
}
.hero .gold-rule { margin: 2rem 0; }

/* hero CTA also sits on dark ground */
.hero .btn-gp-primary {
  background: var(--gold);
  color: var(--black);
  --btn-b: var(--gold);
}
.hero .btn-gp-primary:hover {
  background: var(--white);
  color: var(--black);
  --btn-b: var(--white);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-track {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  left: -1px;
  width: 3px;
  height: 14px;
  background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -14px; }
  70%, 100% { top: 46px; }
}
.scroll-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 575.98px) { .scroll-indicator { display: none; } }

/* ---------- ticker ---------- */
.ticker-wrap {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 1.1rem 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  width: max-content;
  animation: none;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 42s linear infinite;
  flex: none;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.ticker-item {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  padding: 0 1.5rem;
}
.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ---------- stats ---------- */
.stats-bar {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}
.stats-row { text-align: center; }
.stat { padding: 1rem 0.5rem; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
}
.stat-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
@media (min-width: 992px) {
  .stats-row > [class*="col-"] + [class*="col-"] .stat {
    border-left: 1px solid var(--line);
  }
}
.stat-inv .stat-num { color: var(--white); }
.stat-inv .stat-label { color: rgba(255, 255, 255, 0.5); }
.stats-row-inv {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 992px) {
  .stats-row-inv > [class*="col-"] + [class*="col-"] .stat {
    border-left: 1px solid var(--line-dark);
  }
}

/* ---------- sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-light { background: var(--white); color: var(--black); }
.section-dark { background: var(--black); color: var(--white); }
.section-bordered { border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- about ---------- */
.about-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 60px -30px rgba(10, 10, 10, 0.5);
  position: relative;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gold);
}
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  background: var(--surface);
}

/* ---------- service cards ---------- */
.svc-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease,
              background-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.9);
}
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.svc-card:hover .svc-icon { background: var(--gold); color: var(--black); }
.svc-title {
  font-size: 1.1875rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.svc-copy {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- why grid ---------- */
.why-grid { border-top: 1px solid var(--line); }
.why-item {
  padding: 2.25rem 1.75rem 2.25rem 0;
  border-bottom: 1px solid var(--line);
  height: 100%;
}
@media (min-width: 768px) {
  .why-item { padding-right: 2.5rem; }
  .why-grid > [class*="col-"]:not(:first-child) .why-item {
    padding-left: 2.25rem;
    border-left: 1px solid var(--line);
  }
}
@media (min-width: 992px) {
  .why-grid > [class*="col-"]:nth-child(3n + 1) .why-item {
    padding-left: 0;
    border-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .why-grid > [class*="col-"]:nth-child(2n + 1) .why-item {
    padding-left: 0;
    border-left: 0;
  }
}
.why-num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.why-title { font-size: 1.1875rem; margin-bottom: 0.65rem; }
.why-copy { font-size: 0.9375rem; color: var(--ink-60); }

/* ---------- process timeline ---------- */
.timeline {
  display: grid;
  gap: 2.25rem;
  position: relative;
}
.timeline-step {
  position: relative;
  padding-left: 2.25rem;
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.4rem;
  bottom: -2.25rem;
  width: 1px;
  background: rgba(201, 168, 76, 0.32);
}
.timeline-step:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--black);
}
.timeline-index {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.timeline-copy {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 44ch;
}

@media (min-width: 992px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .timeline-step {
    padding: 3rem 1.5rem 0 0;
  }
  .timeline-step::before {
    left: 0;
    top: 5px;
    bottom: auto;
    right: 0;
    width: auto;
    height: 1px;
    background: rgba(201, 168, 76, 0.32);
  }
  .timeline-step:last-child::before { display: block; right: auto; width: 0; }
  .timeline-dot { top: 0; left: 0; }
  .timeline-copy { max-width: none; }
}

/* ---------- portfolio ---------- */
.work-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -32px rgba(10, 10, 10, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 30px 60px -30px rgba(10, 10, 10, 0.4);
}
.work-media {
  display: block;
  overflow: hidden;
  background: var(--black);
}
.work-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.work-card:hover .work-media img { transform: scale(1.07); }
.work-body {
  display: block;
  padding: 1.4rem 1.5rem 1.6rem;
}
.work-tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.work-title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
}

/* ---------- capabilities ---------- */
.cap-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cap {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  transition: border-color 0.25s ease, background-color 0.25s ease,
              transform 0.25s ease;
}
.cap:hover {
  border-color: var(--gold);
  background: var(--surface);
  transform: translateY(-2px);
}

/* ---------- sectors ---------- */
.sector-grid { border-top: 1px solid var(--line); }
.sector {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.4rem 0.75rem 1.4rem 0;
  border-bottom: 1px solid var(--line);
  height: 100%;
}
.sector-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line);
  color: var(--gold);
  flex: none;
}
.sector-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---------- testimonials ---------- */
.quote-carousel { max-width: 880px; }
.quote { margin: 0; }
.quote-mark {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  height: 2.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.quote-text {
  font-size: clamp(1.125rem, 2.6vw, 1.625rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}
.quote-by {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.carousel-item { transition: transform 0.55s ease, opacity 0.4s ease; }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.q-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.q-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.carousel-indicators-gp { display: flex; gap: 0.5rem; }
.carousel-indicators-gp button {
  width: 26px;
  height: 2px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  transition: background-color 0.25s ease, width 0.25s ease;
}
.carousel-indicators-gp button.active {
  background: var(--gold);
  width: 40px;
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  background: var(--black);
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 72%);
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta-title {
  font-size: clamp(1.9rem, 5.4vw, 3.5rem);
  color: var(--white);
}
.cta-copy {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 2.25rem;
  text-wrap: pretty;
}
.justify-content-center { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--white);
  color: var(--black);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand .brand-text { color: var(--black); }
.footer-blurb {
  font-size: 0.9375rem;
  color: var(--ink-60);
  max-width: 38ch;
}
.footer-head {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-list li + li { margin-top: 0.6rem; }
.footer-list a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--ink-60);
  transition: color 0.22s ease;
}
.footer-list a:hover,
.footer-contact a:hover { color: var(--black); }
.footer-contact {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--ink-60);
}
.footer-contact p + p { margin-top: 0.6rem; }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.copyright, .legal-links a {
  font-size: 0.8125rem;
  color: var(--ink-40);
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  /* keep clear of the floating WhatsApp button */
  padding-right: 4.5rem;
}
@media (max-width: 767.98px) {
  .legal-links { padding-right: 0; }
  .footer-bottom { padding-bottom: 4.5rem; }
}
.legal-links a { transition: color 0.22s ease; }
.legal-links a:hover { color: var(--black); }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-icon { position: relative; z-index: 2; }
.wa-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (min-width: 768px) {
  .wa-float { right: 1.75rem; bottom: 1.75rem; }
}

/* Supplied Galaxis Plus logo in the main navigation */
.navbar-logo {
  display: block;
  width: 230px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .navbar-logo {
    width: 205px;
  }
}

/* Supplied Galaxis Plus logo in footer */
.footer-logo {
  display: block;
  width: 230px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .footer-logo {
    width: 205px;
  }
}
