
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.mobile-menu.is-hidden { display: none; }
.mobile-menu.is-open   { display: flex; }

@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 991px) {
  .mobile-menu {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
  }
}


.service-icon i {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.dropdown { position: relative; }
.dropdown-panel { display: none; }
.dropdown.is-open .dropdown-panel { display: block; }

@media (max-width: 991px) {
  .dropdown-panel {
    position: static !important;
    width: 100%;
    margin-top: 10px;
  }
}


@media (min-width: 992px) {
  #mobileToggle { display: none !important; }
}


.glow-box {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,246,248,.92));
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
  color: rgba(20,20,24,.82);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
  position: relative;
  transition: all .35s ease;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10), inset 0 0 0 rgba(140,140,140,0);
}

.glow-box:hover {
  border-color: rgba(0,255,120,0.30);
  box-shadow: 0 18px 55px rgba(0,0,0,0.14), 0 0 26px rgba(0,255,120,0.14), inset 0 0 22px rgba(0,255,120,0.08);
  transform: translateY(-2px);
}

.glow-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(120,120,120,.20), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.glow-box:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,120,.16), transparent 60%);
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 22px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-width: 110px;
  max-height: 70px;
  object-fit: contain;
  border-radius: 12px;
  transform-origin: center;
  will-change: transform, filter, opacity;
  /* starts hidden for staged reveal */
  opacity: 0;
  transform: scale(0.985);
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.logo-grid img.active {
  opacity: 1;
  transform: scale(1);
}

.logo-grid img:hover {
  transform: translateY(-6px) scale(1.10) rotate(-1deg);
  box-shadow: 0 0 26px rgba(0,255,120,0.22);
  filter: saturate(1.12) contrast(1.06);
}

@keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 992px) {
  .logo-grid img.is-float {
    animation: floaty 3.6s ease-in-out infinite;
  }
}


.donors-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.donors-grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 28px;
  width: fit-content;
  margin: 30px auto 0;
}

.donor-item {
  width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,246,248,.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 16px;
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.donor-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.donor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.14), 0 0 24px rgba(0,255,120,.18);
  border-color: rgba(0,255,120,0.26);
}

@media (max-width: 1100px) {
  .donors-grid { grid-template-columns: repeat(2, 220px); }
}
@media (max-width: 520px) {
  .donors-grid { grid-template-columns: repeat(2, 160px); }
  .donor-item  { width: 160px; height: 100px; }
}


.donors-animated {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.donor-card {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.25,.8,.25,1);
}

.donor-card img {
  max-width: 160px;
  max-height: 90px;
  object-fit: contain;
}

.from-left   { transform: translateX(-120px) scale(0.8); }
.from-right  { transform: translateX(120px) scale(0.8); }
.from-top    { transform: translateY(-120px) scale(0.8); }

.donor-card.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

.donor-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(0,255,140,.20);
}


.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: stretch;
  margin-top: 30px;
}

.cert-item {
  background: rgba(245,246,248,.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.14), 0 0 26px rgba(0,255,120,.16);
  border-color: rgba(0,255,120,0.26);
}

@media (max-width: 768px) {
  .cert-item { height: 200px; }
}


.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.impact-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:transparent;
  border: none;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.impact-card img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  opacity: 1;
  transform: scale(0.96);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
  will-change: opacity, transform;
}

.impact-card img.active {
  opacity: 1;
  transform: scale(1);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0,0,0,.14), 0 0 35px rgba(0,255,120,0.18);
  border-color: rgba(0,255,120,0.26);
}

.impact-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.10) contrast(1.06);
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(130,130,130,0.16), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.impact-card:hover::after {
  opacity: 1;
  background: radial-gradient(circle at 50% 40%, rgba(0,255,120,0.14), transparent 60%);
}

@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.impact-card.float {
  animation: floatSoft 4.5s ease-in-out infinite;
}


.reveal,
.reveal-fade {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .5s ease-out, transform .5s ease-out;
  will-change: opacity, transform;
}

.reveal.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
}

.reveal-top {
  opacity: 0;
  transform: translateY(-60px);
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.reveal-right,
.reveal-left,
.reveal-top,
.reveal-bottom,
.reveal-scale {
  transition-property: opacity, transform, filter;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(.2,.9,.2,1);
  will-change: transform, opacity;
  filter: blur(0.5px);
}

.reveal-active {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

.reveal.reveal-active,
.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right,
.reveal.active.reveal-top,
.reveal.active.reveal-bottom {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade,
  .reveal-right, .reveal-left, .reveal-top, .reveal-bottom, .reveal-scale {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}


.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 18px;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245,246,248,1), rgba(245,246,248,0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245,246,248,1), rgba(245,246,248,0));
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: logoMarquee 38s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.logo-chip {
  width: 120px;
  height: 68px;
  border-radius: 14px;
  background: rgba(245,246,248,.92);
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.logo-chip img {
  max-width: 95px;
  max-height: 48px;
  object-fit: contain;
  transition: transform .25s ease;
}

.logo-chip:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.14), 0 0 22px rgba(0,255,120,.16);
  border-color: rgba(0,255,120,.22);
}

.logo-chip:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .logo-track { animation-duration: 55s; }
  .logo-chip  { width: 130px; height: 72px; }
}


.partners-marquee {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.partners-marquee .logo-marquee {
  padding: 6px 0;
  height: auto;
}

.partners-marquee .logo-track img {
  width: 230px;
  height: 120px;
  object-fit: contain;
}


.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.14) 0%, rgba(0,230,118,0.08) 30%, rgba(0,230,118,0.03) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  pointer-events: none !important;
}

.hero > * {
  pointer-events: none;
}

.hero .container,
.hero .container * {
  pointer-events: auto !important;
}

.hero .container {
  position: relative;
  z-index: 50;
}

.hero .bg,
.hero .gradient-radial,
.hero .orbit-ring,
.hero .hero-glow,
.hero .float-dot {
  pointer-events: none !important;
}

.hero .bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 5;
}

.hero .hero-ctas,
.hero .hero-ctas a,
.hero .hero-ctas button {
  position: relative;
  z-index: 80;
  pointer-events: auto !important;
}


.hero-glow-wrap {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.glow-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: glowFloat 10s ease-in-out infinite;
}

.glow-1 {
  background: radial-gradient(circle, rgba(0,230,118,0.18) 0%, rgba(0,230,118,0.08) 40%, transparent 70%);
  animation-delay: 0s;
}

.glow-2 {
  background: radial-gradient(circle, rgba(76,175,80,0.14) 0%, rgba(76,175,80,0.06) 45%, transparent 75%);
  transform: scale(1.2);
  animation-delay: 2s;
}

.glow-3 {
  background: radial-gradient(circle, rgba(0,230,118,0.10) 0%, rgba(0,230,118,0.04) 50%, transparent 80%);
  transform: scale(1.4);
  animation-delay: 4s;
}

@keyframes glowFloat {
  0%   { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.45; }
  50%  { transform: translateX(-50%) translateY(20px) scale(1.05); opacity: 0.75; }
  100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.55; }
}


.hero-focus-glow {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: min(980px, 92vw);
  height: min(640px, 72vh);
  background:
    radial-gradient(circle at 50% 45%, rgba(0,230,118,.12) 0%, rgba(0,230,118,.06) 30%, rgba(0,230,118,.03) 48%, transparent 70%),
    radial-gradient(circle at 55% 55%, rgba(0,230,118,.06) 0%, transparent 65%);
  filter: blur(60px);
  opacity: .85;
}

@media (max-width: 768px) {
  .hero-focus-glow {
    top: 48%;
    filter: blur(52px);
    opacity: .80;
  }
}


.card,
.stat,
.impact-card,
.cert-item,
.donor-item {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.card::after,
.stat::after,
.impact-card::after,
.cert-item::after,
.donor-item::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% -35%;
  height: 140%;
  background: radial-gradient(ellipse at bottom, rgba(0,230,118,.08), rgba(0,230,118,.04) 35%, rgba(0,230,118,.02) 55%, rgba(0,230,118,.01) 70%, transparent 82%);
  filter: blur(26px);
  opacity: .75;
  pointer-events: none;
  z-index: 0;
  transition: opacity .6s ease, transform .8s ease, background .6s ease;
  transform: translateZ(0);
}

.card > *,
.stat > *,
.impact-card > *,
.cert-item > *,
.donor-item > * {
  position: relative;
  z-index: 2;
}

.card img,
.stat img,
.impact-card img,
.cert-item img,
.donor-item img {
  position: relative;
  z-index: 3;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.card:hover::after,
.stat:hover::after,
.impact-card:hover::after,
.cert-item:hover::after,
.donor-item:hover::after {
  opacity: 1;
  transform: scale(1.18) translateZ(0);
  background: radial-gradient(ellipse at bottom, rgba(0,230,118,.18), rgba(0,230,118,.10) 35%, rgba(0,230,118,.05) 55%, rgba(0,230,118,.02) 70%, transparent 82%);
}


.card .card-text,
.card ul li,
.card .smallcaps,
.card div {
  color: var(--color-text-secondary, rgba(255,255,255,.78));
}

.card .card-title {
  color: var(--color-text-primary, #f8fafc);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), var(--color-bg-glass, rgba(20,36,24,0.65)));
}

.card ul {
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}


.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  transition: .3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.lang-btn:hover {
  background: rgba(0,255,120,.10);
  border-color: rgba(0,255,120,.28);
  box-shadow: 0 0 14px rgba(0,255,120,.18);
  color: rgba(255,255,255,.95);
}


:root {
  --gc-chat-bg: rgba(17,28,20,.94);
  --gc-chat-card: rgba(255,255,255,.06);
  --gc-chat-border: rgba(255,255,255,.10);
  --gc-chat-text: rgba(255,255,255,.92);
  --gc-chat-muted: rgba(255,255,255,.65);
  --gc-chat-accent: #00e676;
  --gc-chat-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.gc-chat-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 92px;
  height: 92px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, filter .25s ease;
  overflow: visible;
}

.gc-chat-fab:hover {
  transform: translateY(-3px) scale(1.06);
  filter: saturate(1.1);
}

.gc-chat-fab img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 14px rgba(0,255,120,.35));
  animation: botFloat 3s ease-in-out infinite;
}

@keyframes botFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Chat Panel */
.gc-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 118px;
  width: 520px;
  max-width: calc(100vw - 36px);
  height: 700px;
  max-height: calc(100vh - 140px);
  z-index: 9999;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20,34,24,.97), rgba(14,24,16,.97));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--gc-chat-shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.985);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.gc-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.gc-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.gc-chat-title {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gc-chat-text);
  font-weight: 900;
  font-size: 15.5px;
  letter-spacing: .2px;
}

.gc-chat-badge {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.gc-chat-badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(0,255,120,.25));
}

.gc-chat-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gc-chat-iconbtn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
  color: rgba(255,255,255,.85);
}

.gc-chat-iconbtn:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,255,120,.25);
  box-shadow: 0 0 14px rgba(0,255,120,.14);
}

.gc-chat-body {
  height: calc(100% - 72px - 86px);
  padding: 14px;
  overflow: auto;
}

.gc-msg {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gc-msg .who {
  font-size: 12.5px;
  color: var(--gc-chat-muted);
  font-weight: 800;
}

.gc-bubble {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--gc-chat-text);
  white-space: pre-wrap;
  line-height: 1.7;
  font-size: 15px;
}

.gc-msg.user { align-items: flex-end; }
.gc-msg.user .gc-bubble {
  background: rgba(0,255,120,.10);
  border-color: rgba(0,255,120,.20);
}

.gc-chat-footer {
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.gc-chat-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gc-chat-input {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--gc-chat-text);
  outline: none;
  font-size: 15px;
}

.gc-chat-input::placeholder { color: rgba(255,255,255,.45); }

.gc-chat-send {
  padding: 14px;
  min-width: 54px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,120,.28);
  background: rgba(0,255,120,.10);
  color: var(--gc-chat-accent);
  cursor: pointer;
  transition: .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-chat-send:hover {
  background: rgba(0,255,120,.15);
  box-shadow: 0 0 18px rgba(0,255,120,.18);
}

.gc-typing {
  color: var(--gc-chat-muted);
  font-size: 13.5px;
  padding: 8px 2px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gc-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.gc-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,255,120,.55);
  animation: gcDot 1s infinite ease-in-out;
}

.gc-dots span:nth-child(2) { animation-delay: .15s; }
.gc-dots span:nth-child(3) { animation-delay: .3s; }

@keyframes gcDot {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

.gc-bubble.typing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: .9;
}

/* =========================
   CHAT WIDGET: MOBILE
========================= */
@media (max-width: 520px) {
  .gc-chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 118px;
    height: 78vh;
  }

  .gc-chat-fab {
    right: 14px;
    bottom: 14px;
    width: 80px;
    height: 80px;
  }

  .gc-chat-fab img {
    width: 80px;
    height: 80px;
  }

  .gc-chat-badge {
    width: 56px;
    height: 56px;
    padding: 6px;
  }

  .gc-chat-badge img {
    width: 100%;
    height: 100%;
    transform: scale(1.05);
  }
}
