.gg-about-us {
  color: rgba(255, 255, 255, 0.82);
}

.gg-about-us__wrap {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}

.gg-about-us__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 360px at 18% 18%,
      rgba(39, 244, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 78% 16%,
      rgba(255, 122, 24, 0.11),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(7, 11, 31, 0.92), rgba(5, 8, 22, 0.98));
  z-index: 0;
}

.gg-about-us__container {
  position: relative;
  z-index: 1;
  max-width: min(1400px, calc(100vw - 80px));
  margin: 0 auto;
}

.gg-about-us__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px; /* more separation */
  align-items: center; /* vertical centering */
}

/* LEFT */
.gg-about-us__left {
  min-width: 0;
}

.gg-about-us__title {
  margin: 0 0 26px;
  font-family:
    "Orbitron",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 64px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 18px rgba(255, 122, 24, 0.18),
    0 0 26px rgba(39, 244, 255, 0.1);
}

.gg-about-us__content {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 78ch;
}

.gg-about-us__content p {
  margin: 0 0 22px;
}

.gg-about-us__content p:last-child {
  margin-bottom: 0;
}

/* RIGHT */
.gg-about-us__right {
  min-width: 0;
}

.gg-about-us__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      900px 240px at 20% 20%,
      rgba(39, 244, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 240px at 80% 20%,
      rgba(255, 122, 24, 0.1),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);

  /* Photo */
  background-size: cover;
  background-position: center;

  /* Shape */
  min-height: 520px;
}

.gg-about-us__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.gg-about-us__photo {
  min-height: 520px;
  width: 100%;
}

.gg-about-us__photo-caption {
  margin-top: 18px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;

  text-shadow:
    0 0 10px rgba(255, 122, 24, 0.25),
    0 0 18px rgba(39, 244, 255, 0.15);
}

.gg-about-us__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 22, 0.15),
    rgba(5, 8, 22, 0.65)
  );
}

.gg-about-us__thanks-title {
  font-family:
    "Orbitron",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 12px rgba(255, 122, 24, 0.18);
}

/* =========================================================
   About Us – Contact CTA section
   ========================================================= */

.gg-about-us__contact {
  position: relative;
  padding: 88px 0 96px;
  text-align: center;
}

.gg-about-us__contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.gg-about-us__contact-title {
  margin: 0 0 28px;

  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.92);

  text-shadow:
    0 0 12px rgba(255, 122, 24, 0.25),
    0 0 18px rgba(39, 244, 255, 0.18);
}

/* Contact button (SVG swap on hover) */
.gg-about-us__contact-btn {
  display: inline-block;
  line-height: 0;
}

.gg-about-us__contact-btn-img {
  display: block;
  width: 220px; /* adjust to match your SVG */
  height: 64px;

  background-image: url("../img/contact-us-default.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.gg-about-us__contact-btn:hover .gg-about-us__contact-btn-img,
.gg-about-us__contact-btn:focus-visible .gg-about-us__contact-btn-img {
  background-image: url("../img/contact-us-hover.svg");
  transform: translateY(-1px);
}

.gg-about-us__contact-btn:focus-visible {
  outline: none;
}

/* Mobile */
@media (max-width: 900px) {
  .gg-about-us__contact {
    padding: 64px 0 72px;
  }

  .gg-about-us__contact-title {
    font-size: 18px;
  }

  .gg-about-us__contact-btn-img {
    width: 200px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 950px) {
  .gg-about-us__container {
    max-width: calc(100vw - 48px);
  }

  .gg-about-us__wrap {
    padding: 56px 0 64px;
  }

  .gg-about-us__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gg-about-us__content {
    max-width: 70ch;
  }

  .gg-about-us__photo {
    min-height: 360px;
  }
}
