/* =======================================
   TALENT REGISTRY PAGE COMPONENT STYLES
======================================= */

.registry-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #fdf8ee 0%, #ffffff 50%, #faf9f6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(224, 112, 0, 0.05);
}

.registry-hero-left {
  flex: 1.2;
}

.registry-hero-tag {
  display: inline-block;
  background: rgba(224, 112, 0, 0.08);
  color: #e07000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.registry-hero-left h1 {
  font-size: 52px;
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.registry-hero-left h1 span {
  color: #e07000;
}

.registry-hero-desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
}

.registry-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.registry-hero-right img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(224, 112, 0, 0.08);
  border: 1px solid rgba(224, 112, 0, 0.03);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.4s ease;
}

.registry-hero-right img:hover {
  transform: translateY(-5px);
}

/* =======================================
   AUDIENCE SECTION GRID
======================================= */

.registry-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  margin-top: 20px;
  margin-bottom: 45px;
  position: relative;
}

.registry-section-title span {
  color: #e07000;
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.registry-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.registry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(224, 112, 0, 0.08);
}

.registry-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(224, 112, 0, 0.08);
  color: #e07000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.registry-card:nth-child(even) .registry-card-icon {
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
}

.registry-card:hover .registry-card-icon {
  background: #e07000;
  color: #fff;
  transform: scale(1.08);
}

.registry-card:nth-child(even):hover .registry-card-icon {
  background: #111111;
  color: #fff;
  transform: scale(1.08);
}

.registry-card h3 {
  font-size: 20px;
  color: #111111;
  margin-bottom: 14px;
  font-weight: 750;
}

.registry-card p {
  color: #555;
  line-height: 1.75;
  font-size: 14.5px;
}

/* =======================================
   OPPORTUNITY PLEDGE & CTA
======================================= */

.registry-cta-box {
  background: linear-gradient(135deg, #1f1c18 0%, #0c0b0a 100%);
  color: #fff;
  border-radius: 22px;
  padding: 50px 40px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.registry-cta-box::after {
  content: "\f0c2"; /* Cloud icon or opportunity network icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -40px;
  right: 20px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.registry-cta-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #e07000;
  margin-bottom: 18px;
  text-align: center;
}

.registry-cta-desc {
  font-size: 16.5px;
  line-height: 1.8;
  color: #c4d1df;
  max-width: 850px;
  margin: 0 auto 35px;
  text-align: center;
}

.registry-cta-path {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
}

.registry-cta-path h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.registry-cta-path p {
  font-size: 15px;
  line-height: 1.6;
  color: #c4d1df;
  max-width: 700px;
  margin: 0 auto 24px;
}

.registry-cta-path a {
  color: #e07000;
  text-decoration: underline;
}

.btn-registry-cta {
  display: inline-block;
  background: #e07000;
  color: #fff !important;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 112, 0, 0.3);
}

.btn-registry-cta:hover {
  background: #ff840a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 112, 0, 0.4);
}

/* =======================================
   RESPONSIVE — REGISTRY PAGE
======================================= */

@media(max-width: 900px) {
  .registry-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    gap: 30px;
  }
  
  .registry-hero-left, .registry-hero-right {
    width: 100%;
  }

  .registry-hero-left h1 {
    font-size: 38px;
  }

  .registry-hero-right img {
    max-width: 380px;
  }

  .registry-section-title {
    font-size: 28px;
  }

  .registry-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 5%;
  }
}

@media(max-width: 550px) {
  .registry-grid {
    grid-template-columns: 1fr;
  }
  
  .registry-cta-box {
    padding: 35px 20px;
  }
  
  .registry-cta-path {
    padding: 25px 15px;
  }
}

/* =======================================
   ENHANCED MICRO-ANIMATIONS (talent-registry page)
======================================= */

.registry-hero-left h1 {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.registry-hero-desc {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}
.registry-hero-tag {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Registry card hover */
.registry-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.registry-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.16);
}
.registry-card i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.registry-card:hover i {
  transform: rotate(18deg) scale(1.2);
}

/* Registry CTA box glow */
.registry-cta-box {
  animation: registryGlow 3.5s ease-in-out infinite;
}
@keyframes registryGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.12), 0 12px 40px rgba(17,17,17,0.07); }
  50%       { box-shadow: 0 0 0 10px rgba(245,158,11,0), 0 12px 40px rgba(245,158,11,0.08); }
}

/* Section title animated underline */
.registry-section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #111111);
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.registry-section-title.visible::after {
  width: 80px;
}
