/* ============ GPC HERO (WPBakery) ============ */
.gpc-hero-row{
  padding: clamp(36px, 6vw, 20px) 0;
}

.gpc-hero-row .vc_row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gpc-hero-left, .gpc-hero-right{
  padding-top: 12px;
  padding-bottom: 12px;
}

.gpc-hero-copy{
  max-width: 640px;
}

.gpc-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FFB000;
  font-size: 13px;
  opacity: .95;
  margin-bottom: 18px;
}

.gpc-hero-copy h1{
  margin: 0 0 14px 0;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  color: #fff;
}

.gpc-hero-copy p{
  margin: 0 0 24px 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}

.gpc-hero-cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Buttons (dacă nu le ai deja globale) */
.gpc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .18s ease;
}

.gpc-btn-primary{
  background: linear-gradient(180deg, #FDDC46, #FFB000);
  color: #0D0D0D !important;
  box-shadow: 0 0 0 rgba(255,176,0,0);
}
.gpc-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255,176,0,.35);
}

.gpc-btn-secondary{
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,176,0,.55);
}
.gpc-btn-secondary:hover{
  background: rgba(255,176,0,.08);
  box-shadow: 0 0 18px rgba(255,176,0,.22);
}

/* Right side featured wrap */
.gpc-featured-wrap{
  background: rgba(13,13,13,.65);
  border: 1px solid rgba(255,176,0,.28);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 0 40px rgba(0,0,0,.35);
}

/* Responsive stack */
@media (max-width: 980px){
  .gpc-hero-cta{ justify-content: flex-start; }
  .gpc-featured-wrap{ margin-top: 0px; }
}

/* ===== GLOW DOT – SKILL BASED ===== */
.gpc-kicker{
  position: relative;
  padding-left: 18px;
}

.gpc-kicker::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFB000;
  box-shadow:
    0 0 6px rgba(255,176,0,.6),
    0 0 14px rgba(255,176,0,.45),
    0 0 28px rgba(255,176,0,.25);
  animation: gpcPulse 2.4s ease-in-out infinite;
}

/* Pulse animation */
@keyframes gpcPulse{
  0%{
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 6px rgba(255,176,0,.5),
      0 0 14px rgba(255,176,0,.35),
      0 0 28px rgba(255,176,0,.15);
  }
  50%{
    transform: translateY(-50%) scale(1.25);
    box-shadow:
      0 0 10px rgba(255,176,0,.85),
      0 0 26px rgba(255,176,0,.6),
      0 0 48px rgba(255,176,0,.35);
  }
  100%{
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 6px rgba(255,176,0,.5),
      0 0 14px rgba(255,176,0,.35),
      0 0 28px rgba(255,176,0,.15);
  }
}

/* ============ GPC HERO: FORCE STACK ON TABLET ============ */
@media (max-width: 980px){

  /* WPBakery columns are floats; kill the float and make them full width */
  .gpc-hero-row .gpc-hero-left,
  .gpc-hero-row .gpc-hero-right{
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    clear: both !important;
  }

  /* Ensure the row doesn't try to keep them aligned side-by-side */
  .gpc-hero-row .vc_row{
    display: block !important;
  }

  /* Optional: give a little breathing room between stacked blocks */
  .gpc-hero-row .gpc-hero-right{
    margin-top: 18px !important;
  }
}

@media (max-width: 980px){
  .gpc-hero-row .vc_column_container.gpc-hero-left,
  .gpc-hero-row .vc_column_container.gpc-hero-right{
    float: none !important;
    width: 100% !important;
  }
}
