/* Glossary Site Footer Styles */

.c-footer {
  width: 100%;
  padding: 0;
  background: none;
  font-family: var(--font-family, sans-serif);
}

.c-footer__subscribe-banner {
  margin-bottom: -100px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
  box-sizing: border-box;
}

.c-footer__top-section {
  background-color: #0c2340; /* Dark Navy Blue */
  color: #ffffff;
  padding: 140px 0 80px;
  box-sizing: border-box;
}

/* ---- Lead Gen Form ---- */
.c-footer__lead-gen {
  text-align: center;
  margin-bottom: 24px;
}

.c-footer__lead-title {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}

.c-footer__lead-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-footer__form-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.c-footer__options-label {
  color: #ffffff;
  margin-right: 8px;
}

/* Radio styling matching screenshot */
.c-footer__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #ffffff;
  user-select: none;
}

.c-footer__radio-input {
  display: none;
}

.c-footer__radio-custom {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.c-footer__radio-input:checked + .c-footer__radio-custom {
  border-color: #00acff; /* Bright Blue Selected Border */
}

.c-footer__radio-input:checked + .c-footer__radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #00acff; /* Bright Blue Selected Dot */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Input Fields Row */
.c-footer__form-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}

.c-footer__form-input {
  flex: 1;
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #ffffff;
  padding: 0 16px;
  font-size: 14px;
  color: #1a2744;
  box-sizing: border-box;
  font-weight: 500;
}

.c-footer__form-input::placeholder {
  color: #a0aec0;
}

.c-footer__form-submit {
  background-color: #00b050; /* Green Button */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  height: 44px;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.c-footer__form-submit:hover {
  background-color: #029443;
}

/* Divider Line */
.c-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 40px 0 48px;
  width: 100%;
}

/* ---- Main Grid ---- */
.c-footer__main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}

.c-footer__col-heading {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
}

.c-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-footer__col-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.c-footer__col-links a:hover {
  color: #ffffff;
}

.c-footer__col-links a.is-highlighted {
  color: #00b050; /* Green Text Links */
  font-weight: 600;
}

.c-footer__col-links a.is-highlighted:hover {
  color: #02c75d;
}

/* ---- Contact Info Column ---- */
.c-footer__col--contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-footer__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.c-footer__contact-icon {
  font-size: 16px;
  color: #00b050;
  flex-shrink: 0;
}

.c-footer__contact-text {
  line-height: 1.3;
}

/* TAKE TEST Section */
.c-footer__cta-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-footer__cta-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.c-footer__cta-btn {
  background-color: #00b050; /* Green Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
  display: inline-block;
  width: max-content;
  box-sizing: border-box;
}

.c-footer__cta-btn:hover {
  background-color: #029443;
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 900px) {
  .c-footer__main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .c-footer__subscribe-banner {
    margin-bottom: -160px;
  }
  .c-footer__top-section {
    padding: 200px 0 56px;
  }
  .c-footer__lead-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .c-footer__form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .c-footer__form-row {
    flex-direction: column;
    gap: 12px;
  }
  .c-footer__form-submit {
    width: 100%;
  }
  .c-footer__main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .c-footer__divider {
    margin: 32px 0;
  }
}
