/* :: CONTACT PAGE CSS :: */
#contact-page .contact-hero {
  padding: 70px 0 80px;
  background: radial-gradient(109.18% 191.18% at 50% 50%, rgba(11, 19, 43, 0.95) 19.92%, rgba(0, 96, 254, 0.55) 85.29%), url("../../images/backgournds/header-01.png") center, #0b132b;
  background-size: cover;
  color: #ffffff;
}

#contact-page .contact-hero .badge {
  background: rgba(255, 255, 255, 0.15);
  color: #60a5fa;
  font-size: 12px;
  letter-spacing: 1px;
}

#contact-page .contact-hero .hero-title {
  font-size: clamp(2.2rem, calc(0.9rem + 2.2vw), 3.2rem);
  font-weight: 800;
  line-height: 1.2;
}

#contact-page .contact-hero .hero-desc {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 620px;
}

/* Info Cards */
.contact-info-cards {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--pri-color, #0060fe);
  box-shadow: 0 15px 35px rgba(0, 96, 254, 0.12);
}

.contact-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 96, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card .card-icon img {
  width: 24px;
  height: 24px;
}

.contact-card .card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-card .card-desc {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-card .card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pri-color, #0060fe);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.contact-card .card-link:hover {
  text-decoration: underline;
}

/* Contact Form Section */
.contact-section {
  padding: 80px 0 100px;
  background: #f8fafc;
}

.contact-form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-form-box .form-heading {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-form-box .form-subheading {
  font-size: 14.5px;
  color: #64748b;
  margin-bottom: 28px;
}

/* Inputs */
.contact-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  background: #ffffff;
  border-color: var(--pri-color, #0060fe);
  box-shadow: 0 0 0 4px rgba(0, 96, 254, 0.12);
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Department Selection Radio Grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.dept-option {
  position: relative;
  cursor: pointer;
}

.dept-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dept-box {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.2s ease;
}

.dept-option input[type="radio"]:checked + .dept-box {
  border-color: var(--pri-color, #0060fe);
  background: rgba(0, 96, 254, 0.05);
  box-shadow: 0 0 0 2px var(--pri-color, #0060fe);
}

.dept-box .dept-name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.dept-box .dept-email {
  font-size: 11px;
  color: #0060fe;
  font-weight: 600;
}

/* Department directory sidebar */
.dept-directory {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.dept-dir-item {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.dept-dir-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dept-dir-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 96, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}

.dept-dir-item .icon-circle img {
  width: 16px;
  height: 16px;
}

.dept-dir-item .item-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.dept-dir-item .item-email {
  font-size: 13px;
  color: var(--pri-color, #0060fe);
  text-decoration: none;
  font-weight: 500;
}

.dept-dir-item .item-email:hover {
  text-decoration: underline;
}

.dept-dir-item .item-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .contact-form-box {
    padding: 26px 20px;
  }
  .contact-info-cards {
    margin-top: 20px;
  }
}
