@charset "utf-8";

/* =====================================================
   SPP Recruitment – Premium Aligned Version
===================================================== */

:root{
  --primary:#0d1b2a;
  --primary-light:#1b263b;
  --accent:#c1121f;
  --accent-dark:#9b0f19;
  --text-main:#111827;
  --muted:#6b7280;
  --light:#f5f7fa;
  --white:#ffffff;
  --border:#1F1F1F;
  --radius:14px;
  --shadow:0 20px 45px rgba(0,0,0,0.08);
}


/* =====================================================
   Typography
===================================================== */

h1{
  font-size:2.8rem;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:-0.6px;
}

h2{
  font-size:2rem;
  font-weight:700;
  margin-bottom:30px;
  text-align:center;
}

h3{
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:14px;
}

p{
  max-width:720px;
  margin:0 auto 18px;
}

ul{
  padding-left:18px;
}

ul li{
  margin-bottom:10px;
}

.center-text{
  text-align:center;
}

.muted{
  color:var(--muted);
}

/* =====================================================
   HERO (Image Overlay Version)
===================================================== */

.hero-section{
  position:relative;
  background:
    linear-gradient(rgba(13,27,42,0.85), rgba(13,27,42,0.85)),
    url('../images/SPP Instructor Team.png') center/cover no-repeat;
  color:#fff;
  text-align:center;
  padding:140px 24px;
}

.hero-sub{
  font-size:1.15rem;
  color:#d1d5db;
  margin-bottom:30px;
}

.hero-badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:35px;
}

.hero-badges span{
  background:rgba(255,255,255,0.1);
  padding:8px 14px;
  border-radius:50px;
  font-size:0.9rem;
}

/* =====================================================
   Buttons
===================================================== */

.btn-primary{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:14px 34px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
}

.btn-primary:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
}

.btn-secondary{
  display:inline-block;
  border:2px solid var(--primary);
  background:#fff;
  color:var(--primary);
  padding:12px 26px;
  border-radius:50px;
  font-weight:600;
  transition:all 0.3s ease;
  cursor:pointer;
}

.btn-secondary:hover{
  background:var(--primary);
  color:#fff;
}

/* =====================================================
   Split Layout (Text + Image)
===================================================== */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-top:50px;
}

.split img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* =====================================================
   Cards
===================================================== */

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  margin-top:50px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  text-align:left;
  transition:all 0.3s ease;
}

.card:hover{
  transform:translateY(-6px);
}

/* =====================================================
   Section Background Alternation
===================================================== */

.section-light{
  background:var(--light);
}

/* =====================================================
   Contact Buttons
===================================================== */

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

/* =====================================================
   FORM CARD FIX
===================================================== */

.form-card{
  max-width:640px;
  margin:0 auto;
  background:#ffffff;
  padding:50px 40px;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.form-title{
  text-align:center;
  margin-bottom:35px;
  font-size:1.9rem;
}

#spp-info-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.spp-form-group{
  display:flex;
  flex-direction:column;
}

.spp-form-group label{
  font-weight:600;
  margin-bottom:8px;
  font-size:0.95rem;
}

.spp-form-group input,
.spp-form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font-size:0.95rem;
  transition:all 0.2s ease;
  background:#fafafa;
}

.spp-form-group input:focus,
.spp-form-group textarea:focus{
  border-color:#c1121f;
  background:#fff;
  outline:none;
}

.recaptcha-wrap{
  margin-top:10px;
}

.spp-submit-btn{
  margin-top:10px;
  background:linear-gradient(135deg,#0d1b2a,#1b263b);
  color:#fff;
  padding:16px;
  border:none;
  border-radius:50px;
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  transition:all 0.3s ease;
}

.spp-submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/* =====================================================
   Responsive
===================================================== */

@media(max-width:900px){

  .split{
    grid-template-columns:1fr;
    gap:40px;
  }

  h1{
    font-size:2.2rem;
  }

  .hero-section{
    padding:100px 20px;
  }

  .container{
    padding:60px 20px;
  }
}

/* =====================================================
   Instructor Clarity Section
===================================================== */

.instructor-clarity img{
  width:100%;
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.instructor-clarity ul{
  margin:20px 0;
  padding-left:18px;
}

.instructor-clarity .bold-statement{
  font-weight:600;
  margin-top:20px;
}