/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 8 â€” GLOBAL PRESENCE & FOOTER
   Scoped under .gf prefix
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.gf {
  background: #080812;
  position: relative;
  overflow: hidden;
}

/* Subtle top border glow */
.gf::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(91,79,232,.5) 30%,
    rgba(139,92,246,.5) 70%,
    transparent);
}

/* Ambient glow blobs */
.gf__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.gf__blob--1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(91,79,232,.08) 0%, transparent 65%);
}
.gf__blob--2 {
  width: 500px; height: 500px;
  bottom: 100px; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,.06) 0%, transparent 65%);
}

/* Dot grid */
.gf__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.gf__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ROW 1 â€” MAIN CONTACT DATA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gf__contact {
  padding: 100px 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Eyebrow */
.gf__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 36px;
}
.gf__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #5B4FE8;
  box-shadow: 0 0 8px rgba(91,79,232,.8);
  flex-shrink: 0;
  animation: gfBlink 2.5s ease-in-out infinite;
}
@keyframes gfBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px rgba(91,79,232,.8); }
  50%      { opacity: .4; box-shadow: 0 0 4px rgba(91,79,232,.3); }
}
.gf__eyebrow-grad {
  background: linear-gradient(135deg, #5B4FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Big contact info */
.gf__contact-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

/* Email â€” click to copy */
.gf__email-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.gf__email {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all .25s;
  line-height: 1.3;
  padding-bottom: 4px;
  position: relative;
  display: inline-block;
}
.gf__email::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #5B4FE8, #8B5CF6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.gf__email:hover::after { transform: scaleX(1); }
.gf__email:hover {
  background: linear-gradient(135deg, #5B4FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tooltip */
.gf__tooltip {
  position: absolute;
  top: -44px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(91,79,232,.95);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 6px 13px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 10;
}
.gf__tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(91,79,232,.95);
  border-bottom: none;
}
.gf__tooltip svg { width: 11px; height: 11px; }
.gf__tooltip.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.gf__email-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.25);
  letter-spacing: .4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gf__email-hint svg { width: 11px; height: 11px; }

/* Divider */
.gf__contact-sep {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* Phone */
.gf__phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.gf__phone:hover { color: #a89ff7; }
.gf__phone-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.25);
  letter-spacing: .4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ROW 2 â€” GLOBAL OFFICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gf__offices {
  padding: 0 0 48px;
}

/* Subheading */
.gf__offices-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.gf__offices-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -.5px;
  line-height: 1.25;
}
.gf__offices-title span {
  background: linear-gradient(135deg, #5B4FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gf__offices-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.02);
}

/* Offices grid */
.gf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* Office card */
.gf__office {
  padding: 28px 26px 32px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.gf__office::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #5B4FE8, #8B5CF6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.gf__office:hover {
  background: rgba(91,79,232,.06);
  border-color: rgba(91,79,232,.2);
  transform: translateY(-4px);
}
.gf__office:hover::before { transform: scaleX(1); }

/* Flag */
.gf__flag {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  background: rgba(255,255,255,.04);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: border-color .25s;
}
.gf__flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gf__office:hover .gf__flag { border-color: rgba(91,79,232,.35); }

/* Office type label */
.gf__office-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(91,79,232,.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gf__office-type::before {
  content: '';
  width: 14px; height: 1px;
  background: rgba(91,79,232,.5);
  display: inline-block;
}

/* City */
.gf__city {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* Country */
.gf__country {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .3px;
  margin-bottom: 12px;
}

/* Address */
.gf__address {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,.28);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   ROW 3 — FAT NAVIGATION
════════════════════════════════════════════════════════════ */
.gf__fat-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 48px 40px;
  margin-bottom: 32px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}

.gf__fat-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5B4FE8, #8B5CF6, rgba(91,79,232,.2));
  opacity: 0.8;
}

.gf__fat-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.2px;
  position: relative;
  display: inline-block;
}

.gf__fat-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #5B4FE8, #8B5CF6);
  border-radius: 2px;
}

.gf__fat-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gf__fat-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s, transform .25s;
  display: inline-block;
}

.gf__fat-col ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ════════════════════════════════════════════════════════════
   ROW 4 — BOTTOM FOOTER BAR
════════════════════════════════════════════════════════════ */
.gf__bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gf__bar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Logo group (logo + clutch badge) */
.gf__logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

/* Logo */
.gf__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.gf__logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #5B4FE8, #8B5CF6);
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(91,79,232,.4);
  transition: transform .2s, box-shadow .2s;
}
.gf__logo:hover .gf__logo-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(91,79,232,.55);
}
.gf__logo-mark svg { width: 18px; height: 18px; }
.gf__logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
}
.gf__logo-name span {
  background: linear-gradient(135deg, #5B4FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav links */
.gf__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.gf__nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color .2s, background .2s;
  letter-spacing: .2px;
}
.gf__nav a:hover {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.05);
}

/* Social icons */
.gf__socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.gf__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s;
  position: relative;
}
.gf__social:hover {
  background: rgba(91,79,232,.18);
  border-color: rgba(91,79,232,.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91,79,232,.2);
}
.gf__social svg { width: 15px; height: 15px; }

/* Social tooltips */
.gf__social::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15,15,45,.95);
  color: rgba(255,255,255,.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  border: 1px solid rgba(255,255,255,.07);
  letter-spacing: .3px;
}
.gf__social:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bottom copyright row */
.gf__bar-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.04);
  flex-wrap: wrap;
}
.gf__copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.2);
  letter-spacing: .3px;
}
.gf__copy strong { color: rgba(255,255,255,.35); font-weight: 600; }

.gf__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.gf__legal-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.2);
  text-decoration: none;
  letter-spacing: .3px;
  transition: color .2s;
}
.gf__legal-links a:hover { color: rgba(255,255,255,.55); }

.gf__clutch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid rgba(15,15,45,0.06);
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15,15,45,0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.gf__clutch-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(15,15,45,0.08);
  border-color: rgba(255, 61, 46, 0.3);
  background: #fff;
}
.gf__clutch-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: #6B7280;
  letter-spacing: 0.2px;
}
.gf__clutch-text strong {
  color: #0F0F2D;
  font-weight: 800;
}
.gf__clutch-stars {
  display: flex;
  gap: 2px;
  color: #ff3d2e;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.gf-reveal.is-vis { opacity: 1; transform: translateY(0); }
.gf-reveal-d1 { transition-delay: .08s; }
.gf-reveal-d2 { transition-delay: .16s; }
.gf-reveal-d3 { transition-delay: .24s; }
.gf-reveal-d4 { transition-delay: .32s; }
.gf-reveal-d5 { transition-delay: .40s; }
.gf-reveal-d6 { transition-delay: .48s; }
.gf-reveal-d7 { transition-delay: .56s; }
.gf-reveal-d8 { transition-delay: .64s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1100px) {
  .gf__wrap  { padding: 0 32px; }
  .gf__grid  { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gf__fat-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .gf__grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gf__fat-nav { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}
@media (max-width: 768px) {
  .gf__wrap          { padding: 0 20px; }
  .gf__contact       { padding: 72px 0 64px; }
  .gf__contact-sep   { display: none; }
  .gf__contact-cluster { flex-direction: column; gap: 36px; }
  .gf__email         { font-size: 16px; }
  .gf__phone         { font-size: 16px; }
  .gf__grid          { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gf__offices       { padding-bottom: 32px; }
  .gf__offices-head  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gf__fat-nav       { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; padding: 32px 24px; margin-bottom: 24px; }
  .gf__bar-main      { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gf__bar-bottom    { flex-direction: column; align-items: flex-start; }
  .gf__nav           { justify-content: flex-start; margin-top: 8px; gap: 8px; }
}
@media (max-width: 480px) {
  .gf__grid { grid-template-columns: 1fr 1fr; }
  .gf__fat-nav { grid-template-columns: 1fr; gap: 32px; padding: 24px 20px; }
}
