/* ===== FOOTER ===== */
.school-footer {
  position: relative;
  background: linear-gradient(
    135deg,
    #041a45,
    #062d73
  );
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

/* ===== WAVE ===== */
.school-footer-wave {
  line-height: 0;
}

.school-footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== CONTAINER ===== */
.school-footer-container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
  padding: 40px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
}

/* ===== LOGO AREA ===== */
.school-footer-logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.school-footer-logo-area img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  border: 3px solid #ffcc29;
  box-shadow: 0 0 18px rgba(255, 204, 41, 0.35);
}

.school-footer-logo-area h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.school-footer-logo-area p {
  color: #ffcc29;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.school-footer-about {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ===== TITLES ===== */
.school-footer-title {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.school-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ffcc29,
    #d61f26
  );
}

/* ===== LINKS ===== */
.school-footer-links {
  list-style: none;
}

.school-footer-links li {
  margin-bottom: 16px;
}

.school-footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
  font-size: 15px;
}

.school-footer-links a i {
  color: #ffcc29;
}

.school-footer-links a:hover {
  color: white;
  transform: translateX(8px);
}

/* ===== CONTACT ===== */
.school-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.school-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: 0.3s ease;
}

.school-contact-item:hover {
  transform: translateX(8px);
  color: white;
}

.school-contact-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffcc29;
  font-size: 18px;

  transition: 0.3s ease;
}

.school-contact-item:hover .school-contact-icon {
  background: #ffcc29;
  color: #062d73;
  transform: rotate(-8deg);
}

/* ===== SOCIAL ===== */
.school-footer-social {
  display: flex;
  gap: 14px;
}

.school-footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  text-decoration: none;

  transition: 0.35s ease;
}

.school-footer-social a:hover {
  transform: translateY(-6px);
  background: #ffcc29;
  color: #062d73;
  box-shadow: 0 10px 20px rgba(255, 204, 41, 0.35);
}

/* ===== BOTTOM ===== */
.school-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 15px;

  text-align: center;
}

.school-footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.school-footer-bottom a {
  color: #ffcc29;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.school-footer-bottom a:hover {
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .school-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .school-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .school-footer-logo-area {
    flex-direction: column;
  }

  .school-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .school-footer-links a {
    justify-content: center;
  }

  .school-contact-item {
    justify-content: center;
    text-align: left;
  }

  .school-footer-social {
    justify-content: center;
  }

  .school-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .school-footer-logo-area h2 {
    font-size: 20px;
  }

  .school-footer-title {
    font-size: 22px;
  }

  .school-footer-about {
    font-size: 14px;
  }

  .school-contact-item span {
    font-size: 14px;
  }
}