
.edu-contact-page-wrapper {
  background-color: #070B14;
  color: #cbd5e1;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Ambient glow in the background */
.edu-contact-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 380px;
  background: radial-gradient(circle, rgba(84, 126, 191, 0.16) 0%, rgba(178, 201, 233, 0.04) 55%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Breadcrumb styling */
.edu-contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
}

.edu-contact-breadcrumb-link {
  color: #94a3b8;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.edu-contact-breadcrumb-link:hover {
  color: #B2C9E9;
}

.edu-contact-breadcrumb-active {
  color: #547EBF;
  font-weight: 700;
}

/* Header Badge & Title */
.edu-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  background: rgba(84, 126, 191, 0.15);
  border: 1px solid rgba(178, 201, 233, 0.3);
  border-radius: 9999px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #B2C9E9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.edu-contact-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.edu-contact-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Contact Card Container */
.edu-contact-main-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(178, 201, 233, 0.16);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .edu-contact-main-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Individual Channel Cards */
.edu-contact-item-card {
  background: rgba(10, 17, 32, 0.65);
  border: 1px solid rgba(178, 201, 233, 0.12);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.edu-contact-item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 201, 233, 0.35);
  background: rgba(15, 25, 48, 0.8);
  box-shadow: 0 10px 25px rgba(84, 126, 191, 0.15);
}

/* Icon Box */
.edu-contact-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(84, 126, 191, 0.15);
  border: 1px solid rgba(178, 201, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B2C9E9;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.edu-contact-item-card:hover .edu-contact-icon-box {
  background: linear-gradient(135deg, #547EBF 0%, #3e6399 100%);
  color: #ffffff;
  border-color: #B2C9E9;
  box-shadow: 0 4px 14px rgba(84, 126, 191, 0.4);
}

.edu-contact-channel-name {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.edu-contact-channel-val {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
  margin-bottom: 0;
}

.edu-contact-link {
  color: #B2C9E9;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.edu-contact-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(178, 201, 233, 0.5);
}

.edu-contact-unavailable {
  color: #64748b;
  font-style: italic;
  font-size: 0.9rem;
}

/* Map Embed Container */
.edu-contact-map-card {
  background: rgba(10, 17, 32, 0.65);
  border: 1px solid rgba(178, 201, 233, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.edu-contact-map-header {
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(178, 201, 233, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #B2C9E9;
}

.edu-contact-map-card iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* Back to Home & Footer Action */
.edu-contact-footer-note {
  color: #94a3b8;
  font-size: 0.925rem;
  max-width: 500px;
  margin: 0 auto 1.25rem;
}

.edu-contact-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  background: rgba(84, 126, 191, 0.12);
  border: 1px solid rgba(178, 201, 233, 0.28);
  border-radius: 0.65rem;
  color: #B2C9E9;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.edu-contact-btn-back:hover {
  background: linear-gradient(135deg, #547EBF 0%, #3e6399 100%);
  border-color: #B2C9E9;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(84, 126, 191, 0.35);
}

.edu-contact-btn-back i {
  transition: transform 0.2s ease;
}

.edu-contact-btn-back:hover i {
  transform: translateX(-3px);
}
