/* ===== LEADERSHIP HERO ===== */
.leadership-hero {
  position: relative;
  min-height: 60vh;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247,246,236,0.65), rgba(247,246,236,0.80));
}

.leadership-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8402A;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.leadership-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.leadership-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== PRINCIPALS SECTION ===== */
.principals-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #000000;
  opacity: 0.7;
}

/* LEADER CARDS */
.leader-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #F7F6EC;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
}

.leader-card:hover {
  transform: translateY(-8px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.15);
}

.leader-image {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(232,64,42,0.2), rgba(167,0,0,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.leader-card:hover .leader-overlay {
  opacity: 0;
}

.leader-icon {
  display: none;
}

.leader-content {
  flex: 1;
}

.leader-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.leader-designation {
  font-size: 15px;
  font-weight: 600;
  color: #E8402A;
  margin-bottom: 5px;
}

.leader-campus {
  font-size: 14px;
  color: #000000;
  opacity: 0.7;
  margin: 0;
}

/* ===== MANAGEMENT SECTION ===== */
.management-section {
  padding: 100px 0;
  background: #F7F6EC;
}

.management-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #F7F6EC;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.management-card:hover {
  transform: translateY(-10px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.15);
}

.management-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.management-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.management-card:hover .management-image img {
  transform: scale(1.1);
}

.management-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(232,64,42,0.3), rgba(167,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.management-card:hover .management-overlay {
  opacity: 0;
}

.management-icon {
  display: none;
}

.management-content {
  padding: 30px 25px;
}

.management-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.management-role {
  font-size: 15px;
  font-weight: 600;
  color: #E8402A;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.leadership-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  color: #FFFFFF;
}

.leadership-cta h2 {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.leadership-cta p {
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: #FFFFFF;
  color: #E8402A;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
}

.btn-primary-cta:hover {
  background: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-outline-cta {
  background: transparent;
  color: #FFFFFF;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  transition: all 0.3s ease;
}

.btn-outline-cta:hover {
  background: #FFFFFF;
  color: #E8402A;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .leadership-hero h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .principals-section,
  .management-section {
    padding: 70px 0;
  }

  .leader-card {
    flex-direction: column;
    text-align: center;
  }

  .leader-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .leadership-hero h1 {
    font-size: 28px;
  }

  .leadership-hero p {
    font-size: 15px;
  }

  .principals-section,
  .management-section {
    padding: 50px 0;
  }

  .leadership-cta h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;
    max-width: 280px;
  }
}
