/* ═══════════════════════════════════════════════════════
   grandexis.css  —  Shared design system for all pages
   Grandexis Estates | 2026
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts fallback (already loaded per-page) ── */
:root {
  --navy: #0A2463;
  --blue: #1565C0;
  --blue-dk: #0D3B8C;
  --gold: #1565C0;
  --cream: #F0F6FF;
  --white: #ffffff;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

#preloader img {
  width: 140px;
  height: auto;
  animation: pldrPulse 1.4s ease-in-out infinite;
}

@keyframes pldrPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.07);
    opacity: 0.72;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━ LOGO PRELOADER ━━━━━━━━━━━━━━━━━━━━ */
#gx-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1),
    transform .55s cubic-bezier(.4, 0, .2, 1);
}

#gx-preloader.gx-preloader-hide {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

/* Logo wrapper — pulse ring */
.gx-preloader-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer pulse ring */
.gx-preloader-logo::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(21, 101, 192, .2);
  animation: gxPloaderRing 1.8s ease-out infinite;
}

/* Inner shimmer ring */
.gx-preloader-logo::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(21, 101, 192, .25);
  animation: gxPloaderRing 1.8s ease-out infinite .4s;
}

@keyframes gxPloaderRing {
  0% {
    transform: scale(.7);
    opacity: .8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Logo image — NO opacity animation (body is already opaque, logo is always visible) */
.gx-preloader-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  animation: gxPloaderLogo .7s cubic-bezier(.34, 1.56, .64, 1) both;
  filter: drop-shadow(0 4px 24px rgba(21, 101, 192, .15));
}

@keyframes gxPloaderLogo {
  from {
    transform: scale(.82) translateY(10px);
  }

  to {
    transform: scale(1) translateY(0);
  }
}

/* Progress bar */
.gx-preloader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--blue), var(--gold));
  animation: gxPloaderProgress 1.35s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes gxPloaderProgress {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

/* Tagline text — fade in via opacity (fine here; only body opacity is the problem) */
.gx-preloader-text {
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(10, 36, 99, .3);
  animation: gxPloaderText .9s ease .25s both;
}

@keyframes gxPloaderText {
  from {
    opacity: 0;
    letter-spacing: .55em;
  }

  to {
    opacity: 1;
    letter-spacing: .35em;
  }
}



/* ━━━━━━━━━━━━━━━━━━━━ PAGE TRANSITIONS ━━━━━━━━━━━━━━━━━━━━ */
/* NOTE: body uses transform-only — NO opacity — so the preloader
   logo is always fully visible (opacity never drops to 0 on body). */
body {
  animation: gxPageIn .42s cubic-bezier(.4, 0, .2, 1) both;
  overflow-x: hidden;
}

@keyframes gxPageIn {
  from {
    transform: translateY(10px);
  }

  to {
    transform: none;
  }
}

.gx-fade-out {
  animation: gxPageOut .3s cubic-bezier(.4, 0, .2, 1) forwards !important;
}

@keyframes gxPageOut {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}



/* ━━━━━━━━━━━━━━━━━━━━ FLOATING BUTTONS ━━━━━━━━━━━━━━━━━━━━ */
/* WhatsApp — fixed LEFT */
.wa-fab {
  position: fixed !important;
  bottom: 2rem !important;
  left: 2rem !important;
  right: auto !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  z-index: 39;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.wa-fab:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Back to top — fixed RIGHT */
#gx-back-top {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #1565C0;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(21, 101, 192, .35);
  z-index: 39;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s, background .3s;
}

#gx-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#gx-back-top:hover {
  background: #0D3B8C;
  box-shadow: 0 8px 28px rgba(21, 101, 192, .45);
  transform: translateY(-3px);
}

/* ━━━━━━━━━━━━━━━━━━━━ TOP INFO BAR ━━━━━━━━━━━━━━━━━━━━ */
#gx-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
  /* sits above nav */
  height: 36px;
  background: linear-gradient(90deg, #0A2463 0%, #1565C0 100%);
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-bottom: 1px solid rgba(214, 234, 248, .08);
}

@media (max-width:768px) {
  #gx-topbar {
    padding: 0 1.25rem;
    height: 32px;
  }

  #gx-nav {
    top: 32px;
  }
}

.gx-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Left: contact links */
.gx-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.gx-topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .06em;
  color: rgba(214, 234, 248, .78);
  text-decoration: none;
  transition: color .22s;
  min-height: unset;
  /* override 44px tap-target for top bar */
}

.gx-topbar-left a:hover {
  color: #fff;
}

.gx-topbar-left svg {
  flex-shrink: 0;
  opacity: .7;
}

/* Right: social icons */
.gx-topbar-right {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.gx-topbar-social {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(214, 234, 248, .65);
  text-decoration: none;
  transition: color .22s, transform .22s;
  min-height: unset;
}

.gx-topbar-social:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Hide left contact on very small screens */
@media (max-width:480px) {
  .gx-topbar-left a:last-child {
    display: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━ PRELOADER ━━━━━━━━━━━━━━━━━━━━ */
#preloader {
  position: fixed;
  inset: 0;
  background: #f0f6ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

#preloader img {
  width: 130px;
  height: auto;
  animation: pldrPulse 1.4s ease-in-out infinite;
}

@keyframes pldrPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━ STATIC WHITE NAV ━━━━━━━━━━━━━━━━━━━━ */
#gx-nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 50;
  background: #f0f6ff !important;
  box-shadow: 0 2px 24px rgba(10, 36, 99, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 4rem;
  transition: box-shadow .3s ease;
  backdrop-filter: none !important;
}

@media (max-width:768px) {
  #gx-nav {
    padding: .875rem 1.5rem;
  }
}

#gx-nav:hover {
  box-shadow: 0 4px 32px rgba(10, 36, 99, .12);
}

/* Desktop nav links */
.gx-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width:768px) {
  .gx-nav-links {
    display: none;
  }
}

.gx-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(10, 36, 99, .55);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s ease;
}

.gx-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--blue), var(--gold));
  transition: width .3s ease;
}

.gx-nav-link:hover,
.gx-nav-link.gx-active {
  color: var(--blue);
}

.gx-nav-link.gx-active::after,
.gx-nav-link:hover::after {
  width: 100%;
}

/* Nav CTA pill */
.gx-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  padding: .6rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background .3s, box-shadow .3s, transform .2s;
}

.gx-nav-cta:hover {
  background: var(--blue-dk);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .18), 0 6px 22px rgba(21, 101, 192, .36);
  transform: translateY(-1px);
}

.gx-nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(214, 234, 248, .15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .45s ease;
}

.gx-nav-cta:hover::after {
  transform: translateX(200%) skewX(-15deg);
}

/* Mobile hamburger */
#gx-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (max-width:768px) {
  #gx-menu-btn {
    display: flex;
  }
}

.gx-bar {
  display: block;
  width: 24px;
  height: 1px;
  transition: all .3s ease;
}

.gx-bar:nth-child(1) {
  background: var(--navy);
}

.gx-bar:nth-child(2) {
  width: 16px;
  background: var(--blue);
}

.gx-bar:nth-child(3) {
  background: var(--navy);
}

/* Hamburger → X */
#gx-menu-btn.open .gx-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 24px;
}

#gx-menu-btn.open .gx-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#gx-menu-btn.open .gx-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 24px;
}

  /* Mobile side menu */
  #gx-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    z-index: 49;
    background: #f0f6ff;
    box-shadow: -5px 0 30px rgba(10, 36, 99, 0.1), 0 0 0 10000px rgba(10, 36, 99, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 2.5rem 3rem 2.5rem;
    gap: 1.8rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
  }
  
  #gx-mobile-menu.gx-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .gx-mob-link { 
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .05em;
    color: #0A2463;
    text-decoration: none;
    transition: color .25s, transform .25s;
  }
  
  .gx-mob-link:hover {
    color: var(--blue);
    transform: translateX(5px);
  }

  #gx-mobile-menu .gx-nav-cta {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

/* ━━━━━━━━━━━━━━━━━━━━ BODY PADDING (for fixed nav) ━━━━━━━━━━━━━━━━━━━━ */
body {
  padding-top: 0;
}

/* hero sections handle their own spacing */

/* ━━━━━━━━━━━━━━━━━━━━ BUTTON OVERRIDES — ALL BLUE ━━━━━━━━━━━━━━━━━━━━ */
/* Override any gold-background buttons site-wide */
.btn-gold,
.btn-gold-warm {
  background: var(--blue) !important;
  color: #fff !important;
}

.btn-gold:hover,
.btn-gold-warm:hover {
  background: var(--blue-dk) !important;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .18), 0 10px 30px rgba(21, 101, 192, .40) !important;
  transform: translateY(-2px) !important;
}

/* Primary blue button glow */
.btn-blue:hover,
.btn-primary:hover {
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .18), 0 8px 28px rgba(21, 101, 192, .40) !important;
}

/* Shimmer button — blue */
.btn-shimmer {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%) !important;
}

.btn-shimmer:hover {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%) !important;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .15), 0 8px 28px rgba(21, 101, 192, .38) !important;
}

/* Gold shimmer override — also blue */
.btn-shimmer-gold {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%) !important;
}

.btn-shimmer-gold:hover {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ COUNTER ANIMATION ━━━━━━━━━━━━━━━━━━━━ */
[data-counter] {
  display: inline-block;
  transition: transform .3s ease;
}

.gx-counter-pop {
  transform: scale(1.15);
  color: var(--blue) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ SCROLL REVEAL ━━━━━━━━━━━━━━━━━━━━ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .85s cubic-bezier(.4, 0, .2, 1),
    transform .85s cubic-bezier(.4, 0, .2, 1);
}

.reveal {
  transform: translateY(38px);
}

.reveal-left {
  transform: translateX(-44px);
}

.reveal-right {
  transform: translateX(44px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━ BACK TO TOP ━━━━━━━━━━━━━━━━━━━━ */
#gx-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s, box-shadow .3s;
  z-index: 38;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(21, 101, 192, .28);
}

#gx-back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#gx-back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .15), 0 8px 24px rgba(21, 101, 192, .38);
}

/* ━━━━━━━━━━━━━━━━━━━━ MOBILE LUXURY POLISH ━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {

  /* Ensure tap targets are 44px+ */
  a,
  button {
    min-height: 44px;
  }

  .gx-nav-cta {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Generous hero text on mobile */
  h1,
  h2 {
    line-height: 1.08 !important;
  }

  /* Better card spacing on mobile */
  .svc-card,
  .proj-card,
  .vm-card,
  .why-block,
  .info-card {
    margin-bottom: .5rem;
  }

  /* Smooth scroll snap on project grid */
  #cardsGrid {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━ SECTION ENTRANCE ENHANCEMENTS ━━━━━━━━━━━━━━━━━━━━ */
/* Uniform section padding override for consistent vertical rhythm */
section {
  scroll-margin-top: 72px;
  /* nav height */
}

/* Subtle shimmer on section eyebrows */
.gx-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.gx-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(to right, var(--blue), var(--gold));
}

/* ━━━━━━━━━━━━━━━━━━━━ HERO NAV OFFSET ━━━━━━━━━━━━━━━━━━━━ */
/* Hero sections are full-viewport and use absolute positioning internally,
   so we just need to ensure #hero images start from behind the nav visually.
   The actual hero content is centered in vh, which already accounts for nav. */
#hero {
  padding-top: 0;
}

/* hero images fill full viewport, content is flex-centred */

/* Non-hero first sections need top padding if they're the first content */
section:not(#hero):first-of-type {
  padding-top: calc(4rem + 68px);
}

/* ━━━━━━━━━━━━━━━━━━━━ BUTTON GLOW UNIVERSAL ━━━━━━━━━━━━━━━━━━━━ */
/* Any element with class starting btn- gets a subtle glow focus ring */
[class*="btn-"]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ━━━━━━━━━━━━━━━━━━━━ TYPOGRAPHY CONSISTENCY ━━━━━━━━━━━━━━━━━━━━ */
/* Inter for ALL elements sitewide */
*,
h1, h2, h3, h4, h5, h6,
p, span, a, button,
input, select, textarea, label {
  font-family: 'Inter', sans-serif !important;
}

body {
  font-family: 'Inter', sans-serif !important;
}

/* font-serif class also uses Inter (keeps weight/style rules intact) */
.font-serif,
.font-serif * {
  font-family: 'Inter', sans-serif !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ FOCUS RING (accessibility) ━━━━━━━━━━━━━━━━━━━━ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ━━━━━━━━━━━━━━━━━━━━ BODY & GLOBAL BACKGROUND ━━━━━━━━━━━━━━━━━━━━ */
body {
  background: #f0f6ff !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ HERO SECTION — ALL TEXT WHITE ━━━━━━━━━━━━━━━━━━━━ */
/* Force hero h1, h2, stats to white */
#home h1, #home h2, #home h3,
#hero h1, #hero h2, #hero h3,
#home .font-serif, #hero .font-serif {
  color: #ffffff !important;
}

/* Remove italic from hero headings */
#home h1 em, #home h1 span,
#hero h1 em, #hero h1 span,
#home h1 *, #hero h1 * {
  font-style: normal !important;
  opacity: 1 !important;
  color: #ffffff !important;
}

/* Hero stat numbers — white */
#home .hero-line .font-serif,
#home .hero-line [class*="font-"] {
  color: #ffffff !important;
}

/* Hero stat accent (+, %) — keep blue */
#home h1 + * span[style*="color:#1565C0"],
#home [style*="color:#1565C0"] {
  color: #1565C0 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ EYEBROW / SECTION LABEL TEXT → BLUE ━━━━━━━━━━━━━━━━━━━━ */
/* Small uppercase tracking text in all non-hero sections → theme blue */
section:not(#home):not(#hero) .text-gold,
section:not(#home):not(#hero) span[class*="tracking"],
section:not(#home):not(#hero) div[class*="tracking"][class*="uppercase"],
.gx-eyebrow span {
  color: #1565C0 !important;
  font-weight: 700 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ BG-GOLD DIVIDER LINES → THEME BLUE ━━━━━━━━━━━━━━━━━━━━ */
/* All small bg-gold eyebrow lines forced to theme blue */
.bg-gold {
  background-color: #1565C0 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ SECTION ALT BACKGROUNDS ━━━━━━━━━━━━━━━━━━━━ */
/* bg-card sections → #f0f6ff */
.bg-card {
  background-color: #f0f6ff !important;
}

/* bg-cream sections */
.bg-cream {
  background-color: #ffffff !important;
}

/* ━━━━━━━━━━━━━━━━━━━━ FOOTER — BLUE THEME ━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: linear-gradient(135deg, #0A2463 0%, #1565C0 100%) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* All text inside footer defaults to white */
footer *,
footer p,
footer span,
footer li,
footer h5,
footer h4,
footer h3,
footer h2 {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Section headings (Quick Links, Contact) — brighter white */
footer h5 {
  color: #ffffff !important;
  letter-spacing: .15em;
}

/* Links — semi-transparent white, brighten on hover */
footer a {
  color: rgba(255, 255, 255, 0.65) !important;
  transition: color .25s ease;
}

footer a:hover {
  color: #ffffff !important;
}

/* Copyright & bottom bar */
footer .pt-8 p,
footer .pt-8 a {
  color: rgba(255, 255, 255, 0.45) !important;
}

footer .pt-8 a:hover {
  color: #ffffff !important;
}

/* Social icon borders */
footer a[aria-label] {
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

footer a[aria-label]:hover {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
}

/* Bottom divider line — subtle white */
footer .pt-8 {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}


