/* ============================================================
   ✅ PROJECT DETAIL PAGE — LONG FORM SIET PREMIUM STYLE
   ============================================================ */

:root{
  --blue:#0B4AA2;
  --cyan:#00A3D9;
  --gold:#C7A04A;
  --text:#0B1220;
  --muted:#5B6473;
  --soft:#F6F8FC;
  --line: rgba(15,23,42,.12);
  --shadow: 0 24px 60px rgba(15,23,42,.12);
  --radius: 28px;
}

body{
  font-family: "Open Sans", system-ui, sans-serif;
  background: white;
}

/* ============================================================
   ✅ HERO
   ============================================================ */
.projHero{
  position: relative;
  height: 88vh;
  overflow: hidden;
}
.projHeroMedia{
  position:absolute;
  inset:0;
}
.projHeroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.projHeroOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 55%,
    rgba(255,255,255,0.95) 100%
  );
}
.projHeroContent{
  position: relative;
  z-index: 2;
  height:100%;
  padding: 120px 0 60px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 16px;
}
.projTag{
  display:inline-flex;
  align-self:flex-start;
  padding: 8px 14px;
  border-radius:999px;
  background: rgba(0,163,217,0.18);
  border: 1px solid rgba(0,163,217,0.22);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.projTitle{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 22ch;
  text-shadow: 0 14px 60px rgba(0,0,0,0.45);
}
.projTitle span{
  color: var(--cyan);
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 500;
}
.projSub{
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.projHeroActions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ============================================================
   ✅ STATS PANEL
   ============================================================ */
.projStats{
  margin-top: -80px;
  padding: 30px 0 40px;
  position: relative;
  z-index: 5;
}
.projStatsPanel{
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  border: 1px solid rgba(15,23,42,0.10);
  padding: 32px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  box-shadow: 0 25px 80px rgba(15,23,42,0.12);
}
.projStatBlock{
  flex:1;
  text-align:center;
}
.projStatNum{
  font-family:"Montserrat", sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 950;
  color: #071a33;
  letter-spacing: -0.04em;
}
.projStatNum .plus{
  font-size: 1rem;
  font-weight: 900;
  opacity: 0.75;
  margin-left: 4px;
}
.projStatLabel{
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(7,26,51,0.70);
}
.projStatDivider{
  width:1px;
  height: 52px;
  background: rgba(7,26,51,0.10);
}

/* ============================================================
   ✅ STICKY NAV
   ============================================================ */
.projStickyNav{
  position: sticky;
  top: 78px;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,26,51,0.10);
}
.projStickyNavInner{
  display:flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}
.projStickyNavInner::-webkit-scrollbar{ display:none; }

.projNavLink{
  flex-shrink:0;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,162,212,0.08);
  border: 1px solid rgba(10,162,212,0.14);
  color: rgba(7,26,51,0.82);
  transition: 0.22s ease;
}
.projNavLink:hover{
  transform: translateY(-1px);
  background: rgba(10,162,212,0.14);
}
.projNavLink.active{
  background: var(--blue);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   ✅ LONG FORM CONTENT
   ============================================================ */
.projContentSection{
  padding: 90px 0;
  background: #ffffff;
}
.projLongForm{
  max-width: 980px;
  margin:auto;
}
.projSectionBlock{
  margin-bottom: 70px;
}
.projSectionTitle{
  font-family:"Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #071a33;
  letter-spacing: -0.03em;
}
.projSectionBlock p{
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(7,26,51,0.72);
}

/* Mission/Vision Cards */
.projMVGrid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.projMVCard{
  padding: 22px;
  border-radius: 22px;
  background: rgba(10,162,212,0.06);
  border: 1px solid rgba(10,162,212,0.14);
}
.projMVCard h3{
  font-family:"Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color:#071a33;
}
.projMVCard p{ margin-top: 10px; }

/* list glass */
.projListGlass{
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(11,74,162,0.06);
  border: 1px solid rgba(11,74,162,0.12);
}
.projListGlass h4{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--blue);
}
.projListGlass ul{
  list-style:none;
  display:grid;
  gap: 10px;
  padding-left: 0;
}
.projListGlass li{
  font-weight: 700;
  color: rgba(7,26,51,0.76);
}

/* Objective grid */
.projObjectiveGrid{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.projObjectiveCard{
  padding: 20px 18px;
  border-radius: 20px;
  border: 1px solid rgba(7,26,51,0.10);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 18px 55px rgba(15,23,42,0.06);
}
.projObjectiveCard h3{
  font-family:"Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #071a33;
}
.projObjectiveCard p{
  margin-top: 10px;
  font-size: 0.95rem;
}

/* CTA */
.projContactSection{
  padding: 95px 0;
  background: #eaf6fb;
}
.projContactCard{
  max-width: 900px;
  margin:auto;
  padding: 44px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(7,26,51,0.10);
  box-shadow: 0 45px 120px rgba(15,23,42,0.10);
  text-align:center;
}
.projContactCard h2{
  font-family:"Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #071a33;
}
.projContactCard p{
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.75;
}
.projContactBtns{
  margin-top: 22px;
  display:grid;
  gap: 12px;
}

/* ============================================================
   ✅ FOCUS AREA SECTION
============================================================ */
.projectFocusSection{
  padding: 80px 0;
  position: relative;
  background: #ffffff;
}

.projectSectionTitle{
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #071a33;
}

.projectSectionSub{
  margin-top: 10px;
  max-width: 70ch;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(7,26,51,0.70);
}

/* ✅ Grid */
.focusGrid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ✅ Card */
.focusCard{
  background: rgba(10,162,212,0.07);
  border: 1px solid rgba(10,162,212,0.20);
  border-radius: 22px;
  padding: 26px 22px;
  transition: all 0.25s ease;
  box-shadow: 0 18px 45px rgba(15,23,42,0.05);
}

.focusCard:hover{
  transform: translateY(-5px);
  box-shadow: 0 26px 65px rgba(10,162,212,0.12);
}

/* ✅ Fix for card 2 visibility */
.focusCardStrong{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,162,212,0.30);
  box-shadow: 0 24px 70px rgba(10,162,212,0.10);
}

.focusCardStrong:hover{
  box-shadow: 0 30px 80px rgba(10,162,212,0.15);
}

.focusCard h3{
  font-size: 1.15rem;
  font-weight: 900;
  color: #071a33;
}

.focusCard p{
  margin-top: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(7,26,51,0.72);
}

/* ✅ Points list */
.focusPoints{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}

.focusPoints li{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(7,26,51,0.10);
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(7,26,51,0.72);
}

/* ============================================================
   ✅ THEME: Skill / Vocational
============================================================ */
.themeSkill .projTag{
  background: rgba(0,163,217,0.22);
  border-color: rgba(0,163,217,0.34);
}

.themeSkill .projTitle span{
  color: rgba(0,163,217,1);
}

.themeSkill .projNavLink.active{
  background: rgba(0,163,217,1);
  color: #fff;
}

.themeSkill .projListGlass{
  background: rgba(0,163,217,0.06);
  border-color: rgba(0,163,217,0.14);
}

.themeSkill .projListGlass h4{
  color: rgba(0,163,217,1);
}

.themeSkill .focusCard{
  background: rgba(0,163,217,0.07);
  border-color: rgba(0,163,217,0.20);
}

.themeSkill .projContactSection{
  background: rgba(0,163,217,0.06);
}

/* ============================================================
   ✅ Responsive
   ============================================================ */
@media(max-width: 980px){
  .projObjectiveGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px){
  .projStatsPanel{ flex-direction:column; }
  .projStatDivider{ width: 70%; height:1px; }
  .projMVGrid{ grid-template-columns: 1fr; }
  .projObjectiveGrid{ grid-template-columns: 1fr; }
  .focusGrid{ grid-template-columns: 1fr; }
}
