/* ================================
   ABOUT SECTION – IFN NEON ORANGE
================================ */
.about-neon-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #101a33, #050914);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.about-neon-section::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,140,0,.08) 0%, transparent 70%);
  animation: ambientPulse 16s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* HEADER */
.neon-subtitle {
  color: #ffb347;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 0 15px rgba(255,140,0,.6);
}

.neon-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(90deg,#ff7a00,#ffb347,#ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-content {
  margin: 25px 0 35px;
}

.neon-text {
  color: #fcd34d;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* IMAGE GRID */
.about-image-grid {
  position: relative;
  padding: 20px;
}

.img-main {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255,140,0,.3);
  box-shadow: 0 0 45px rgba(255,140,0,.35);
  transition: .4s ease;
}

.img-main:hover {
  transform: scale(1.02);
  box-shadow: 0 0 65px rgba(255,140,0,.55);
}

.img-float {
  position: absolute;
  width: 45%;
  bottom: -30px;
  right: -20px;
  border-radius: 22px;
  border: 2px solid #ff7a00;
  box-shadow: 0 0 40px rgba(255,140,0,.6);
}

/* BADGE */
.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,140,0,.15);
  backdrop-filter: blur(12px);
  border: 2px solid #ff7a00;
  padding: 18px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 35px rgba(255,140,0,.5);
}

.badge-icon i {
  font-size: 2rem;
  color: #ffb347;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #ffb347;
}

.badge-label {
  font-size: .8rem;
  color: #fcd34d;
}

/* FLOATING ORBS */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,.35), transparent);
  filter: blur(45px);
  animation: orbFloat 9s ease-in-out infinite;
}

.glow-orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -60px;
}

.glow-orb-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: -40px;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%,100% { transform: translateY(0); opacity: .3; }
  50% { transform: translateY(-25px); opacity: .55; }
}

/* HIGHLIGHTS */
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin: 35px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,140,0,.08);
  border: 1px solid rgba(255,140,0,.25);
  transition: .35s ease;
}

.highlight-item:hover {
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(255,140,0,.4);
}

.highlight-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,140,0,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 1.6rem;
  color: #ffb347;
}

.highlight-text strong {
  font-size: .95rem;
}

.highlight-text span {
  font-size: .8rem;
  color: #fcd34d;
}

/* CTA */
.btn-neon-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  color: #000;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(255,140,0,.6);
}

.btn-neon-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255,140,0,.85);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .neon-title { font-size: 2.2rem; }
  .about-highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .neon-title { font-size: 1.8rem; }
  .img-float { width: 55%; }
  .glow-orb { display: none; }
}
