/* =========================================================
   HERO SECTION – JP INFRA DEVELOPERS (CLEAN & PROFESSIONAL)
   ========================================================= */

/* ================= HERO WRAPPER ================= */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  min-height:420px;
  background: var(--brand-dark);
  overflow:hidden;
}

/* Background image */
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Neutral overlay (NO COLOR TINT) */
.hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

/* ================= HERO INNER ================= */
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.35fr .9fr;
  gap:40px;
  align-items:center;
  padding:60px 0;
}

/* ================= HERO CONTENT ================= */
.hero-kicker{
  display:inline-block;
  padding:6px 14px;
  margin-bottom:14px;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight:700;
  letter-spacing:.22em;
  font-size:11px;
  text-transform:uppercase;
}

.hero h1{
  font-size:42px;
  line-height:1.2;
  font-weight:800;
  color: var(--text-on-dark);
  margin-bottom:12px;
}

.hero-text{
  max-width:520px;
  font-size:.95rem;
  line-height:1.6;
  color: rgba(255,255,255,0.88);
}

/* ================= HERO CHIPS ================= */
.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.hero-chips span{
  padding:6px 12px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border:1px solid var(--accent);
  color:var(--accent);
  background: rgba(0,0,0,0.5);
}

/* =========================================================
   HERO FORM – SIMPLE PROFESSIONAL LEAD CARD
   ========================================================= */

.premium-form{
  background: var(--card);
  color: var(--text);
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,0.35);
  overflow:hidden;
}

/* Header */
.pf-header{
  background: var(--brand-dark);
  color: var(--text-on-dark);
  padding:18px 20px;
  font-weight:700;
}

.pf-badge{
  display:inline-block;
  margin-bottom:6px;
  padding:6px 12px;
  font-size:11px;
  background: var(--accent);
  color: var(--brand-dark);
  text-transform:uppercase;
  letter-spacing:.14em;
}

/* Body */
.pf-body{
  padding:20px;
}

.pf-field{
  display:flex;
  gap:12px;
  margin-bottom:14px;
}

/* Icon */
.pf-icon{
  width:42px;
  height:42px;
  background: var(--bg-light);
  color: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
}

/* Control */
.pf-control{
  flex:1;
  position:relative;
}

.pf-control input,
.pf-control select{
  width:100%;
  height:42px;
  padding:0 14px;
  font-size:14px;
  background: var(--bg-card);
  color: var(--text);
  border:1px solid var(--border);
  border-radius:8px;
}

.pf-control label{
  position:absolute;
  top:-7px;
  left:14px;
  font-size:11px;
  padding:0 6px;
  background: var(--card);
  color: var(--muted);
}

/* Submit */
.pf-submit{
  width:100%;
  height:46px;
  margin-top:6px;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight:800;
  border:none;
  border-radius:10px;
  text-transform:uppercase;
  letter-spacing:.16em;
  cursor:pointer;
  transition:.25s ease;
}

.pf-submit:hover{
  filter:brightness(1.05);
}

/* =========================================================
   RESPONSIVE – HERO
   ========================================================= */
@media(max-width:900px){
  .hero-inner{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .hero{
    min-height:auto;
  }

  .hero-inner{
    padding:36px 0;
    gap:26px;
  }

  .hero h1{
    font-size:26px;
  }

  .hero-text{
    font-size:.9rem;
  }

  .hero-chips span{
    font-size:10px;
    padding:5px 10px;
  }

  .premium-form{
    margin-top:12px;
  }

  .pf-header,
  .pf-body{
    padding:16px;
  }

  .pf-icon{
    width:38px;
    height:38px;
  }

  .pf-control input,
  .pf-control select{
    height:40px;
    font-size:13px;
  }
}
