/* ─── Probirsa Design System ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ─── Tokens ──────────────────────────────────────────────────── */
:root {
  --navy:      #1B3A6B;
  --navy-dark: #0d2144;
  --navy-mid:  #122850;
  --navy-light:#2a4f8f;
  --gold:      #C8A93B;
  --gold-light:#e8c84a;
  --gold-pale: #f5e090;
  --sky:       #4A7FA5;
  --sky-light: #6fa0c4;
  --ice:       #EFF4F9;
  --white:     #FFFFFF;
  --ink:       #2C3E55;
  --ink-light: #4a6075;
  --ink-muted: #8a9ab0;

  --shadow-sm:  0 2px 8px rgba(27,58,107,.06);
  --shadow-md:  0 8px 28px rgba(27,58,107,.10);
  --shadow-lg:  0 20px 60px rgba(27,58,107,.16);
  --shadow-gold:0 8px 30px rgba(200,169,59,.30);
  --shadow-card:0 4px 20px rgba(27,58,107,.08);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --nav-h: 72px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font-family: inherit; border: none; }

/* ─── Custom Cursor ───────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,169,59,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.cursor-hover .cursor { width: 14px; height: 14px; background: var(--gold-light); }
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(200,169,59,.35); }
body.cursor-hide .cursor,
body.cursor-hide .cursor-ring { opacity: 0; }

@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
  body, button { cursor: auto; }
}

/* ─── Scroll Progress ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200%;
  z-index: 99997;
  animation: shimmer-bar 2s linear infinite;
  transition: width 0.08s linear;
}
@keyframes shimmer-bar {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ─── Typography ──────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Merriweather', serif; line-height: 1.22; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--ink-light); font-size: 1rem; }

.section-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.section-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: -12px;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.8s var(--ease);
}
.section-heading.animated::after { width: 52px; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer-text 3s linear infinite;
}
@keyframes shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}
.btn:hover::before { width: 300px; height: 300px; opacity: 1; }
.btn:active::before { transition: none; width: 0; height: 0; opacity: 0; }

.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,58,107,.3);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(27,58,107,.35); }

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: #fff; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 16px 40px rgba(200,169,59,.4); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ─── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(13,33,68,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 32px rgba(13,33,68,.25);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 50%; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 28px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,33,68,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 5%; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  height: 44vh; min-height: 290px;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--sky) 100%);
  display: flex; align-items: flex-end;
  padding: 0 5% 52px;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74,127,165,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(200,169,59,.12) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .section-label { margin-bottom: 10px; }

/* ─── Section ─────────────────────────────────────────────────── */
.section { padding: 88px 5%; }
.section-alt { background: var(--ice); }
.section-navy { background: var(--navy); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-header p { max-width: 500px; margin-top: 22px; }

/* Decorative section number */
.deco-num {
  font-family: 'Merriweather', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(27,58,107,.07);
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: -0.2em; left: -0.1em;
}

/* ─── Property Card ───────────────────────────────────────────── */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  /* gradient border system */
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, transparent 0%, transparent 100%) border-box;
  border: 2px solid transparent;
  will-change: transform;
}
.prop-card:hover {
  box-shadow: 0 24px 64px rgba(27,58,107,.16);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--gold) 0%, var(--sky) 60%, var(--navy) 100%) border-box;
}

.prop-img {
  height: 214px;
  overflow: hidden;
  position: relative;
  background: var(--ice);
}
.prop-img-inner {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.prop-card:hover .prop-img-inner,
.prop-card:hover .prop-img img { transform: scale(1.07); }

.prop-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,33,68,.55) 0%, rgba(13,33,68,.1) 50%, transparent 100%);
  transition: opacity 0.35s var(--ease);
}

.prop-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 5px;
}
.badge-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200%;
  animation: shimmer-badge 2.5s linear infinite;
  color: #fff;
  box-shadow: 0 2px 10px rgba(200,169,59,.4);
}
@keyframes shimmer-badge {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.badge-sky   { background: var(--sky); color: #fff; box-shadow: 0 2px 8px rgba(74,127,165,.35); }
.badge-navy  { background: var(--navy); color: #fff; }

.prop-type-chip {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--navy);
  padding: 4px 10px; border-radius: 4px;
}

.prop-body { padding: 22px 24px 24px; }
.prop-price {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.prop-location {
  font-size: 0.82rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 12px;
}
.prop-location svg { flex-shrink: 0; }
.prop-desc {
  font-size: 0.875rem; color: var(--ink-light);
  line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-meta {
  display: flex; gap: 12px;
  font-size: 0.78rem; color: var(--ink-muted);
  margin-bottom: 18px;
}
.prop-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--ice);
  padding-top: 16px;
}
.btn-ver-mas {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--sky);
  background: none; border: none; padding: 0;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
  cursor: none;
}
.btn-ver-mas:hover { color: var(--navy); gap: 10px; }
.btn-ver-mas svg { transition: transform 0.25s var(--ease); }
.btn-ver-mas:hover svg { transform: translateX(3px); }

/* ─── Filter Tabs ─────────────────────────────────────────────── */
.filter-bar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,58,107,.08);
  position: sticky; top: var(--nav-h); z-index: 100;
  padding: 0 5%;
}
.filter-tabs {
  display: flex; gap: 0;
  max-width: 1200px; margin: 0 auto;
  overflow-x: auto; scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--ink-muted);
  background: none; border: none;
  padding: 18px 26px;
  border-bottom: 3px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  cursor: none;
}
.filter-tab:hover { color: var(--navy); }
.filter-tab.active { color: var(--navy); border-color: var(--gold); }

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 5% 36px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 42px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,.55);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.9; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 0.8rem; color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── Why / Feature Cards ─────────────────────────────────────── */
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  box-shadow: 0 8px 20px rgba(27,58,107,.25);
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(27,58,107,.35);
}
.why-icon svg { width: 26px; height: 26px; color: #fff; }
.why-card h3 { margin-bottom: 12px; }
.why-card p  { font-size: 0.9rem; line-height: 1.75; }

/* ─── Glassmorphism ───────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.15);
}

/* ─── Keyframes ───────────────────────────────────────────────── */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-18px) translateX(8px); }
  66%       { transform: translateY(-8px) translateX(-12px); }
}
@keyframes float-med {
  0%, 100% { transform: translateY(0) translateX(0); }
  40%       { transform: translateY(-24px) translateX(-10px); }
  70%       { transform: translateY(-12px) translateX(14px); }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50%       { transform: scale(1.05); opacity: 0.08; }
}
@keyframes draw-line {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  50%  { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0; }
}

/* GSAP initial states (set via JS, but fallback here) */
[data-gsap] { opacity: 1; }

/* ─── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-gold   { color: var(--gold); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Floating WhatsApp Button ────────────────────────────────── */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 9990;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(37,211,102,.40), 0 2px 8px rgba(0,0,0,.18);
  cursor: none;
  transform: translateY(0);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
  animation: wa-pop 0.6s 1.2s var(--ease-spring) both;
}
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }
.wa-float::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,.55);
  animation: wa-ring 2.4s var(--ease) infinite;
  pointer-events: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 38px rgba(37,211,102,.50), 0 4px 12px rgba(0,0,0,.2);
}
.wa-float:active { transform: translateY(-1px) scale(1); }
.wa-float:focus-visible { outline: 3px solid rgba(37,211,102,.45); outline-offset: 3px; }

@keyframes wa-pop {
  from { opacity: 0; transform: translateY(24px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-ring {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 15px; }
}

/* Clickable contact links in footer */
.footer-col a.contact-link { color: rgba(255,255,255,.55); }
.footer-col a.contact-link:hover { color: var(--gold); }

/* ─── Mobile cursor override ──────────────────────────────────── */
@media (max-width: 768px) {
  body, button, .btn, .filter-tab, .btn-ver-mas, .nav-toggle, .wa-float { cursor: auto; }
}
