/*==== Footer ====*/
.edu-footer {
  background: linear-gradient(135deg, #0f2d4a 0%, #1e3a5f 60%, #0a1f35 100%);
  color: #f8fafc;
  font-family: 'Inter', 'Poppins', sans-serif;
  padding: 56px 20px 0;
  position: relative;
}

.edu-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
}

.edu-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 1fr;
  gap: 40px;
  align-items: start;
}

.edu-section {
  display: flex;
  flex-direction: column;
}

/* Section headings */
.edu-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.4);
}

.edu-section h3 i {
  color: #f59e0b;
  font-size: 14px;
}

/* Branding */
.branding-section {
  text-align: center;
  padding-right: 10px;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  height: 90px;
  width: 90px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.follow-us-section {
  margin-top: auto;
  padding-top: 20px;
}

.follow-us-section h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.edu-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.edu-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 15px;
  color: #cbd5e1 !important;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 !important;
  padding: 0;
  transform: none;
}

.edu-social a:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #1e3a5f;
  transform: translateY(-3px);
}

/* Quick Links */
.links-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.25s ease;
  margin: 0;
}

.links-grid a:last-child {
  border-bottom: none;
}

.links-grid a i {
  color: #f59e0b;
  width: 15px;
  font-size: 12px;
  flex-shrink: 0;
}

.links-grid a:hover {
  color: #f59e0b;
  padding-left: 6px;
  transform: none;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #f59e0b;
  transition: background 0.2s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.contact-item>i {
  color: #f59e0b;
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 3px;
}

.contact-details p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  margin: 0;
  display: inline;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #f59e0b;
}

/* Enquiry Form */
.footer-enquiry-form .form-group {
  margin-bottom: 10px;
}

.footer-enquiry-form input,
.footer-enquiry-form select,
.footer-enquiry-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #f8fafc;
  font-size: 13px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.footer-enquiry-form input::placeholder,
.footer-enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-enquiry-form input:focus,
.footer-enquiry-form select:focus,
.footer-enquiry-form textarea:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.footer-enquiry-form select option {
  background: #1e3a5f;
  color: #f8fafc;
}

.footer-enquiry-form textarea {
  resize: vertical;
  min-height: 64px;
}

.enquiry-submit-btn {
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1e3a5f;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}

.enquiry-submit-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

/* Bottom links bar */
.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  text-decoration: none;
  padding: 2px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s;
  margin: 0;
  display: inline;
}

.footer-links-bottom a:last-child {
  border-right: none;
}

.footer-links-bottom a:hover {
  color: #f59e0b;
}

/* Copyright bar */
.edu-bottom {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  padding: 10px 20px 14px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile */
@media (max-width: 900px) {
  .edu-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .edu-footer {
    padding: 40px 16px 0;
  }

  .edu-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .branding-section {
    padding-right: 0;
  }

  .contact-item {
    text-align: left;
  }

  .links-grid {
    text-align: left;
  }

  .edu-section:has(.links-grid) {
    text-align: left;
  }

  .links-grid a {
    justify-content: flex-start;
    font-size: 15px;
    padding: 10px 0;
  }

  .links-grid a:hover {
    padding-left: 6px;
  }

  .edu-social {
    justify-content: center;
    gap: 12px;
  }

  .edu-social a {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }

  .follow-us-section h4 {
    font-size: 13px;
  }

  .footer-enquiry-form input,
  .footer-enquiry-form select,
  .footer-enquiry-form textarea {
    font-size: 16px;
  }

  .footer-links-bottom {
    gap: 0;
  }

  .footer-links-bottom a {
    border-right: none;
    padding: 4px 8px;
  }
}