:root {
  --GGR-bg: #050608;
  --GGR-text: #ffffff;

  --GGR-gold: #ffe800;
  --GGR-gold2: #d9c900;

  --GGR-neon: #ffe800;
  --GGR-neonSoft: rgba(255, 232, 0, 0.22);

  --GGR-contentW: 1300px;
  --GGR-contentPad: 18px;
  --GGR-utilH: 42px;
  --GGR-navH: 90px;

  --GGR-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
  --GGR-shadow2: 0 12px 32px rgba(0, 0, 0, 0.4);

  --GGR-headerTotal: calc(var(--GGR-utilH) + var(--GGR-navH));
}

html,
body {
  width: 100%;
  background: var(--GGR-bg);
  overflow-x: hidden;
  margin: 0;
}

body {
  min-height: 100%;
}

/* Scoped base (no global reset conflicts) */
.GGR-root {
  color: var(--GGR-text);
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans";
}

.GGR-root,
.GGR-root * {
  box-sizing: border-box;
}

.GGR-root a {
  /* color: inherit; */
  text-decoration: none;
}

/* Premium focus rings */
.GGR-root a:focus-visible,
.GGR-root button:focus-visible {
  outline: 2px solid rgba(207, 255, 0, 0.55);
  outline-offset: 3px;
  border-radius: 14px;
}

.GGR-shell {
  width: min(var(--GGR-contentW), calc(100% - (var(--GGR-contentPad) * 2)));
  margin: 0 auto;
}

/* Anchor scroll offset for fixed header */
section[id] {
  scroll-margin-top: calc(var(--GGR-headerTotal) + 18px);
}

/* ================= HEADER WRAP ================= */
.GGR-header-wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9000;
  will-change: transform;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.2s ease;
}

.GGR-header-wrap.GGR-is-hidden {
  transform: translateY(calc(-1 * (var(--GGR-utilH) + var(--GGR-navH))));
}

body.GGR-menu-open .GGR-header-wrap {
  opacity: 0;
  pointer-events: none;
}

/* ================= UTILBAR ================= */
.GGR-utilbar {
  height: var(--GGR-utilH);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.GGR-utilbar.GGR-is-scrolled {
  background: rgba(0, 0, 0, 0.74);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.GGR-utilbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 196, 0, 0.85),
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
}

.GGR-utilbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 240px;
  left: -320px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(207, 255, 0, 0.1),
    rgba(255, 255, 255, 0.08),
    rgba(245, 196, 0, 0.1),
    transparent
  );
  filter: blur(2px);
  opacity: 0.55;
  animation: GGR-utilSweep 7s linear infinite;
  pointer-events: none;
}

@keyframes GGR-utilSweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 700px));
  }
}

.GGR-util-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  z-index: 2;
  min-width: 0;
}

.GGR-util-left,
.GGR-util-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.GGR-util-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.GGR-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0.65;
  flex: 0 0 auto;
}

.GGR-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--GGR-gold);
  box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.16);
  position: relative;
  flex: 0 0 auto;
}

.GGR-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 196, 0, 0.28);
  opacity: 0;
  animation: GGR-dotPulse 2.2s ease-out infinite;
}

@keyframes GGR-dotPulse {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  35% {
    opacity: 0.55;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.GGR-util-icon {
  width: 14px;
  height: 14px;
  opacity: 0.95;
}

.GGR-util-address {
  max-width: 50ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.92;
}

.GGR-util-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.GGR-util-link:hover {
  transform: translateY(-1px);
  color: #fff;
}

.GGR-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.GGR-social a {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  color: rgba(255, 255, 255, 0.96);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.GGR-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(207, 255, 0, 0.35);
}

.GGR-social svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

/* ================= NAVBAR ================= */
.GGR-navbar {
  height: var(--GGR-navH);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.GGR-navbar.GGR-is-scrolled {
  background: rgba(10, 10, 12, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--GGR-shadow);
}

.GGR-nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.GGR-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  flex: 0 0 auto;
}

.GGR-brand img {
  display: block;
  border-radius: 14px;
}

.GGR-brandText {
  display: block;
  min-width: 0;
}

.GGR-name {
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.1;
  color: #ffffff;
}

.GGR-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.GGR-branch {
  display: none;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.GGR-navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.GGR-navlinks a {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.84);
  padding: 10px 6px;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
  white-space: nowrap;
}

.GGR-navlinks a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.GGR-navlinks a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--GGR-neon), transparent);
  opacity: 0;
  transform: scaleX(0.65);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.GGR-navlinks a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.GGR-navlinks a.GGR-active {
  color: #fff;
}

.GGR-navlinks a.GGR-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.GGR-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 210px;
  flex: 0 0 auto;
}

.GGR-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    filter 0.2s ease;
  white-space: nowrap;
}

.GGR-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.GGR-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 10px 12px;
}

.GGR-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 6px 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.GGR-burger.GGR-is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.GGR-burger.GGR-is-open span:nth-child(2) {
  opacity: 0;
}

.GGR-burger.GGR-is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= HERO (PREMIUM) ================= */
.GGR-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#GGR-myvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.03) contrast(1.07) saturate(1.08);
  transform: scale(1.02);
}

/* Premium grain overlay */
.GGR-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Better readability, but video stays visible */
.GGR-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      900px 560px at 18% 45%,
      rgba(0, 0, 0, 0.38),
      transparent 70%
    ),
    radial-gradient(
      900px 560px at 85% 35%,
      rgba(0, 0, 0, 0.22),
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

.GGR-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.22) 35%,
    rgba(0, 0, 0, 0.12) 70%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.GGR-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--GGR-utilH) + var(--GGR-navH) + 56px);
  padding-bottom: 64px;
}

.GGR-hero-inner {
  max-width: 880px;
  /* margin-left: 7px; */
}

.GGR-hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.GGR-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.GGR-pill.GGR-pill-neon {
  border-color: rgba(207, 255, 0, 0.35);
  background: rgba(207, 255, 0, 0.12);
}

.GGR-hero-title {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -1.6px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.65);
  margin: 0;
}

.GGR-hero-title .GGR-hi {
  color: var(--GGR-neon);
  text-shadow: 0 10px 50px var(--GGR-neonSoft);
}

.GGR-hero-copy {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 14px;
  max-width: 70ch;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.GGR-hero-line {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--GGR-neon), rgba(207, 255, 0, 0.15));
  box-shadow: 0 12px 40px rgba(207, 255, 0, 0.12);
}

.GGR-hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  font-size: 16px;
}

.GGR-hero-stats {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Premium glass chips for stats */
.GGR-statMini {
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.GGR-statMini b {
  display: block;
  font-size: 28px;
  letter-spacing: -0.6px;
  font-weight: 800;
}

.GGR-statMini span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.GGR-hero-ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.GGR-count {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.GGR-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
  user-select: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.GGR-btn:hover {
  transform: translateY(-1px);
}

.GGR-btn:active {
  transform: translateY(0px) scale(0.99);
}

/* Premium button shine */
.GGR-btn::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -140px;
  width: 120px;
  height: 220px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: rotate(18deg);
  opacity: 0;
}

.GGR-btn:hover::after {
  opacity: 0.85;
  animation: GGR-btnShine 1s ease;
}

@keyframes GGR-btnShine {
  from {
    transform: translateX(0) rotate(18deg);
  }
  to {
    transform: translateX(520px) rotate(18deg);
  }
}

.GGR-btn-primary {
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #0a0b0f;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.GGR-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.GGR-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.GGR-btnIcon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

.GGR-btnIcon svg {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.GGR-hero-underline {
  margin-top: 14px;
  height: 2px;
  width: min(420px, 78%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(207, 255, 0, 0.85),
    transparent
  );
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}

.GGR-hero-underline::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-70%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.26),
    transparent
  );
  animation: GGR-underlineSweep 2.8s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes GGR-underlineSweep {
  0% {
    transform: translateX(-70%);
  }
  60% {
    transform: translateX(70%);
  }
  100% {
    transform: translateX(70%);
  }
}

/* ================= MOBILE DRAWER ================= */
.GGR-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99990;
}

.GGR-overlay.GGR-open {
  opacity: 1;
  pointer-events: auto;
}

.GGR-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 88vw);

  height: 100vh;
  height: 100svh;
  height: 100dvh;

  background: rgba(10, 10, 12, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);

  transform: translateX(105%);
  transition: transform 0.25s ease;
  z-index: 99991;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.GGR-drawer.GGR-open {
  transform: translateX(0);
}

.GGR-drawer-scroll {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.GGR-drawer-head {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.GGR-drawer-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.GGR-close {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.GGR-drawer-nav {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.GGR-m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.GGR-m-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.GGR-drawer-cta {
  margin: 12px 16px 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      360px 220px at 18% 10%,
      rgba(245, 196, 0, 0.16),
      transparent 60%
    ),
    radial-gradient(
      300px 200px at 85% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
}

.GGR-drawer-cta::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -120px;
  width: 260px;
  height: 140px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(18deg);
  opacity: 0.55;
  animation: GGR-ctaShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes GGR-ctaShine {
  0% {
    transform: translateX(-40px) rotate(18deg);
    opacity: 0;
  }
  25% {
    opacity: 0.55;
  }
  55% {
    opacity: 0;
  }
  100% {
    transform: translateX(520px) rotate(18deg);
    opacity: 0;
  }
}

.GGR-cta-top {
  padding: 14px 14px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.GGR-cta-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 14px;
  line-height: 1.2;
}

.GGR-cta-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.GGR-cta-badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 196, 0, 0.3);
  background: rgba(245, 196, 0, 0.12);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.GGR-cta-actions {
  padding: 0 14px 14px;
  display: grid;
  gap: 10px;
}

.GGR-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 18px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 40px rgba(245, 196, 0, 0.16),
    0 18px 60px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.15s ease,
    filter 0.2s ease;
}

.GGR-cta-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.GGR-cta-primary svg {
  width: 18px;
  height: 18px;
}

.GGR-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.GGR-cta-mini {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  color: #ffffff;
}

.GGR-cta-mini:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 196, 0, 0.25);
}

.GGR-cta-mini svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

.GGR-cta-social {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.GGR-cta-social .GGR-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.GGR-cta-social .GGR-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.GGR-cta-social a {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  color: #ffffff;
}

.GGR-cta-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 196, 0, 0.3);
}

.GGR-cta-social svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .GGR-navlinks {
  }
}

@media (max-width: 992px) {
  .GGR-util-right {
    display: none;
  }

  .GGR-navlinks {
    display: none;
  }

  .GGR-burger {
    display: inline-block;
  }

  .GGR-nav-actions {
    min-width: auto;
  }

  .GGR-brand {
    min-width: auto;
  }

  .GGR-nav-actions .GGR-cta {
    display: none;
  }

  /* .GGR-tag {
          display: none;
        } */

  /* .GGR-branch {
          display: block;
        } */

  .GGR-hero-inner {
    max-width: 680px;
  }

  .GGR-statMini {
    min-width: 150px;
  }
}

@media (max-width: 640px) {
  .GGR-util-address {
    display: none;
  }

  .GGR-util-left {
    width: 100%;
    justify-content: center;
  }

  .GGR-sep {
    display: none;
  }

  .GGR-hero-copy {
    max-width: 100%;
  }

  .GGR-statMini {
    min-width: 140px;
  }
}

@media (max-width: 420px) {
  .GGR-statMini {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .GGR-utilbar::after {
    animation: none !important;
  }

  .GGR-hero-underline::after {
    animation: none !important;
  }

  .GGR-btn:hover::after {
    animation: none !important;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

/* feature section start*/
/* ===== Scoped only to #GGR-facilities ===== */
#GGR-facilities {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
#GGR-facilities::before {
  content: "";
  position: absolute;
  inset: -160px -160px auto -160px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(255, 225, 0, 0.16),
    rgba(255, 225, 0, 0) 70%
  );
  pointer-events: none;
  opacity: 0.9;
}

/* Heading */
#GGR-facilities .ggr-facv-head {
  text-align: center;
  margin-bottom: 26px;
}
#GGR-facilities .ggr-facv-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 14px;
}
#GGR-facilities .ggr-facv-title {
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.96);
}
#GGR-facilities .ggr-facv-sub {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

/* Cards */
#GGR-facilities .ggr-facv-card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transform: translateY(0);
}
#GGR-facilities .ggr-facv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 225, 0, 0.35);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

/* Media */
#GGR-facilities .ggr-facv-media {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
#GGR-facilities .ggr-facv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  display: block;
}
#GGR-facilities .ggr-facv-card:hover .ggr-facv-media img {
  transform: scale(1.08);
}

/* Overlay gradient */
#GGR-facilities .ggr-facv-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 92%),
    radial-gradient(
      closest-side,
      rgba(255, 225, 0, 0.16),
      rgba(255, 225, 0, 0) 70%
    );
  opacity: 0.95;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#GGR-facilities .ggr-facv-card:hover .ggr-facv-media::after {
  opacity: 0.85;
}

/* Badge */
#GGR-facilities .ggr-facv-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 225, 0, 0.92);
  color: #111;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

/* Content */
#GGR-facilities .ggr-facv-body {
  padding: 18px 18px 20px;
}
#GGR-facilities .ggr-facv-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
#GGR-facilities .ggr-facv-ic {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 225, 0, 0.14);
  border: 1px solid rgba(255, 225, 0, 0.25);
  color: #ffe100;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}
#GGR-facilities .ggr-facv-ic i {
  font-size: 18px;
}

#GGR-facilities .ggr-facv-body h3 {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
#GGR-facilities .ggr-facv-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

/* Tiny feature line */
#GGR-facilities .ggr-facv-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}
#GGR-facilities .ggr-facv-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
#GGR-facilities .ggr-facv-line i {
  color: #ffe100;
}

/* Soft entrance animation */
#GGR-facilities .ggr-facv-card {
  animation: ggrFacCardIn 0.6s ease both;
}
#GGR-facilities .col-lg-4:nth-child(1) .ggr-facv-card {
  animation-delay: 0.05s;
}
#GGR-facilities .col-lg-4:nth-child(2) .ggr-facv-card {
  animation-delay: 0.12s;
}
#GGR-facilities .col-lg-4:nth-child(3) .ggr-facv-card {
  animation-delay: 0.18s;
}
#GGR-facilities .col-lg-4:nth-child(4) .ggr-facv-card {
  animation-delay: 0.24s;
}
#GGR-facilities .col-lg-4:nth-child(5) .ggr-facv-card {
  animation-delay: 0.3s;
}
#GGR-facilities .col-lg-4:nth-child(6) .ggr-facv-card {
  animation-delay: 0.36s;
}

@keyframes ggrFacCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  #GGR-facilities {
    padding: 70px 0;
  }
  #GGR-facilities .ggr-facv-body {
    padding: 16px 16px 18px;
  }
}
/* feature section end */

/* Map Section Start */
/* ===== Scoped only to #GGR-map ===== */
#GGR-map {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
#GGR-map::before {
  content: "";
  position: absolute;
  inset: -160px -160px auto -160px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(255, 225, 0, 0.14),
    rgba(255, 225, 0, 0) 70%
  );
  pointer-events: none;
  opacity: 0.85;
}

#GGR-map .ggr-map-head {
  text-align: center;
  margin-bottom: 26px;
}
#GGR-map .ggr-map-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 14px;
}
#GGR-map .ggr-map-title {
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.96);
}
#GGR-map .ggr-map-sub {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

/* Card */
#GGR-map .ggr-map-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Map wrap */
#GGR-map .ggr-map-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 420px;
}
#GGR-map .ggr-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Info */
#GGR-map .ggr-info {
  padding: 22px 22px 22px;
}
#GGR-map .ggr-info h3 {
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.96);
}

/* Mini list */
#GGR-map .ggr-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
#GGR-map .ggr-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}
#GGR-map .ggr-dot {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 225, 0, 0.14);
  border: 1px solid rgba(255, 225, 0, 0.25);
  color: #ffe100;
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
#GGR-map .ggr-dot i {
  font-size: 16px;
}

/* Buttons */
#GGR-map .ggr-actions {
  display: grid;
  gap: 10px;
}
#GGR-map .ggr-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}
#GGR-map .ggr-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
#GGR-map .ggr-btn-primary {
  background: #ffe100;
  border-color: #ffe100;
  color: #111;
}
#GGR-map .ggr-btn-primary:hover {
  background: #ffea3a;
  border-color: #ffea3a;
}

/* Small note */
#GGR-map .ggr-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

/* Soft entrance */
#GGR-map .ggr-map-card {
  animation: ggrMapIn 0.6s ease both;
}
@keyframes ggrMapIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  #GGR-map .ggr-map-frame iframe {
    min-height: 360px;
  }
  #GGR-map .ggr-map-frame {
    min-height: 360px;
  }
}
@media (max-width: 576px) {
  #GGR-map {
    padding: 70px 0;
  }
}
/* Map Section End */

/* Footer setcion start*/
/* ===== Footer v3 (Premium typography + alignment) ===== */
.GGRF3 {
  --accent: #ffe100;
  --bg: #07080a;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.62);

  background:
    radial-gradient(
      900px 420px at 12% 20%,
      rgba(255, 225, 0, 0.07),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 10%,
      rgba(255, 255, 255, 0.05),
      transparent 60%
    ),
    linear-gradient(180deg, #08090b 0%, var(--bg) 100%);
  padding: 70px 0 24px;
  color: var(--text);
}

.GGRF3 * {
  box-sizing: border-box;
}
.GGRF3 a {
  text-decoration: none;
}

.GGRF3-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.1fr;
  gap: 38px;
  align-items: start;
}

@media (max-width: 991px) {
  .GGRF3-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 575px) {
  .GGRF3-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.GGRF3-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.GGRF3-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 225, 0, 0.08);
  border: 1px solid rgba(255, 225, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.GGRF3-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.GGRF3-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.2px;
}
.GGRF3-sub {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}

.GGRF3-desc {
  margin: 14px 0 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}

/* Meta */
.GGRF3-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.GGRF3-meta span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke);
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.GGRF3-meta i {
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.GGRF3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.GGRF3-btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--stroke);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: 0.18s ease;
}
.GGRF3-btnPrimary {
  background: linear-gradient(180deg, #ffe100 0%, #ffd400 100%);
  color: #0b0c0d;
  border-color: rgba(255, 225, 0, 0.42);
  box-shadow: 0 18px 48px rgba(255, 225, 0, 0.14);
}
.GGRF3-btnGhost {
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
}
.GGRF3-btn:hover {
  transform: translateY(-2px);
}

/* Social */
.GGRF3-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.GGRF3-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.18s ease;
}
.GGRF3-social a:hover {
  transform: translateY(-2px);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* Headings */
.GGRF3-head {
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  padding-bottom: 10px;
  margin-bottom: 14px;
  position: relative;
}
.GGRF3-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 225, 0, 0.9);
}

/* Links */
.GGRF3-links a {
  display: block;
  margin: 10px 0;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
  transition: 0.18s ease;
}
.GGRF3-links a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

/* Facilities list */
.GGRF3-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.GGRF3-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.GGRF3-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 225, 0, 0.85);
  margin-top: 6px;
  flex: 0 0 8px;
  box-shadow: 0 0 0 4px rgba(255, 225, 0, 0.1);
}

/* Contact */
.GGRF3-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.GGRF3-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.GGRF3-row i {
  width: 18px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  flex: 0 0 18px;
}
.GGRF3-rowLink {
  color: rgba(255, 255, 255, 0.82);
}
.GGRF3-rowLink:hover {
  color: var(--accent);
}

/* Mini buttons */
.GGRF3-miniGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .GGRF3-miniGrid {
    grid-template-columns: 1fr;
  }
}
.GGRF3-mini {
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: 0.18s ease;
}
.GGRF3-mini:hover {
  transform: translateY(-2px);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* Newsletter (clean + aligned) */
.GGRF3-news {
  margin-top: 14px;
}
.GGRF3-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke);
  padding: 10px 10px 10px 12px;
}
.GGRF3-input i {
  color: rgba(255, 255, 255, 0.55);
}
.GGRF3-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}
.GGRF3-input input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.GGRF3-input button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 225, 0, 0.45);
  background: linear-gradient(180deg, #ffe100 0%, #ffd400 100%);
  color: #0b0c0d;
  cursor: pointer;
  transition: 0.18s ease;
}
.GGRF3-input button:hover {
  transform: translateY(-2px);
}

/* Bottom */
.GGRF3-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.GGRF3-bottomLinks {
  display: flex;
  align-items: center;
  gap: 12px;
}
.GGRF3-bottomLinks a {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}
.GGRF3-bottomLinks a:hover {
  color: var(--accent);
}
.GGRF3-bottomLinks span {
  opacity: 0.35;
}

/* Footer section end */

/* membership card start */
/* ===== GGRP Pricing (final, width=1300, premium typography + color polish) ===== */

.ggrp-pricing-wrap {
  max-width: 1300px; /* ✅ requested */
  margin: 0 auto;
}

/* ensure bootstrap row spacing looks same as page */
.ggrp-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.ggrp-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 22px 22px 18px;
  border-radius: 26px;

  /* a bit richer + premium depth */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--ggrp-border);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  color: var(--ggrp-text);
}

.ggrp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* premium glow layers */
.ggrp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 320px at 18% 0%,
      rgba(255, 210, 0, 0.16),
      transparent 55%
    ),
    radial-gradient(
      700px 280px at 100% 0%,
      rgba(140, 180, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 60% 120%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    );
  opacity: 1;
}

/* featured */
.ggrp-card--featured {
  border-color: rgba(255, 210, 0, 0.32);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 210, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* top */
.ggrp-top {
  display: block;
}

.ggrp-plan {
  font-family:
    "Rajdhani",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

/* PRICE: never wrap + premium */
.ggrp-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.ggrp-cur {
  font-family:
    "Rajdhani",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ggrp-accent) !important;
  line-height: 1;
}

.ggrp-amt {
  font-family:
    "Rajdhani",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(36px, 2.45vw, 48px);
  color: var(--ggrp-accent) !important; /* ✅ force yellow */

  /* richer price glow */
  text-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255, 210, 0, 0.1);
}

.ggrp-unit {
  font-family:
    "Rubik",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 210, 0, 0.92) !important;

  white-space: nowrap; /* ✅ one line always */
  flex: 0 0 auto;
}

.ggrp-desc {
  font-family:
    "Rubik",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ggrp-muted);
  max-width: 34ch;
}

/* list */
.ggrp-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  gap: 10px;
}

.ggrp-list li {
  font-family:
    "Rubik",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 13.6px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);

  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* tick: premium gradient + subtle ring */
.ggrp-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;

  font-size: 12px;
  font-weight: 900;
  color: #0b0f16;

  background: linear-gradient(
    180deg,
    rgba(255, 210, 0, 1),
    rgba(255, 180, 0, 1)
  );
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 210, 0, 0.12);
  margin-top: 1px;
}

/* CTA button (premium) */
.ggrp-cta {
  margin-top: auto;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.92) !important;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px 14px 16px;
  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ggrp-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 210, 0, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 210, 0, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.35);
}

.ggrp-cta span {
  font-family:
    "Rajdhani",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.ggrp-cta:hover span {
  color: rgba(255, 255, 255, 0.98);
}

.ggrp-cta i {
  width: 46px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: linear-gradient(
    180deg,
    rgba(255, 210, 0, 1),
    rgba(255, 180, 0, 1)
  );
  color: var(--ggrp-accentText);
  font-style: normal;
  font-weight: 900;
  color: #000000;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(255, 210, 0, 0.1);
}

/* ribbon (clean + readable) */
.ggrp-ribbon {
  position: absolute;
  top: 39px;
  right: -44px;
  transform: rotate(45deg);
  z-index: 3;
  pointer-events: none;
  color: #000000;
}

.ggrp-ribbon span {
  display: inline-block;
  padding: 8px 56px;
  background: linear-gradient(
    180deg,
    rgba(255, 210, 0, 1),
    rgba(255, 180, 0, 1)
  );
  color: var(--ggrp-accentText);
  font-family:
    "Rajdhani",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

/* responsive tune */
@media (max-width: 1199.98px) {
  .ggrp-row {
    --bs-gutter-x: 18px;
  }
}
@media (max-width: 991.98px) {
  .ggrp-price {
    gap: 8px;
  }
  .ggrp-amt {
    font-size: 44px;
  }
}

/* membership card end */

/* =========================
   GGTR Premium Slider (CSS)
   ========================= */
/* Trainer index card start */
/* =========================================
   GGR PREMIUM TRAINERS
========================================= */
.GGRPT,
.GGRPT * {
  box-sizing: border-box;
}

.GGRPT {
  position: relative;
  margin-top: 10px;
}

.GGRPT-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.GGRPT-topbar.GGRPT-topbar--navOnly {
  justify-content: flex-end;
}

.GGRPT-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.GGRPT-navBtn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.GGRPT-navBtn span {
  font-size: 29px;
  line-height: 1;
  transform: translateY(-1px);
}

.GGRPT-navBtn:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 230, 0, 0.35);
  background:
    linear-gradient(180deg, rgba(248, 230, 0, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.05);
}

.GGRPT-stage {
  position: relative;
}

.GGRPT-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 6px 2px 14px;
  margin: 0;
  scroll-padding-left: 2px;
  scroll-padding-right: 2px;
}

.GGRPT-rail::-webkit-scrollbar {
  display: none;
}

.GGRPT-rail.GGRPT-isDragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.GGRPT-card {
  position: relative;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: calc((100% - 66px) / 4);
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  isolation: isolate;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.GGRPT-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    rgba(248, 230, 0, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.GGRPT-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 230, 0, 0.22);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(248, 230, 0, 0.05);
}

.GGRPT-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  z-index: 0;
}

.GGRPT-card:hover .GGRPT-media {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.06);
}

.GGRPT-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(
      140deg,
      rgba(0, 0, 0, 0.04),
      transparent 45%,
      rgba(248, 230, 0, 0.05)
    );
  z-index: 1;
  pointer-events: none;
}

.GGRPT-role {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(14, 18, 24, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.GGRPT-view {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  z-index: 6;

  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.25px;
  color: #fff;

  background: rgba(12, 14, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.GGRPT-view::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 230, 0, 0.96);
  box-shadow: 0 0 0 6px rgba(248, 230, 0, 0.14);
}

.GGRPT-view::after {
  content: "→";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.GGRPT-card:hover .GGRPT-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.GGRPT-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 6;
}

.GGRPT-name {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.12;
  font-weight: 950;
  color: #fff;
  text-shadow: 0 14px 26px rgba(0, 0, 0, 0.6);
}

.GGRPT-meta {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.55);
}

.GGRPT-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.GGRPT-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

/* ===== responsive ===== */
@media (max-width: 1199px) {
  .GGRPT-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: calc((100% - 44px) / 3);
    height: 420px;
  }
}

@media (max-width: 991px) {
  .GGRPT-topbar {
    margin-bottom: 18px;
  }

  .GGRPT-nav {
    justify-content: flex-end;
  }

  .GGRPT-card {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
    height: 420px;
  }
}

@media (max-width: 767px) {
  .GGRPT-topbar {
    margin-bottom: 18px;
  }

  .GGRPT-nav {
    justify-content: flex-start;
  }

  .GGRPT-navBtn {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .GGRPT-navBtn span {
    font-size: 25px;
  }

  .GGRPT-rail {
    gap: 16px;
    padding-bottom: 10px;
  }

  .GGRPT-card {
    flex: 0 0 100%;
    min-width: 100%;
    height: 420px;
  }

  .GGRPT-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .GGRPT-name {
    font-size: 20px;
  }

  .GGRPT-meta {
    font-size: 12.5px;
    margin-bottom: 12px;
  }
}

@media (hover: none) {
  .GGRPT-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .GGRPT-card:hover {
    transform: none;
  }

  .GGRPT-card:hover .GGRPT-media {
    transform: scale(1.02);
  }
}

/* Trainer index card end */

/* Gallery Section Start */
body.GGR-lock-scroll {
  overflow: hidden !important;
}

/* ==================================
   CLEAN PREMIUM MEDIA GALLERY
   ================================== */
#GGR-mediaGallery {
  position: relative;
  padding: calc(var(--GGR-headerTotal) + 34px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(
      900px 500px at 0% 0%,
      rgba(255, 230, 0, 0.08),
      transparent 58%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(70, 95, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #071018 0%, #08111a 48%, #09131d 100%);
}

#GGR-mediaGallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 90%);
}

/* hero */
#GGR-mediaGallery .ggr-mg-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#GGR-mediaGallery .ggr-mg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GGR-mediaGallery .ggr-mg-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--GGR-gold);
  box-shadow: 0 0 0 6px rgba(255, 230, 0, 0.12);
}

#GGR-mediaGallery .ggr-mg-title {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -1.6px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

#GGR-mediaGallery .ggr-mg-title span {
  color: var(--GGR-gold);
  text-shadow: 0 0 34px rgba(255, 230, 0, 0.14);
}

#GGR-mediaGallery .ggr-mg-sub {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

#GGR-mediaGallery .ggr-mg-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

#GGR-mediaGallery .ggr-mg-stat {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GGR-mediaGallery .ggr-mg-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

#GGR-mediaGallery .ggr-mg-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

#GGR-mediaGallery .ggr-mg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

#GGR-mediaGallery .ggr-mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    border-color 0.18s ease;
}

#GGR-mediaGallery .ggr-mg-btn:hover {
  transform: translateY(-2px);
}

#GGR-mediaGallery .ggr-mg-btn-primary {
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 38px rgba(255, 230, 0, 0.14);
}

#GGR-mediaGallery .ggr-mg-btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* hero right */
#GGR-mediaGallery .ggr-mg-showcase {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

#GGR-mediaGallery .ggr-mg-showcase img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

#GGR-mediaGallery .ggr-mg-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 15%, rgba(0, 0, 0, 0.68) 100%),
    radial-gradient(
      closest-side,
      rgba(255, 230, 0, 0.12),
      rgba(255, 230, 0, 0) 72%
    );
}

#GGR-mediaGallery .ggr-mg-showcase-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px;
  border-radius: 20px;
  background: rgba(10, 12, 16, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

#GGR-mediaGallery .ggr-mg-showcase-overlay span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

#GGR-mediaGallery .ggr-mg-showcase-overlay strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}

#GGR-mediaGallery .ggr-mg-quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

#GGR-mediaGallery .ggr-mg-info-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GGR-mediaGallery .ggr-mg-info-card small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

#GGR-mediaGallery .ggr-mg-info-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  font-weight: 800;
}

/* toolbar */
#GGR-mediaGallery .ggr-mg-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 22px;
}

#GGR-mediaGallery .ggr-mg-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#GGR-mediaGallery .ggr-mg-filter {
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

#GGR-mediaGallery .ggr-mg-filter:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 230, 0, 0.28);
}

#GGR-mediaGallery .ggr-mg-filter.is-active {
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(255, 230, 0, 0.12);
}

#GGR-mediaGallery .ggr-mg-toolbar-info {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}

/* grid */
#GGR-mediaGallery .ggr-mg-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

#GGR-mediaGallery .ggr-mg-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

#GGR-mediaGallery .ggr-mg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 230, 0, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

#GGR-mediaGallery .ggr-mg-card.landscape {
  min-height: 310px;
}

#GGR-mediaGallery .ggr-mg-card.square {
  min-height: 350px;
}

#GGR-mediaGallery .ggr-mg-card.portrait {
  min-height: 430px;
}

#GGR-mediaGallery .ggr-mg-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

#GGR-mediaGallery .ggr-mg-card:hover .ggr-mg-thumb {
  transform: scale(1.08);
}

#GGR-mediaGallery .ggr-mg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(
      closest-side,
      rgba(255, 230, 0, 0.1),
      rgba(255, 230, 0, 0) 72%
    );
}

#GGR-mediaGallery .ggr-mg-badge-row {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#GGR-mediaGallery .ggr-mg-badge,
#GGR-mediaGallery .ggr-mg-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

#GGR-mediaGallery .ggr-mg-index {
  background: rgba(10, 12, 16, 0.42);
}

#GGR-mediaGallery .ggr-mg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  background: rgba(10, 12, 16, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

#GGR-mediaGallery .ggr-mg-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

#GGR-mediaGallery .ggr-mg-type {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#GGR-mediaGallery .ggr-mg-content h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

#GGR-mediaGallery .ggr-mg-content p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

#GGR-mediaGallery .ggr-mg-load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

#GGR-mediaGallery .ggr-mg-load-btn {
  cursor: pointer;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(255, 230, 0, 0.14);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

#GGR-mediaGallery .ggr-mg-load-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

#GGR-mediaGallery .ggr-mg-load-btn[hidden] {
  display: none !important;
}

/* offer */
#GGR-mediaGallery .ggr-mg-offer {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      420px 220px at 100% 0%,
      rgba(255, 230, 0, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

#GGR-mediaGallery .ggr-mg-offer-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GGR-mediaGallery .ggr-mg-offer-left h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}

#GGR-mediaGallery .ggr-mg-offer-left p {
  margin: 14px 0 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

#GGR-mediaGallery .ggr-mg-offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

#GGR-mediaGallery .ggr-mg-offer-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

#GGR-mediaGallery .ggr-mg-offer-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#GGR-mediaGallery .ggr-mg-offer-card small {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

#GGR-mediaGallery .ggr-mg-offer-price span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

#GGR-mediaGallery .ggr-mg-offer-price strong {
  display: block;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.95;
  font-weight: 900;
  color: var(--GGR-gold);
  text-shadow: 0 0 28px rgba(255, 230, 0, 0.12);
}

#GGR-mediaGallery .ggr-mg-offer-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

#GGR-mediaGallery .ggr-mg-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* modal */
#GGR-mediaGallery .ggr-mg-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

#GGR-mediaGallery .ggr-mg-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

#GGR-mediaGallery .ggr-mg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(10px);
}

#GGR-mediaGallery .ggr-mg-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 28px));
  margin: 22px auto;
  height: calc(100dvh - 44px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(12, 12, 16, 0.96),
    rgba(10, 10, 12, 0.98)
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

#GGR-mediaGallery .ggr-mg-close,
#GGR-mediaGallery .ggr-mg-nav {
  position: absolute;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#GGR-mediaGallery .ggr-mg-close {
  top: 18px;
  right: 18px;
}

#GGR-mediaGallery .ggr-mg-nav {
  top: 50%;
  transform: translateY(-50%);
}

#GGR-mediaGallery .ggr-mg-prev {
  left: 18px;
}
#GGR-mediaGallery .ggr-mg-next {
  right: 18px;
}

#GGR-mediaGallery .ggr-mg-modal-media {
  width: 100%;
  height: calc(100% - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 78px 20px;
}

#GGR-mediaGallery .ggr-mg-modal-media img,
#GGR-mediaGallery .ggr-mg-modal-media video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  background: #000;
}

#GGR-mediaGallery .ggr-mg-modal-info {
  height: 90px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#GGR-mediaGallery .ggr-mg-modal-type {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
}

#GGR-mediaGallery .ggr-mg-modal-info h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}

#GGR-mediaGallery .ggr-mg-modal-count {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

/* responsive */
@media (max-width: 991px) {
  #GGR-mediaGallery {
    padding: calc(var(--GGR-headerTotal) + 26px) 0 70px;
  }

  #GGR-mediaGallery .ggr-mg-hero,
  #GGR-mediaGallery .ggr-mg-offer {
    grid-template-columns: 1fr;
  }

  #GGR-mediaGallery .ggr-mg-showcase {
    min-height: 360px;
  }

  #GGR-mediaGallery .ggr-mg-showcase img {
    min-height: 360px;
  }

  #GGR-mediaGallery .ggr-mg-quick-info {
    grid-template-columns: 1fr 1fr 1fr;
  }

  #GGR-mediaGallery .ggr-mg-card {
    grid-column: span 6;
  }

  #GGR-mediaGallery .ggr-mg-modal-dialog {
    width: min(100%, calc(100% - 16px));
    margin: 8px auto;
    height: calc(100dvh - 16px);
    border-radius: 22px;
  }

  #GGR-mediaGallery .ggr-mg-modal-media {
    padding: 70px 18px 18px;
    height: calc(100% - 110px);
  }

  #GGR-mediaGallery .ggr-mg-prev {
    left: 10px;
  }
  #GGR-mediaGallery .ggr-mg-next {
    right: 10px;
  }
}

@media (max-width: 640px) {
  #GGR-mediaGallery .ggr-mg-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  #GGR-mediaGallery .ggr-mg-stats {
    gap: 10px;
  }

  #GGR-mediaGallery .ggr-mg-stat {
    min-width: calc(50% - 5px);
  }

  #GGR-mediaGallery .ggr-mg-quick-info {
    grid-template-columns: 1fr;
  }

  #GGR-mediaGallery .ggr-mg-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }

  #GGR-mediaGallery .ggr-mg-filters::-webkit-scrollbar {
    display: none;
  }

  #GGR-mediaGallery .ggr-mg-card {
    grid-column: span 12;
  }

  #GGR-mediaGallery .ggr-mg-card.landscape {
    min-height: 280px;
  }

  #GGR-mediaGallery .ggr-mg-card.square {
    min-height: 320px;
  }

  #GGR-mediaGallery .ggr-mg-card.portrait {
    min-height: 380px;
  }

  #GGR-mediaGallery .ggr-mg-modal-info {
    height: auto;
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  #GGR-mediaGallery .ggr-mg-modal-media {
    height: calc(100% - 120px);
  }

  #GGR-mediaGallery .ggr-mg-close {
    top: 12px;
    right: 12px;
  }

  #GGR-mediaGallery .ggr-mg-nav {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #GGR-mediaGallery * {
    animation: none !important;
    transition: none !important;
  }
}
/* Gallery Section End */

/* Trainers Page Start */
/* =========================================
   GTRD - POLISHED TRAINER DETAIL PAGE
   ========================================= */
#GTRD-page,
#GTRD-page * {
  box-sizing: border-box;
}

#GTRD-page {
  --gtrd-bg1: #132234;
  --gtrd-bg2: #16293d;
  --gtrd-bg3: #102031;
  --gtrd-card: rgba(255, 255, 255, 0.075);
  --gtrd-card-2: rgba(255, 255, 255, 0.055);
  --gtrd-stroke: rgba(255, 255, 255, 0.14);
  --gtrd-stroke-2: rgba(248, 230, 0, 0.22);
  --gtrd-text: rgba(255, 255, 255, 0.96);
  --gtrd-muted: rgba(255, 255, 255, 0.78);
  --gtrd-soft: rgba(255, 255, 255, 0.6);
  --gtrd-shadow: 0 24px 70px rgba(4, 12, 24, 0.18);
  --gtrd-shadow-2: 0 14px 34px rgba(4, 12, 24, 0.14);
  --gtrd-radius: 24px;
  --gtrd-radius-sm: 18px;

  position: relative;
  color: var(--gtrd-text);
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    sans-serif;
  background:
    radial-gradient(
      900px 500px at 0% 0%,
      rgba(248, 230, 0, 0.1),
      transparent 58%
    ),
    radial-gradient(
      900px 560px at 100% 0%,
      rgba(82, 126, 255, 0.16),
      transparent 62%
    ),
    radial-gradient(
      720px 420px at 50% 100%,
      rgba(76, 182, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--gtrd-bg1) 0%,
      var(--gtrd-bg2) 42%,
      var(--gtrd-bg3) 100%
    );
  overflow: hidden;
}

#GTRD-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
}

#GTRD-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%),
    radial-gradient(
      600px 280px at 50% 0%,
      rgba(255, 255, 255, 0.04),
      transparent 70%
    );
}

#GTRD-page a {
  color: inherit;
  text-decoration: none;
}

#GTRD-page img {
  display: block;
  max-width: 100%;
}

#GTRD-page .gtrd-topSec {
  position: relative;
  z-index: 1;
  padding: calc(var(--GGR-headerTotal) + 24px) 0 22px;
}

#GTRD-page .gtrd-bodySec {
  position: relative;
  z-index: 1;
  padding: 0 0 88px;
}

#GTRD-page .gtrd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: var(--gtrd-soft);
  font-size: 13px;
  font-weight: 700;
}

#GTRD-page .gtrd-breadcrumb strong {
  color: #fff;
}

#GTRD-page .gtrd-topCard,
#GTRD-page .gtrd-card,
#GTRD-page .gtrd-sideCard,
#GTRD-page .gtrd-switchCard,
#GTRD-page .gtrd-trainerCard {
  position: relative;
  border-radius: var(--gtrd-radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid var(--gtrd-stroke);
  box-shadow: var(--gtrd-shadow);
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#GTRD-page .gtrd-topCard {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  align-items: stretch;
}

#GTRD-page .gtrd-photoWrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 390px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--gtrd-shadow-2);
}

#GTRD-page .gtrd-photoWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#GTRD-page .gtrd-photoWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 18%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(
      closest-side,
      rgba(248, 230, 0, 0.1),
      rgba(248, 230, 0, 0) 72%
    );
}

#GTRD-page .gtrd-roleBadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(248, 230, 0, 0.18);
}

#GTRD-page .gtrd-imgInfo {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 15px;
  border-radius: 18px;
  background: rgba(10, 14, 20, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

#GTRD-page .gtrd-imgInfo h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-imgInfo p {
  margin: 6px 0 0;
  color: var(--gtrd-muted);
  font-size: 13px;
  line-height: 1.65;
}

#GTRD-page .gtrd-contentWrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#GTRD-page .gtrd-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GTRD-page .gtrd-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--GGR-gold);
  box-shadow: 0 0 0 5px rgba(248, 230, 0, 0.1);
}

#GTRD-page .gtrd-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-title span {
  color: var(--GGR-gold);
  text-shadow: 0 0 18px rgba(248, 230, 0, 0.14);
}

#GTRD-page .gtrd-summary {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--gtrd-muted);
  font-size: 15px;
  line-height: 1.82;
}

#GTRD-page .gtrd-chipRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#GTRD-page .gtrd-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

#GTRD-page .gtrd-miniStats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

#GTRD-page .gtrd-miniStat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

#GTRD-page .gtrd-miniStat strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-miniStat span {
  display: block;
  margin-top: 6px;
  color: var(--gtrd-soft);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

#GTRD-page .gtrd-actionRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

#GTRD-page .gtrd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

#GTRD-page .gtrd-btn:hover {
  transform: translateY(-2px);
}

#GTRD-page .gtrd-btnPrimary {
  background: linear-gradient(180deg, var(--GGR-gold2), var(--GGR-gold));
  color: #111;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(248, 230, 0, 0.16);
}

#GTRD-page .gtrd-btnGhost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

#GTRD-page .gtrd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) 330px;
  gap: 22px;
}

#GTRD-page .gtrd-mainCol,
#GTRD-page .gtrd-sideCol {
  min-width: 0;
}

#GTRD-page .gtrd-mainCol {
  display: grid;
  gap: 20px;
}

#GTRD-page .gtrd-sideCol {
  display: grid;
  gap: 20px;
  align-content: start;
}

#GTRD-page .gtrd-sideSticky {
  position: sticky;
  top: calc(var(--GGR-headerTotal) + 18px);
  display: grid;
  gap: 20px;
}

#GTRD-page .gtrd-card,
#GTRD-page .gtrd-sideCard,
#GTRD-page .gtrd-switchCard {
  padding: 20px;
}

#GTRD-page .gtrd-cardHead {
  margin-bottom: 14px;
}

#GTRD-page .gtrd-cardHead h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-cardHead p {
  margin: 7px 0 0;
  color: var(--gtrd-soft);
  font-size: 14px;
  line-height: 1.65;
}

#GTRD-page .gtrd-text {
  color: var(--gtrd-muted);
  font-size: 15px;
  line-height: 1.82;
}

#GTRD-page .gtrd-text + .gtrd-text {
  margin-top: 12px;
}

#GTRD-page .gtrd-focusGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#GTRD-page .gtrd-focusItem,
#GTRD-page .gtrd-certItem,
#GTRD-page .gtrd-expItem,
#GTRD-page .gtrd-sidePanel {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GTRD-page .gtrd-focusItem h4,
#GTRD-page .gtrd-certItem h4,
#GTRD-page .gtrd-expItem h4,
#GTRD-page .gtrd-sidePanel h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}

#GTRD-page .gtrd-focusItem p,
#GTRD-page .gtrd-certItem p,
#GTRD-page .gtrd-expItem p,
#GTRD-page .gtrd-sidePanel p {
  margin: 8px 0 0;
  color: var(--gtrd-muted);
  font-size: 13px;
  line-height: 1.7;
}

#GTRD-page .gtrd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#GTRD-page .gtrd-stackWrap {
  display: grid;
  gap: 12px;
  align-content: start;
}

#GTRD-page .gtrd-listStack {
  display: grid;
  gap: 14px;
}

#GTRD-page .gtrd-subLabel {
  display: inline-block;
  color: var(--GGR-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GTRD-page .gtrd-quickList {
  display: grid;
  gap: 10px;
}

#GTRD-page .gtrd-quickItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GTRD-page .gtrd-quickItem span {
  color: var(--gtrd-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#GTRD-page .gtrd-quickItem strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-align: right;
}

#GTRD-page .gtrd-priceCard {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

#GTRD-page .gtrd-priceCard small {
  display: block;
  color: var(--gtrd-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GTRD-page .gtrd-priceCard strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: var(--GGR-gold);
}

#GTRD-page .gtrd-sideBtns {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

#GTRD-page .gtrd-sideBtns .gtrd-btn {
  width: 100%;
}

#GTRD-page .gtrd-switchSec {
  margin-top: 22px;
}

#GTRD-page .gtrd-switchRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

#GTRD-page .gtrd-switchBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#GTRD-page .gtrd-moreSec {
  margin-top: 26px;
}

#GTRD-page .gtrd-secHead {
  text-align: center;
  margin-bottom: 18px;
}

#GTRD-page .gtrd-secHead h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-secHead p {
  margin: 0;
  color: var(--gtrd-muted);
  font-size: 14px;
}

#GTRD-page .gtrd-trainerGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

#GTRD-page .gtrd-trainerCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

#GTRD-page .gtrd-trainerCard:hover {
  transform: translateY(-5px);
  border-color: var(--gtrd-stroke-2);
  box-shadow: 0 24px 70px rgba(4, 12, 24, 0.2);
}

#GTRD-page .gtrd-trainerThumb {
  position: relative;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

#GTRD-page .gtrd-trainerThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#GTRD-page .gtrd-trainerThumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

#GTRD-page .gtrd-trainerRole {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#GTRD-page .gtrd-trainerBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

#GTRD-page .gtrd-trainerBody h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

#GTRD-page .gtrd-trainerMeta {
  margin-top: 5px;
  color: var(--gtrd-soft);
  font-size: 13px;
  font-weight: 700;
}

#GTRD-page .gtrd-trainerText {
  margin: 10px 0 0;
  color: var(--gtrd-muted);
  font-size: 13px;
  line-height: 1.72;
}

#GTRD-page .gtrd-trainerTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

#GTRD-page .gtrd-trainerTag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
}

#GTRD-page .gtrd-trainerAction {
  margin-top: 14px;
}

#GTRD-page .gtrd-trainerAction .gtrd-btn {
  width: 100%;
}

@media (max-width: 1199px) {
  #GTRD-page .gtrd-trainerGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  #GTRD-page .gtrd-topCard,
  #GTRD-page .gtrd-layout,
  #GTRD-page .gtrd-split {
    grid-template-columns: 1fr;
  }

  #GTRD-page .gtrd-miniStats,
  #GTRD-page .gtrd-focusGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #GTRD-page .gtrd-trainerGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #GTRD-page .gtrd-sideSticky {
    position: static;
  }

  #GTRD-page .gtrd-photoWrap {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  #GTRD-page .gtrd-topSec {
    padding: calc(var(--GGR-headerTotal) + 20px) 0 18px;
  }

  #GTRD-page .gtrd-topCard,
  #GTRD-page .gtrd-card,
  #GTRD-page .gtrd-sideCard,
  #GTRD-page .gtrd-switchCard {
    padding: 16px;
  }

  #GTRD-page .gtrd-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  #GTRD-page .gtrd-miniStats,
  #GTRD-page .gtrd-focusGrid,
  #GTRD-page .gtrd-trainerGrid {
    grid-template-columns: 1fr;
  }

  #GTRD-page .gtrd-photoWrap {
    min-height: 360px;
  }
}

@media (max-width: 575px) {
  #GTRD-page .gtrd-actionRow,
  #GTRD-page .gtrd-switchBtns {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  #GTRD-page .gtrd-actionRow .gtrd-btn,
  #GTRD-page .gtrd-switchBtns .gtrd-btn {
    width: 100%;
  }

  #GTRD-page .gtrd-quickItem {
    flex-direction: column;
    align-items: flex-start;
  }

  #GTRD-page .gtrd-quickItem strong {
    text-align: left;
  }

  #GTRD-page .gtrd-title {
    font-size: 32px;
  }

  #GTRD-page .gtrd-secHead h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #GTRD-page * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Trainers Page End */

/* trainer page start */
/* =========================================
   GTRLP - TRAINERS LISTING PAGE FINAL
   ========================================= */

#GTRLP-page,
#GTRLP-page * {
  box-sizing: border-box;
}

#GTRLP-page {
  position: relative;
  color: #fff;
  background:
    radial-gradient(
      900px 460px at 0% 0%,
      rgba(255, 225, 0, 0.08),
      transparent 58%
    ),
    radial-gradient(
      900px 460px at 100% 0%,
      rgba(78, 120, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0c1420 0%, #101b2a 50%, #0f1824 100%);
  overflow: hidden;
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#GTRLP-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
}

#GTRLP-page .gtrlp-hero,
#GTRLP-page .gtrlp-toolbarSec,
#GTRLP-page .gtrlp-gridSec,
#GTRLP-page .gtrlp-whySec,
#GTRLP-page .gtrlp-ctaSec {
  position: relative;
  z-index: 1;
}

#GTRLP-page .gtrlp-hero {
  padding: calc(var(--GGR-headerTotal) + 26px) 0 22px;
}

#GTRLP-page .gtrlp-gridSec {
  padding: 0 0 28px;
}

#GTRLP-page .gtrlp-whySec {
  padding: 18px 0 26px;
}

#GTRLP-page .gtrlp-ctaSec {
  padding: 0 0 90px;
}

#GTRLP-page .gtrlp-heroCard {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#GTRLP-page .gtrlp-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GTRLP-page .gtrlp-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--GGR-gold, #ffe100);
  box-shadow: 0 0 0 6px rgba(255, 225, 0, 0.1);
}

#GTRLP-page .gtrlp-title {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

#GTRLP-page .gtrlp-title span {
  color: var(--GGR-gold, #ffe100);
  text-shadow: 0 0 18px rgba(255, 225, 0, 0.1);
}

#GTRLP-page .gtrlp-sub {
  margin: 14px 0 0;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

#GTRLP-page .gtrlp-statRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

#GTRLP-page .gtrlp-stat {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

#GTRLP-page .gtrlp-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

#GTRLP-page .gtrlp-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.66);
}

#GTRLP-page .gtrlp-heroPanel {
  padding: 20px;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(
      240px 140px at 100% 0%,
      rgba(255, 225, 0, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

#GTRLP-page .gtrlp-heroPanel small {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

#GTRLP-page .gtrlp-heroPanel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

#GTRLP-page .gtrlp-heroPanel li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

#GTRLP-page .gtrlp-heroPanel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--GGR-gold, #ffe100);
}

#GTRLP-page .gtrlp-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

#GTRLP-page .gtrlp-search {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  font-size: 14px;
  font-weight: 500;
}

#GTRLP-page .gtrlp-search::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

#GTRLP-page .gtrlp-search:focus {
  border-color: rgba(255, 225, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 225, 0, 0.06);
}

#GTRLP-page .gtrlp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#GTRLP-page .gtrlp-filter {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

#GTRLP-page .gtrlp-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 0, 0.24);
}

#GTRLP-page .gtrlp-filter.is-active {
  background: linear-gradient(
    180deg,
    var(--GGR-gold2, #e4d400),
    var(--GGR-gold, #ffe100)
  );
  color: #111;
  border-color: rgba(255, 255, 255, 0.14);
}

#GTRLP-page .gtrlp-resultBar {
  margin-bottom: 16px;
}

#GTRLP-page .gtrlp-resultBar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

#GTRLP-page .gtrlp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#GTRLP-page .gtrlp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

#GTRLP-page .gtrlp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 225, 0, 0.24);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

#GTRLP-page .gtrlp-thumb {
  position: relative;
  aspect-ratio: 4 / 4.15;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

#GTRLP-page .gtrlp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#GTRLP-page .gtrlp-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 18%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

#GTRLP-page .gtrlp-role {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#GTRLP-page .gtrlp-cardBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

#GTRLP-page .gtrlp-cardBody h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

#GTRLP-page .gtrlp-meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 600;
}

#GTRLP-page .gtrlp-desc {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}

#GTRLP-page .gtrlp-skillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

#GTRLP-page .gtrlp-skill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
}

#GTRLP-page .gtrlp-miniRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

#GTRLP-page .gtrlp-miniBox {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GTRLP-page .gtrlp-miniBox small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#GTRLP-page .gtrlp-miniBox strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

#GTRLP-page .gtrlp-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

#GTRLP-page .gtrlp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

#GTRLP-page .gtrlp-btn:hover {
  transform: translateY(-2px);
}

#GTRLP-page .gtrlp-btnPrimary {
  background: linear-gradient(
    180deg,
    var(--GGR-gold2, #e4d400),
    var(--GGR-gold, #ffe100)
  );
  color: #111;
  border-color: rgba(255, 255, 255, 0.14);
}

#GTRLP-page .gtrlp-btnGhost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  min-width: 48px;
  padding: 0 14px;
}

#GTRLP-page .gtrlp-secHead {
  text-align: center;
  margin-bottom: 18px;
}

#GTRLP-page .gtrlp-secHead h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

#GTRLP-page .gtrlp-secHead p {
  margin: 0 auto;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.82;
  font-weight: 500;
}

#GTRLP-page .gtrlp-whyGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

#GTRLP-page .gtrlp-whyCard {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

#GTRLP-page .gtrlp-whyIcon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 225, 0, 0.12);
  border: 1px solid rgba(255, 225, 0, 0.2);
  color: var(--GGR-gold, #ffe100);
  font-size: 13px;
  font-weight: 800;
}

#GTRLP-page .gtrlp-whyCard h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
}

#GTRLP-page .gtrlp-whyCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

#GTRLP-page .gtrlp-ctaCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      280px 150px at 100% 0%,
      rgba(255, 225, 0, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

#GTRLP-page .gtrlp-ctaLeft h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

#GTRLP-page .gtrlp-ctaLeft p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.82;
  font-weight: 500;
}

#GTRLP-page .gtrlp-ctaRight {
  display: grid;
  gap: 10px;
}

@media (max-width: 1199px) {
  #GTRLP-page .gtrlp-grid,
  #GTRLP-page .gtrlp-whyGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  #GTRLP-page .gtrlp-heroCard,
  #GTRLP-page .gtrlp-ctaCard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #GTRLP-page .gtrlp-hero {
    padding: calc(var(--GGR-headerTotal) + 20px) 0 18px;
  }

  #GTRLP-page .gtrlp-title {
    font-size: clamp(28px, 10vw, 40px);
    line-height: 1.02;
  }

  #GTRLP-page .gtrlp-sub,
  #GTRLP-page .gtrlp-secHead p,
  #GTRLP-page .gtrlp-ctaLeft p {
    font-size: 14px;
    line-height: 1.82;
  }

  #GTRLP-page .gtrlp-grid,
  #GTRLP-page .gtrlp-whyGrid {
    grid-template-columns: 1fr;
  }

  #GTRLP-page .gtrlp-heroCard,
  #GTRLP-page .gtrlp-heroPanel,
  #GTRLP-page .gtrlp-ctaCard {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  #GTRLP-page .gtrlp-miniRow,
  #GTRLP-page .gtrlp-actions {
    grid-template-columns: 1fr;
  }
}

/* Membership Page Start */

/* =========================================
   GMX Center Membership Popup - Full CSS
   Bigger / Premium / Centered
   ========================================= */
/* =========================================================
   GMX Membership Page - Final Premium Version
   Main CSS
   ========================================================= */

#GMX-page,
#GMX-page * {
  box-sizing: border-box;
}

#GMX-page {
  --GMX-bg: #050608;
  --GMX-bg-2: #0a0d10;
  --GMX-bg-3: #101419;
  --GMX-panel: #12171d;
  --GMX-panel-2: #171d24;
  --GMX-line: rgba(255, 255, 255, 0.09);
  --GMX-text: #ffffff;
  --GMX-text-soft: rgba(255, 255, 255, 0.72);
  --GMX-text-muted: rgba(255, 255, 255, 0.5);
  --GMX-gold: var(--GGR-gold, #f8e600);
  --GMX-gold-2: var(--GGR-gold2, #d9c900);
  --GMX-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --GMX-shadow-soft: 0 20px 56px rgba(0, 0, 0, 0.28);

  position: relative;
  overflow: hidden;
  color: var(--GMX-text);
  background:
    radial-gradient(
      860px 420px at 0% 0%,
      rgba(248, 230, 0, 0.08),
      transparent 58%
    ),
    radial-gradient(
      720px 380px at 100% 0%,
      rgba(248, 230, 0, 0.05),
      transparent 58%
    ),
    linear-gradient(180deg, #050608 0%, #090b0f 46%, #0d1116 100%);
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

#GMX-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent 92%
  );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

#GMX-page::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
  width: min(1200px, 95vw);
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 230, 0, 0.08), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

#GMX-page a {
  color: inherit;
  text-decoration: none;
}

#GMX-page .GMX-shell {
  width: min(var(--GGR-contentW, 1300px), calc(100% - 36px));
  margin-inline: auto;
}

#GMX-page .GMX-hero,
#GMX-page .GMX-pricing {
  position: relative;
  z-index: 1;
}

#GMX-page .GMX-hero {
  padding: calc(var(--GGR-headerTotal, 110px) + 24px) 0 38px;
}

#GMX-page .GMX-pricing {
  padding: 8px 0 90px;
}

#GMX-page .GMX-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#GMX-page .GMX-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--GMX-gold);
  box-shadow:
    0 0 0 6px rgba(248, 230, 0, 0.08),
    0 0 18px rgba(248, 230, 0, 0.2);
  flex: 0 0 auto;
}

#GMX-page .GMX-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

#GMX-page .GMX-btn:hover {
  transform: translateY(-2px);
}

#GMX-page .GMX-btnPrimary {
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GMX-gold) 56%,
    var(--GMX-gold-2) 100%
  );
  color: #111;
  box-shadow:
    0 18px 36px rgba(248, 230, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

#GMX-page .GMX-btnGhost {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#GMX-page .GMX-head {
  text-align: center;
  margin-bottom: 30px;
}

#GMX-page .GMX-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #fff;
}

#GMX-page .GMX-head p {
  margin: 0 auto;
  max-width: 66ch;
  color: var(--GMX-text-soft);
  font-size: 15px;
  line-height: 1.92;
}

#GMX-page .GMX-note {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(248, 230, 0, 0.08);
  border: 1px solid rgba(248, 230, 0, 0.14);
  color: #fff7c8;
  font-size: 12px;
  font-weight: 700;
}

#GMX-page .GMX-heroWrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 380px;
  gap: 22px;
  align-items: stretch;
}

#GMX-page .GMX-heroMain {
  position: relative;
  padding: 38px;
  border-radius: 36px;
  border: 1px solid var(--GMX-line);
  background:
    radial-gradient(
      420px 220px at 0% 0%,
      rgba(248, 230, 0, 0.1),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(180deg, #11161c, #0b0f14);
  box-shadow: var(--GMX-shadow);
  overflow: hidden;
}

#GMX-page .GMX-heroMain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    transparent 28%
  );
  opacity: 0.5;
}

#GMX-page .GMX-title {
  margin: 18px 0 0;
  max-width: 11ch;
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#GMX-page .GMX-title span {
  display: block;
  color: var(--GMX-gold);
  text-shadow: 0 0 24px rgba(248, 230, 0, 0.12);
}

#GMX-page .GMX-sub {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 64ch;
  color: var(--GMX-text-soft);
  font-size: 15px;
  line-height: 1.92;
}

#GMX-page .GMX-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

#GMX-page .GMX-chipRow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

#GMX-page .GMX-chip {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#GMX-page .GMX-chip strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

#GMX-page .GMX-chip span {
  display: block;
  margin-top: 8px;
  color: var(--GMX-text-muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

#GMX-page .GMX-sideCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(248, 230, 0, 0.2);
  background:
    radial-gradient(
      240px 160px at 100% 0%,
      rgba(248, 230, 0, 0.13),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(10, 15, 22, 0.98), rgba(4, 9, 14, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

#GMX-page .GMX-sideCard::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--GMX-gold), transparent 72%);
  opacity: 0.95;
}

#GMX-page .GMX-sideTop,
#GMX-page .GMX-sideDeal,
#GMX-page .GMX-sidePrice,
#GMX-page .GMX-sideList,
#GMX-page .GMX-sideNote {
  position: relative;
  z-index: 1;
}

#GMX-page .GMX-sideBadge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GMX-gold) 58%,
    var(--GMX-gold-2) 100%
  );
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(248, 230, 0, 0.14);
}

#GMX-page .GMX-sideTop small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#GMX-page .GMX-sideTop h3 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
}

#GMX-page .GMX-sideDeal {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(180deg, #161c24, #0f141b);
  border: 1px solid rgba(248, 230, 0, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#GMX-page .GMX-sideDealTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

#GMX-page .GMX-sideDealBlock span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GMX-page .GMX-sideDealOld {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

#GMX-page .GMX-sideSavePill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(248, 230, 0, 0.1);
  border: 1px solid rgba(248, 230, 0, 0.16);
  color: #fff7c8;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

#GMX-page .GMX-sideDealNow {
  margin-top: 16px;
}

#GMX-page .GMX-sideDealNow span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GMX-page .GMX-sideDealNow strong {
  display: block;
  margin-top: 8px;
  color: #fff7c2;
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

#GMX-page .GMX-sideDealNow em {
  display: block;
  margin-top: 8px;
  color: var(--GMX-gold);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

#GMX-page .GMX-sidePrice {
  margin-top: 24px;
}

#GMX-page .GMX-sidePrice span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#GMX-page .GMX-sidePrice strong {
  display: block;
  margin-top: 10px;
  font-size: 58px;
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #fff7c2;
}

#GMX-page .GMX-sidePrice em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--GMX-gold);
  font-size: 13px;
  font-weight: 800;
}

#GMX-page .GMX-sideList {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

#GMX-page .GMX-sideList div {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

#GMX-page .GMX-sideNote {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#GMX-page .GMX-sideNote b {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

#GMX-page .GMX-sideNote p {
  margin: 6px 0 0;
  color: var(--GMX-text-soft);
  font-size: 13px;
  line-height: 1.72;
}

#GMX-page .GMX-planGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  align-items: stretch;
}

#GMX-page .GMX-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--GMX-line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(180deg, #12171d, #0d1116);
  box-shadow: var(--GMX-shadow-soft);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

#GMX-page .GMX-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 230, 0, 0.2);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.36);
}

#GMX-page .GMX-plan::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 94px;
  height: 2px;
  background: linear-gradient(90deg, var(--GMX-gold), transparent);
}

#GMX-page .GMX-planHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
}

#GMX-page .GMX-plan--featured {
  border-color: rgba(248, 230, 0, 0.26);
  background:
    radial-gradient(
      280px 180px at 100% 0%,
      rgba(248, 230, 0, 0.12),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(180deg, #171c22, #101419);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(248, 230, 0, 0.06);
}

#GMX-page .GMX-planTag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

#GMX-page .GMX-planRibbon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GMX-gold) 58%,
    var(--GMX-gold-2) 100%
  );
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 10px 20px rgba(248, 230, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  flex: 0 0 auto;
}

#GMX-page .GMX-priceRow {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 18px;
  white-space: nowrap;
}

#GMX-page .GMX-currency {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--GMX-gold);
  transform: translateY(-6px);
}

#GMX-page .GMX-priceRow strong {
  font-size: clamp(42px, 3vw, 58px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff8cf;
}

#GMX-page .GMX-priceRow small {
  margin-bottom: 6px;
  color: var(--GMX-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

#GMX-page .GMX-planDesc {
  margin: 14px 0 0;
  color: var(--GMX-text-soft);
  font-size: 14px;
  line-height: 1.82;
  min-height: 78px;
}

#GMX-page .GMX-planMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  min-height: 42px;
}

#GMX-page .GMX-planMeta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

#GMX-page .GMX-featureList {
  list-style: none;
  margin: 20px 0 0;
  padding: 20px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#GMX-page .GMX-featureList li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

#GMX-page .GMX-featureList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--GMX-gold);
  box-shadow: 0 0 0 5px rgba(248, 230, 0, 0.08);
}

#GMX-page .GMX-planBottom {
  margin-top: auto;
  padding-top: 22px;
}

#GMX-page .GMX-planBottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

#GMX-page .GMX-planBottomRow span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#GMX-page .GMX-planBottomRow strong {
  color: var(--GMX-gold);
  font-size: 15px;
  font-weight: 800;
}

#GMX-page .GMX-planBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(180deg, #12171d, #0e1217);
  color: #fff;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

#GMX-page .GMX-planBtn:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 230, 0, 0.22);
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#GMX-page .GMX-planBtnText {
  display: grid;
  gap: 3px;
}

#GMX-page .GMX-planBtnText strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

#GMX-page .GMX-planBtnText small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

#GMX-page .GMX-planBtn i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GMX-gold) 60%,
    var(--GMX-gold-2) 100%
  );
  color: #111;
  font-style: normal;
  font-weight: 900;
  font-size: 17px;
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(248, 230, 0, 0.14);
}

@media (max-width: 991px) {
  #GMX-page .GMX-heroWrap {
    grid-template-columns: 1fr;
  }

  #GMX-page .GMX-title {
    max-width: none;
  }
}

@media (max-width: 767px) {
  #GMX-page .GMX-hero {
    padding: calc(var(--GGR-headerTotal, 110px) + 20px) 0 24px;
  }

  #GMX-page .GMX-heroMain,
  #GMX-page .GMX-sideCard,
  #GMX-page .GMX-plan {
    padding: 20px;
  }

  #GMX-page .GMX-title {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 0.96;
  }

  #GMX-page .GMX-sub,
  #GMX-page .GMX-head p {
    font-size: 14px;
    line-height: 1.82;
  }

  #GMX-page .GMX-chipRow {
    grid-template-columns: 1fr;
  }

  #GMX-page .GMX-planHead,
  #GMX-page .GMX-planBottomRow,
  #GMX-page .GMX-sideDealTop {
    flex-direction: column;
    align-items: flex-start;
  }

  #GMX-page .GMX-planDesc {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  #GMX-page .GMX-actions {
    flex-direction: column;
  }

  #GMX-page .GMX-btn {
    width: 100%;
  }

  #GMX-page .GMX-priceRow strong {
    font-size: 40px;
  }

  #GMX-page .GMX-sidePrice strong,
  #GMX-page .GMX-sideDealNow strong {
    font-size: 46px;
  }

  #GMX-page .GMX-shell {
    width: min(var(--GGR-contentW, 1300px), calc(100% - 24px));
  }
}

/* =========================================================
   GMX Popup CSS - Final Premium Version
   Scrollbar visible but refined
   ========================================================= */

.GMX-joinOverlay,
.GMX-joinOverlay * {
  box-sizing: border-box;
}

.GMX-joinOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.GMX-joinOverlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.GMX-joinPanel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 960px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(248, 230, 0, 0.42) rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(
      340px 220px at 100% 0%,
      rgba(248, 230, 0, 0.11),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.024)
    ),
    linear-gradient(180deg, #12171d, #0c1015);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  border-radius: 34px;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.34s ease;
  color: #fff;
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

.GMX-joinPanel::-webkit-scrollbar {
  width: 12px;
}

.GMX-joinPanel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.GMX-joinPanel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  background: linear-gradient(
    180deg,
    rgba(255, 242, 122, 0.9) 0%,
    rgba(248, 230, 0, 0.72) 55%,
    rgba(217, 201, 0, 0.72) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.GMX-joinPanel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 242, 122, 1) 0%,
    rgba(248, 230, 0, 0.9) 55%,
    rgba(217, 201, 0, 0.9) 100%
  );
}

.GMX-joinOverlay.is-open .GMX-joinPanel {
  transform: translateY(0) scale(1);
}

.GMX-joinClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.GMX-joinClose:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(248, 230, 0, 0.18);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.GMX-joinHead {
  padding: 30px 30px 24px;
  padding-right: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.GMX-joinKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.GMX-joinKicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--GGR-gold, #f8e600);
  box-shadow: 0 0 0 6px rgba(248, 230, 0, 0.08);
}

.GMX-joinHead h3 {
  margin: 18px 0 8px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #fff;
}

.GMX-joinHead p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.82;
}

.GMX-joinBody {
  padding: 24px 30px 30px;
  display: grid;
  grid-template-columns: 0.96fr 1.14fr;
  gap: 22px;
  align-items: start;
}

.GMX-joinPlanCard {
  position: sticky;
  top: 0;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(
      220px 150px at 100% 0%,
      rgba(248, 230, 0, 0.12),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(180deg, #161b21, #101419);
  border: 1px solid rgba(248, 230, 0, 0.16);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.GMX-joinPlanCard::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--GGR-gold, #f8e600), transparent);
}

.GMX-joinPlanBadge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GGR-gold, #f8e600) 58%,
    var(--GGR-gold2, #d9c900) 100%
  );
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(248, 230, 0, 0.14);
}

.GMX-joinPlanTop h4 {
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #fff;
}

.GMX-joinPrice {
  margin-top: 10px;
  color: #fff6c7;
  font-size: 20px;
  font-weight: 800;
}

.GMX-joinOfferMini {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(248, 230, 0, 0.08);
  border: 1px solid rgba(248, 230, 0, 0.14);
}

.GMX-joinOfferMini span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}

.GMX-joinOfferMini strong {
  color: #fff7c2;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.GMX-joinOfferMini em {
  color: var(--GGR-gold, #f8e600);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.GMX-joinBenefitWrap {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.GMX-joinMiniLabel {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.GMX-joinBenefits {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.GMX-joinBenefits li {
  position: relative;
  padding: 12px 14px 12px 38px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.GMX-joinBenefits li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--GGR-gold, #f8e600);
  box-shadow: 0 0 0 5px rgba(248, 230, 0, 0.08);
}

.GMX-joinMiniInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.GMX-joinMiniInfoItem {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.GMX-joinMiniInfoItem small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.GMX-joinMiniInfoItem strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.GMX-joinForm {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(180deg, #141920, #0d1116);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.GMX-joinForm::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(248, 230, 0, 0.95), transparent 55%);
  opacity: 0.9;
}

.GMX-formTop {
  margin-bottom: 18px;
}

.GMX-formTop h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
}

.GMX-formTop p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.GMX-fieldGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.GMX-fieldFull {
  grid-column: 1 / -1;
}

.GMX-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.GMX-field input,
.GMX-field textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.GMX-field textarea {
  resize: vertical;
  min-height: 118px;
}

.GMX-field input::placeholder,
.GMX-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.GMX-field input:focus,
.GMX-field textarea:focus {
  border-color: rgba(248, 230, 0, 0.22);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(248, 230, 0, 0.06);
}

.GMX-joinActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.GMX-joinBtn {
  min-height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.GMX-joinBtn:hover {
  transform: translateY(-2px);
}

.GMX-joinBtnPrimary {
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GGR-gold, #f8e600) 58%,
    var(--GGR-gold2, #d9c900) 100%
  );
  color: #111;
  box-shadow:
    0 16px 34px rgba(248, 230, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.GMX-joinBtnGhost {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.GMX-joinNote {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.7;
}

.GMX-joinNote strong {
  color: #fff;
}

body.GMX-popupOpen {
  overflow: hidden;
}

@media (max-width: 900px) {
  .GMX-joinBody {
    grid-template-columns: 1fr;
  }

  .GMX-joinPlanCard {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .GMX-joinOverlay {
    padding: 14px;
  }

  .GMX-joinPanel {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px;
  }

  .GMX-joinHead {
    padding: 22px 18px 18px;
    padding-right: 58px;
  }

  .GMX-joinHead h3 {
    font-size: 28px;
  }

  .GMX-joinBody {
    padding: 18px;
    gap: 16px;
  }

  .GMX-joinPlanCard,
  .GMX-joinForm {
    padding: 18px;
  }

  .GMX-fieldGrid,
  .GMX-joinActions,
  .GMX-joinMiniInfo {
    grid-template-columns: 1fr;
  }
}

/* index offer section start*/
/* ================================
   Gold's Gym Offer Section
   Fully Scoped / No Conflict
   Uses only .GGR-shell for width match
   ================================ */
#GGOF-offerSection,
#GGOF-offerSection * {
  box-sizing: border-box;
}

#GGOF-offerSection {
  --GGOF-bg-1: #07090d;
  --GGOF-bg-2: #0e1520;
  --GGOF-panel: rgba(255, 255, 255, 0.06);
  --GGOF-panel-strong: rgba(255, 255, 255, 0.08);
  --GGOF-line: rgba(255, 255, 255, 0.11);
  --GGOF-line-strong: rgba(248, 230, 0, 0.24);
  --GGOF-text: #ffffff;
  --GGOF-text-soft: rgba(255, 255, 255, 0.74);
  --GGOF-text-muted: rgba(255, 255, 255, 0.58);
  --GGOF-gold: var(--GGR-gold, #f8e600);
  --GGOF-gold-2: var(--GGR-gold2, #d9c900);
  --GGOF-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --GGOF-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.26);

  position: relative;
  padding: 95px 0 85px;
  overflow: hidden;
  color: var(--GGOF-text);
  background:
    radial-gradient(
      700px 320px at 10% 15%,
      rgba(248, 230, 0, 0.08),
      transparent 62%
    ),
    radial-gradient(
      760px 360px at 100% 0%,
      rgba(255, 255, 255, 0.04),
      transparent 62%
    ),
    linear-gradient(180deg, var(--GGOF-bg-1) 0%, var(--GGOF-bg-2) 100%);
}

#GGOF-offerSection::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 92%);
}

#GGOF-offerSection .GGOF-board {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  border-radius: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      420px 220px at 100% 0%,
      rgba(248, 230, 0, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025)
    );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--GGOF-shadow);
  isolation: isolate;
}

#GGOF-offerSection .GGOF-visual {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(
      420px 220px at 18% 12%,
      rgba(248, 230, 0, 0.16),
      transparent 58%
    ),
    linear-gradient(160deg, #10161f 0%, #0b1017 50%, #0a0d12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--GGOF-shadow-soft);
}

#GGOF-offerSection .GGOF-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(248, 230, 0, 0.16),
      transparent 26%
    ),
    radial-gradient(circle at 80% 80%, rgba(248, 230, 0, 0.1), transparent 24%);
  pointer-events: none;
}

#GGOF-offerSection .GGOF-offerCard {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(180deg, rgba(18, 24, 32, 0.92), rgba(10, 14, 19, 0.96));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#GGOF-offerSection .GGOF-offerTag,
#GGOF-offerSection .GGOF-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#GGOF-offerSection .GGOF-offerTag {
  color: #111;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GGOF-gold) 60%,
    var(--GGOF-gold-2) 100%
  );
  box-shadow: 0 12px 24px rgba(248, 230, 0, 0.18);
}

#GGOF-offerSection .GGOF-kicker {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

#GGOF-offerSection .GGOF-miniLabel {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#GGOF-offerSection .GGOF-offerTitle {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

#GGOF-offerSection .GGOF-offerTitle span,
#GGOF-offerSection .GGOF-title span {
  color: var(--GGOF-gold);
}

#GGOF-offerSection .GGOF-offerText,
#GGOF-offerSection .GGOF-copy,
#GGOF-offerSection .GGOF-note {
  margin: 0;
  color: var(--GGOF-text-soft);
  line-height: 1.72;
  font-size: 15px;
}

#GGOF-offerSection .GGOF-priceStack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#GGOF-offerSection .GGOF-priceNow,
#GGOF-offerSection .GGOF-priceOld {
  padding: 16px 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

#GGOF-offerSection .GGOF-priceNow span,
#GGOF-offerSection .GGOF-priceOld span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#GGOF-offerSection .GGOF-priceNow strong,
#GGOF-offerSection .GGOF-priceOld strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

#GGOF-offerSection .GGOF-priceNow {
  border-color: rgba(248, 230, 0, 0.22);
  background:
    radial-gradient(
      220px 120px at 100% 0%,
      rgba(248, 230, 0, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.05);
}

#GGOF-offerSection .GGOF-priceOld strong {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

#GGOF-offerSection .GGOF-savePill {
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GGOF-gold) 60%,
    var(--GGOF-gold-2) 100%
  );
  box-shadow: 0 14px 28px rgba(248, 230, 0, 0.18);
}

#GGOF-offerSection .GGOF-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#GGOF-offerSection .GGOF-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

#GGOF-offerSection .GGOF-copy {
  margin-top: 18px;
  max-width: 68ch;
}

#GGOF-offerSection .GGOF-copy strong {
  color: #fff;
}

#GGOF-offerSection .GGOF-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

#GGOF-offerSection .GGOF-highlight {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

#GGOF-offerSection .GGOF-highlight strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

#GGOF-offerSection .GGOF-highlight span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 600;
}

#GGOF-offerSection .GGOF-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

#GGOF-offerSection .GGOF-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

#GGOF-offerSection .GGOF-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--GGOF-gold), var(--GGOF-gold-2));
  box-shadow: 0 0 0 6px rgba(248, 230, 0, 0.1);
}

#GGOF-offerSection .GGOF-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

#GGOF-offerSection .GGOF-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    filter 0.18s ease;
}

#GGOF-offerSection .GGOF-btn:hover {
  transform: translateY(-2px);
}

#GGOF-offerSection .GGOF-btnPrimary {
  color: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, var(--GGOF-gold-2), var(--GGOF-gold));
  box-shadow: 0 18px 42px rgba(248, 230, 0, 0.14);
}

#GGOF-offerSection .GGOF-btnGhost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

#GGOF-offerSection .GGOF-btnGhost:hover {
  border-color: rgba(248, 230, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

#GGOF-offerSection .GGOF-note {
  margin-top: 16px;
  color: var(--GGOF-text-muted);
  font-size: 13px;
}

/* reveal */
#GGOF-offerSection .GGOF-board {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#GGOF-offerSection.is-visible .GGOF-board {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  #GGOF-offerSection .GGOF-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }

  #GGOF-offerSection .GGOF-offerTitle {
    font-size: clamp(28px, 4vw, 46px);
  }
}

@media (max-width: 991px) {
  #GGOF-offerSection {
    padding: 80px 0 72px;
  }

  #GGOF-offerSection .GGOF-board {
    grid-template-columns: 1fr;
  }

  #GGOF-offerSection .GGOF-highlights {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  #GGOF-offerSection .GGOF-board {
    padding: 18px;
    border-radius: 24px;
  }

  #GGOF-offerSection .GGOF-visual,
  #GGOF-offerSection .GGOF-offerCard {
    border-radius: 20px;
  }

  #GGOF-offerSection .GGOF-title {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.02;
  }

  #GGOF-offerSection .GGOF-offerTitle {
    font-size: clamp(30px, 8vw, 42px);
  }

  #GGOF-offerSection .GGOF-priceStack,
  #GGOF-offerSection .GGOF-highlights {
    grid-template-columns: 1fr;
  }

  #GGOF-offerSection .GGOF-actions {
    flex-direction: column;
  }

  #GGOF-offerSection .GGOF-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #GGOF-offerSection {
    padding: 72px 0 64px;
  }

  #GGOF-offerSection .GGOF-visual,
  #GGOF-offerSection .GGOF-offerCard,
  #GGOF-offerSection .GGOF-highlight,
  #GGOF-offerSection .GGOF-priceNow,
  #GGOF-offerSection .GGOF-priceOld {
    padding-left: 16px;
    padding-right: 16px;
  }

  #GGOF-offerSection .GGOF-copy,
  #GGOF-offerSection .GGOF-offerText,
  #GGOF-offerSection .GGOF-list li {
    font-size: 14px;
  }
}
/* index offer section end */
/* whatsapp floating button Start*/
/* ===========================
   GGWFX - WhatsApp Floating Dock
   Clean improved version
   =========================== */

#GGWFX-whatsappDock,
#GGWFX-whatsappDock * {
  box-sizing: border-box;
}

#GGWFX-whatsappDock {
  --GGWFX-gold: #f8e600;
  --GGWFX-gold-2: #d9c900;
  --GGWFX-green-1: #2fe06f;
  --GGWFX-green-2: #19b65a;
  --GGWFX-dark-1: #0b1220;
  --GGWFX-dark-2: #111a2a;
  --GGWFX-text: #ffffff;
  --GGWFX-text-soft: rgba(255, 255, 255, 0.76);
  --GGWFX-text-muted: rgba(255, 255, 255, 0.56);
  --GGWFX-line: rgba(255, 255, 255, 0.1);
  --GGWFX-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --GGWFX-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);

  position: fixed;
  right: clamp(12px, 1.8vw, 24px);
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  pointer-events: none;
}

#GGWFX-whatsappDock .GGWFX-chatGhost,
#GGWFX-whatsappDock .GGWFX-launcher {
  pointer-events: auto;
}

/* chat bubble */
#GGWFX-whatsappDock .GGWFX-chatGhost {
  position: relative;
  width: min(320px, calc(100vw - 24px));
  border-radius: 22px;
  padding: 16px 16px 18px;
  color: var(--GGWFX-text);
  background:
    radial-gradient(
      180px 120px at 0% 0%,
      rgba(248, 230, 0, 0.14),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(20, 29, 45, 0.96), rgba(10, 16, 27, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--GGWFX-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  user-select: none;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.36s ease,
    transform 0.36s ease,
    visibility 0.36s ease,
    filter 0.36s ease;
  overflow: visible;
}

#GGWFX-whatsappDock.GGWFX-is-visible .GGWFX-chatGhost {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#GGWFX-whatsappDock .GGWFX-chatGhost:hover {
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1);
}

#GGWFX-whatsappDock .GGWFX-chatGhost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%),
    radial-gradient(
      140px 90px at 85% 12%,
      rgba(47, 224, 111, 0.12),
      transparent 70%
    );
  pointer-events: none;
}

/* subtle connector */
#GGWFX-whatsappDock .GGWFX-chatGhost::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -18px;
  width: 72px;
  height: 34px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(17, 26, 42, 0.98),
    rgba(8, 14, 24, 0.98)
  );
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 38% 100%, 0 56%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  z-index: 0;
}

/* close button */
#GGWFX-whatsappDock .GGWFX-chatClose {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

#GGWFX-whatsappDock .GGWFX-chatClose:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: rotate(90deg);
}

/* head */
#GGWFX-whatsappDock .GGWFX-chatHead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 30px;
}

#GGWFX-whatsappDock .GGWFX-avatarWrap {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

#GGWFX-whatsappDock .GGWFX-avatarGlow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 224, 111, 0.22),
    transparent 70%
  );
  animation: GGWFX-avatarPulse 2.8s ease-in-out infinite;
}

#GGWFX-whatsappDock .GGWFX-avatar {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    #fff27a 0%,
    var(--GGWFX-gold) 60%,
    var(--GGWFX-gold-2) 100%
  );
  box-shadow: 0 8px 18px rgba(248, 230, 0, 0.24);
  overflow: hidden;
}

#GGWFX-whatsappDock .GGWFX-avatarImg {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
}

#GGWFX-whatsappDock .GGWFX-chatMeta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#GGWFX-whatsappDock .GGWFX-chatMeta strong {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

#GGWFX-whatsappDock .GGWFX-chatMeta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--GGWFX-text-soft);
}

/* body */
#GGWFX-whatsappDock .GGWFX-chatBody {
  position: relative;
  margin-top: 12px;
  min-height: 88px;
  display: flex;
  align-items: flex-start;
}

#GGWFX-whatsappDock .GGWFX-chatLine {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

#GGWFX-whatsappDock .GGWFX-msgPill {
  margin: 0;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 6px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(245, 247, 250, 0.96)
  );
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

#GGWFX-whatsappDock .GGWFX-msgTime {
  padding-left: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--GGWFX-text-muted);
  transition: opacity 0.22s ease;
}

#GGWFX-whatsappDock .GGWFX-chatGhost.GGWFX-flash .GGWFX-msgPill {
  transform: translateY(-2px);
}

#GGWFX-whatsappDock .GGWFX-typing {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 14px 14px 14px 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 2;
}

#GGWFX-whatsappDock .GGWFX-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.45;
  animation: GGWFX-typingDots 0.9s ease-in-out infinite;
}

#GGWFX-whatsappDock .GGWFX-typing span:nth-child(2) {
  animation-delay: 0.12s;
}

#GGWFX-whatsappDock .GGWFX-typing span:nth-child(3) {
  animation-delay: 0.24s;
}

#GGWFX-whatsappDock .GGWFX-chatGhost.GGWFX-is-typing .GGWFX-typing {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#GGWFX-whatsappDock .GGWFX-chatGhost.GGWFX-is-typing .GGWFX-msgPill {
  opacity: 0;
  transform: translateY(-2px);
}

#GGWFX-whatsappDock .GGWFX-chatGhost.GGWFX-is-typing .GGWFX-msgTime {
  opacity: 0;
}

/* launcher */
#GGWFX-whatsappDock .GGWFX-launcher {
  position: relative;
  margin-top: -6px;
  margin-right: 10px;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: linear-gradient(
    180deg,
    rgba(15, 21, 32, 0.98),
    rgba(7, 12, 20, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--GGWFX-shadow-soft);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    filter 0.26s ease;
  animation: GGWFX-launcherFloat 3.8s ease-in-out infinite;
  z-index: 2;
}

#GGWFX-whatsappDock .GGWFX-launcher::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--GGWFX-green-1),
    var(--GGWFX-green-2)
  );
  z-index: -1;
}

#GGWFX-whatsappDock .GGWFX-launcher:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(248, 230, 0, 0.28);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    0 0 0 8px rgba(47, 224, 111, 0.08);
  filter: brightness(1.04);
}

#GGWFX-whatsappDock .GGWFX-launcherRing {
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px solid rgba(248, 230, 0, 0.16);
  animation: GGWFX-ringPulse 2.4s ease-out infinite;
}

#GGWFX-whatsappDock .GGWFX-launcherShine {
  position: absolute;
  top: -40%;
  left: -55%;
  width: 58%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: rotate(18deg);
  animation: GGWFX-shineMove 3.2s linear infinite;
}

#GGWFX-whatsappDock .GGWFX-iconCustom {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}

/* tablet */
@media (max-width: 767px) {
  #GGWFX-whatsappDock {
    right: 10px;
    bottom: 10px;
    gap: 5px;
  }

  #GGWFX-whatsappDock .GGWFX-chatGhost {
    width: min(292px, calc(100vw - 18px));
    padding: 14px 14px 16px;
    border-radius: 20px;
  }

  #GGWFX-whatsappDock .GGWFX-chatGhost::after {
    right: 20px;
    width: 66px;
    height: 30px;
    bottom: -16px;
  }

  #GGWFX-whatsappDock .GGWFX-launcher {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    margin-right: 8px;
    margin-top: -4px;
  }

  #GGWFX-whatsappDock .GGWFX-launcher::before {
    inset: 5px;
    border-radius: 16px;
  }

  #GGWFX-whatsappDock .GGWFX-iconCustom {
    width: 29px;
    height: 29px;
  }

  #GGWFX-whatsappDock .GGWFX-msgPill {
    font-size: 13.5px;
  }

  #GGWFX-whatsappDock .GGWFX-avatarWrap,
  #GGWFX-whatsappDock .GGWFX-avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  #GGWFX-whatsappDock .GGWFX-chatBody {
    min-height: 82px;
  }

  #GGWFX-whatsappDock .GGWFX-typing {
    min-height: 40px;
    padding: 10px 12px;
  }
}

/* mobile */
@media (max-width: 479px) {
  #GGWFX-whatsappDock {
    right: 8px;
    bottom: 8px;
  }

  #GGWFX-whatsappDock .GGWFX-chatGhost {
    width: min(270px, calc(100vw - 16px));
    padding: 13px 13px 15px;
    border-radius: 18px;
  }

  #GGWFX-whatsappDock .GGWFX-chatGhost::after {
    right: 17px;
    width: 58px;
    height: 26px;
    bottom: -14px;
  }

  #GGWFX-whatsappDock .GGWFX-chatBody {
    min-height: 78px;
  }

  #GGWFX-whatsappDock .GGWFX-chatMeta strong {
    font-size: 13px;
  }

  #GGWFX-whatsappDock .GGWFX-chatMeta span,
  #GGWFX-whatsappDock .GGWFX-msgTime {
    font-size: 11px;
  }

  #GGWFX-whatsappDock .GGWFX-msgPill {
    font-size: 13px;
    padding: 11px 13px;
    line-height: 1.4;
  }

  #GGWFX-whatsappDock .GGWFX-typing {
    min-height: 38px;
    padding: 9px 11px;
  }

  #GGWFX-whatsappDock .GGWFX-launcher {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-right: 6px;
  }

  #GGWFX-whatsappDock .GGWFX-iconCustom {
    width: 27px;
    height: 27px;
  }
}

/* extra small */
@media (max-width: 360px) {
  #GGWFX-whatsappDock .GGWFX-chatGhost {
    width: min(250px, calc(100vw - 14px));
  }

  #GGWFX-whatsappDock .GGWFX-msgPill {
    font-size: 12.5px;
  }

  #GGWFX-whatsappDock .GGWFX-launcher {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  #GGWFX-whatsappDock .GGWFX-iconCustom {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #GGWFX-whatsappDock .GGWFX-launcher,
  #GGWFX-whatsappDock .GGWFX-launcherRing,
  #GGWFX-whatsappDock .GGWFX-launcherShine,
  #GGWFX-whatsappDock .GGWFX-avatarGlow,
  #GGWFX-whatsappDock .GGWFX-typing span {
    animation: none !important;
  }

  #GGWFX-whatsappDock .GGWFX-chatGhost,
  #GGWFX-whatsappDock .GGWFX-launcher,
  #GGWFX-whatsappDock .GGWFX-msgPill,
  #GGWFX-whatsappDock .GGWFX-typing {
    transition: none !important;
  }
}

@keyframes GGWFX-launcherFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes GGWFX-ringPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes GGWFX-shineMove {
  0% {
    left: -55%;
  }
  100% {
    left: 140%;
  }
}

@keyframes GGWFX-typingDots {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes GGWFX-avatarPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}
/* Whatsapp Floating Button End*/
/* new gallery styles */
/* =========================================
   GGSO - Gold's Gym Special Offer Section
   Fully scoped / unique / conflict-safe
   ========================================= */

#GGSO-offerSection,
#GGSO-offerSection * {
  box-sizing: border-box;
}

#GGSO-offerSection {
  --GGSO-bg-1: #07101c;
  --GGSO-bg-2: #0c1625;
  --GGSO-panel: rgba(255, 255, 255, 0.05);
  --GGSO-panel-2: rgba(255, 255, 255, 0.07);
  --GGSO-line: rgba(255, 255, 255, 0.1);
  --GGSO-line-2: rgba(248, 230, 0, 0.18);
  --GGSO-text: #ffffff;
  --GGSO-text-soft: rgba(255, 255, 255, 0.78);
  --GGSO-text-muted: rgba(255, 255, 255, 0.58);
  --GGSO-gold: #f8e600;
  --GGSO-gold-2: #d9c900;
  --GGSO-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --GGSO-shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.2);

  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background:
    radial-gradient(
      620px 320px at 0% 0%,
      rgba(248, 230, 0, 0.08),
      transparent 62%
    ),
    radial-gradient(
      700px 380px at 100% 0%,
      rgba(255, 255, 255, 0.03),
      transparent 64%
    ),
    linear-gradient(180deg, var(--GGSO-bg-1), var(--GGSO-bg-2));
  color: var(--GGSO-text);
}

#GGSO-offerSection::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
}

#GGSO-offerSection .GGSO-shell {
  width: min(1300px, calc(100% - 36px));
  margin: 0 auto;
}

#GGSO-offerSection .GGSO-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      280px 180px at 85% 10%,
      rgba(248, 230, 0, 0.08),
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--GGSO-shadow);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

#GGSO-offerSection.GGSO-is-visible .GGSO-wrap {
  opacity: 1;
  transform: translateY(0);
}

#GGSO-offerSection .GGSO-content {
  max-width: 760px;
}

#GGSO-offerSection .GGSO-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

#GGSO-offerSection .GGSO-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #f5f7fa;
  max-width: 15ch;
}

#GGSO-offerSection .GGSO-title span {
  color: var(--GGSO-gold);
}

#GGSO-offerSection .GGSO-text {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.8;
  color: var(--GGSO-text-soft);
}

#GGSO-offerSection .GGSO-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#GGSO-offerSection .GGSO-point {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--GGSO-shadow-soft);
}

#GGSO-offerSection .GGSO-point::before {
  content: "✓";
  margin-right: 8px;
  color: var(--GGSO-gold);
  font-weight: 900;
}

#GGSO-offerSection .GGSO-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

#GGSO-offerSection .GGSO-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

#GGSO-offerSection .GGSO-btn:hover {
  transform: translateY(-2px);
}

#GGSO-offerSection .GGSO-btnPrimary {
  color: #0c1016;
  background: linear-gradient(180deg, var(--GGSO-gold), var(--GGSO-gold-2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(248, 230, 0, 0.14);
}

#GGSO-offerSection .GGSO-btnGhost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#GGSO-offerSection .GGSO-btnGhost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 230, 0, 0.24);
}

#GGSO-offerSection .GGSO-card {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      240px 150px at 100% 0%,
      rgba(248, 230, 0, 0.08),
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: var(--GGSO-shadow-soft);
}

#GGSO-offerSection .GGSO-cardLabel {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#GGSO-offerSection .GGSO-planName {
  margin-top: 18px;
  color: #f5f7fa;
  font-size: 20px;
  font-weight: 800;
}

#GGSO-offerSection .GGSO-priceNow {
  margin-top: 10px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--GGSO-gold);
}

#GGSO-offerSection .GGSO-priceRow,
#GGSO-offerSection .GGSO-saveRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#GGSO-offerSection .GGSO-priceText,
#GGSO-offerSection .GGSO-saveTag {
  color: var(--GGSO-text-soft);
  font-size: 15px;
  font-weight: 700;
}

#GGSO-offerSection .GGSO-priceOld {
  color: rgba(255, 255, 255, 0.55);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

#GGSO-offerSection .GGSO-saveValue {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#GGSO-offerSection .GGSO-note {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--GGSO-text-soft);
}

#GGSO-offerSection .GGSO-miniStats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

#GGSO-offerSection .GGSO-miniStat {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#GGSO-offerSection .GGSO-miniStat strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

#GGSO-offerSection .GGSO-miniStat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--GGSO-text-muted);
  font-weight: 600;
}

#GGSO-offerSection .GGSO-btnBlock {
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 991px) {
  #GGSO-offerSection {
    padding: 76px 0;
  }

  #GGSO-offerSection .GGSO-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
  }

  #GGSO-offerSection .GGSO-title {
    max-width: 14ch;
  }

  #GGSO-offerSection .GGSO-card {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  #GGSO-offerSection .GGSO-shell {
    width: min(100%, calc(100% - 20px));
  }

  #GGSO-offerSection .GGSO-wrap {
    padding: 20px;
    border-radius: 24px;
  }

  #GGSO-offerSection .GGSO-kicker {
    min-height: 38px;
    padding: 0 15px;
    font-size: 11px;
  }

  #GGSO-offerSection .GGSO-title {
    font-size: clamp(30px, 8vw, 46px);
    max-width: 13ch;
  }

  #GGSO-offerSection .GGSO-text {
    font-size: 15px;
    line-height: 1.7;
  }

  #GGSO-offerSection .GGSO-point {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }

  #GGSO-offerSection .GGSO-actions {
    flex-direction: column;
  }

  #GGSO-offerSection .GGSO-btn {
    width: 100%;
  }

  #GGSO-offerSection .GGSO-card {
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  #GGSO-offerSection .GGSO-priceNow {
    font-size: clamp(38px, 11vw, 58px);
  }

  #GGSO-offerSection .GGSO-priceOld,
  #GGSO-offerSection .GGSO-saveValue {
    font-size: 22px;
  }
}

@media (max-width: 479px) {
  #GGSO-offerSection {
    padding: 64px 0;
  }

  #GGSO-offerSection .GGSO-wrap {
    padding: 16px;
  }

  #GGSO-offerSection .GGSO-miniStats {
    grid-template-columns: 1fr;
  }

  #GGSO-offerSection .GGSO-priceRow,
  #GGSO-offerSection .GGSO-saveRow {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Program card popup start */
body.gppm-lock {
  overflow: hidden !important;
}

.gppm-modal,
.gppm-modal * {
  box-sizing: border-box;
}

.gppm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

.gppm-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gppm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gppm-dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  margin: 14px auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      760px 280px at 0% 0%,
      rgba(248, 230, 0, 0.07),
      transparent 58%
    ),
    linear-gradient(180deg, #0b1119 0%, #101827 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.gppm-scroll {
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  overflow-x: hidden;
}

.gppm-scroll::-webkit-scrollbar {
  width: 8px;
}

.gppm-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.gppm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 13, 20, 0.76);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.gppm-close:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.gppm-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.gppm-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gppm-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* HERO */
.gppm-hero {
  position: relative;
  min-height: 250px;
  padding: 76px 28px 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gppm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gppm-hero-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  transform: scale(1.04);
}

.gppm-heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 11, 18, 0.46) 0%,
      rgba(7, 11, 18, 0.22) 48%,
      rgba(7, 11, 18, 0.3) 100%
    ),
    linear-gradient(180deg, rgba(7, 11, 18, 0.02) 0%, rgba(7, 11, 18, 0.1) 100%);
}

.gppm-heroContent {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.gppm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gppm-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--GGR-gold, #f8e600);
}

.gppm-title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-transform: uppercase;
}

.gppm-subtitle {
  margin: 14px 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.gppm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gppm-pill,
.gppm-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
}

.gppm-heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* BODY */
.gppm-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  padding: 20px 28px 28px;
  align-items: start;
}

.gppm-main,
.gppm-side {
  min-width: 0;
}

.gppm-main {
  display: grid;
  gap: 18px;
  align-content: start;
  grid-auto-rows: min-content;
}

.gppm-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.gppm-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gppm-cardHead {
  margin-bottom: 12px;
}

.gppm-cardHead h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gppm-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.84;
  font-weight: 500;
}

.gppm-featureGrid,
.gppm-expectGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gppm-featureItem,
.gppm-expectItem {
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gppm-featureItem h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.gppm-featureItem p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.68;
  font-weight: 500;
}

.gppm-expectItem span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gppm-expectItem strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.gppm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* sidebar */
.gppm-quickList {
  display: grid;
  gap: 10px;
}

.gppm-quickItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gppm-quickItem span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gppm-quickItem strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  text-align: right;
}

.gppm-accessBox strong {
  display: block;
  color: var(--GGR-gold, #f8e600);
  font-size: 22px;
  line-height: 1.14;
  font-weight: 800;
}

.gppm-accessBox p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.68;
  font-weight: 500;
}

.gppm-planGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gppm-planCard {
  padding: 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.gppm-planCard span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gppm-planCard strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.gppm-planFeatured {
  border-color: rgba(248, 230, 0, 0.28);
}

.gppm-planFeatured strong {
  color: var(--GGR-gold, #f8e600);
}

.gppm-planCard small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.gppm-planNote {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.68;
  font-weight: 500;
}

.gppm-sideBtns {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.gppm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.gppm-btn:hover {
  transform: translateY(-2px);
}

.gppm-btnPrimary {
  background: linear-gradient(
    180deg,
    var(--GGR-gold2, #d9c900),
    var(--GGR-gold, #f8e600)
  );
  color: #111;
}

.gppm-btnGhost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

/* responsive */
@media (max-width: 991px) {
  .gppm-dialog {
    width: min(100%, calc(100% - 16px));
    max-height: calc(100dvh - 16px);
    margin: 8px auto;
    border-radius: 20px;
  }

  .gppm-scroll {
    max-height: calc(100dvh - 16px);
  }

  .gppm-body {
    grid-template-columns: 1fr;
    padding: 18px 20px 20px;
  }

  .gppm-hero {
    min-height: 235px;
    padding: 74px 20px 20px;
  }
}

@media (max-width: 767px) {
  .gppm-title {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.02;
  }

  .gppm-subtitle,
  .gppm-text {
    font-size: 14px;
    line-height: 1.76;
  }

  .gppm-featureGrid,
  .gppm-expectGrid,
  .gppm-planGrid {
    grid-template-columns: 1fr;
  }

  .gppm-card {
    padding: 16px;
  }

  .gppm-body {
    gap: 16px;
    padding: 16px;
  }

  .gppm-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 575px) {
  .gppm-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: 0;
  }

  .gppm-scroll {
    max-height: 100dvh;
  }

  .gppm-heroActions,
  .gppm-sideBtns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gppm-heroActions .gppm-btn,
  .gppm-sideBtns .gppm-btn {
    width: 100%;
  }

  .gppm-quickItem {
    flex-direction: column;
    align-items: flex-start;
  }

  .gppm-quickItem strong {
    text-align: left;
  }
}
/* Program card popup end */

/* New Testimonial Section Start */
/* =========================================
   Premium Testimonials Body Only
   Prefix: GGR26TST
   Old section + old heading remains unchanged
========================================= */

.GGR26TST-slider {
  --GGR26TST-gold: var(--GGR-gold, #f8e600);
  --GGR26TST-gold2: var(--GGR-gold2, #d9c900);

  position: relative;
  margin-top: 8px;
  z-index: 2;
}

.GGR26TST-viewport {
  width: 100%;
  overflow: hidden;
}

.GGR26TST-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.GGR26TST-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 335px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(248, 230, 0, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(8, 9, 13, 0.72);
  box-shadow: none;
}

.GGR26TST-top {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  margin-bottom: 22px;
}

.GGR26TST-top img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(248, 230, 0, 0.82);
  background: #111;
  box-shadow: none;
}

.GGR26TST-info {
  min-width: 0;
}

.GGR26TST-info h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.GGR26TST-info p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.GGR26TST-stars {
  color: var(--GGR26TST-gold2);
  font-size: 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 3px;
}

.GGR26TST-review {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-height: 136px;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.GGR26TST-read {
  margin-top: auto;
  padding: 22px 0 0;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--GGR26TST-gold);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.GGR26TST-read::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.25s ease;
}

.GGR26TST-read:hover::after {
  transform: translateX(4px);
}

.GGR26TST-arrow {
  position: absolute;
  top: 45%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(248, 230, 0, 0.55);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.78);
  color: var(--GGR26TST-gold);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  box-shadow: none;
}

.GGR26TST-arrow:hover {
  background: rgba(248, 230, 0, 0.13);
  border-color: rgba(248, 230, 0, 0.9);
}

.GGR26TST-prev {
  left: -24px;
}

.GGR26TST-next {
  right: -24px;
}

.GGR26TST-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.GGR26TST-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.GGR26TST-dot.GGR26TST-active {
  width: 28px;
  background: var(--GGR26TST-gold);
}

/* Modal */
.GGR26TST-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  place-items: center;
  padding: 20px;
}

.GGR26TST-modal.GGR26TST-open {
  display: grid;
}

.GGR26TST-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.GGR26TST-dialog {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  max-height: 78vh;
  overflow-y: auto;
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(248, 230, 0, 0.38);
  background: #08090d;
  box-shadow: none;
}

.GGR26TST-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.GGR26TST-modalStars {
  color: var(--GGR26TST-gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.GGR26TST-dialog h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 45px 6px 0;
}

.GGR26TST-modalRole {
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 20px;
}

.GGR26TST-modalText {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}

html.GGR26TST-lock,
html.GGR26TST-lock body {
  overflow: hidden;
}

/* Tablet */
@media (max-width: 1199px) {
  .GGR26TST-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .GGR26TST-prev {
    left: -12px;
  }

  .GGR26TST-next {
    right: -12px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .GGR26TST-card {
    flex-basis: 100%;
    min-height: 320px;
    padding: 22px;
    border-radius: 20px;
  }

  .GGR26TST-top {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .GGR26TST-stars {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .GGR26TST-top img {
    width: 58px;
    height: 58px;
  }

  .GGR26TST-info h3 {
    font-size: 18px;
  }

  .GGR26TST-review {
    font-size: 15px;
    line-height: 1.65;
    max-height: 124px;
  }

  .GGR26TST-arrow {
    display: none;
  }

  .GGR26TST-dialog {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .GGR26TST-dialog h3 {
    font-size: 24px;
  }

  .GGR26TST-modalText {
    font-size: 15px;
  }
}
/* New Testimonial Section End */
