/* ============================================================
   CareCareer Tech – custom footer styles (additive only)
   Reuses existing template footer classes; this file only adds
   the new bits the redesign needs (opening hours, circular
   socials, rounded email pill). Nothing here overrides global
   layout outside the <footer>.
   ============================================================ */

/* Logo sizing in footer */
footer .footer-widget-1 .footer-logo img {
  max-width: 180px;
  height: auto;
}

/* ---- Opening hours ---- */
footer .footer-opening-hours {
  margin-top: 30px;
}
footer .footer-opening-hours .footer-oh-title {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer .footer-oh-row {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}
footer .footer-oh-row .oh-line {
  flex: 1 1 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0 12px;
  min-width: 20px;
}
footer .footer-oh-row .oh-day,
footer .footer-oh-row .oh-time {
  white-space: nowrap;
}

/* ---- Footer column links (AI Healthcare / AI Technology) ---- */
footer .footer-widget-links ul.service-list li a {
  color: #fff;
  transition: all 400ms ease;
}
footer .footer-widget-links ul.service-list li:hover a {
  color: var(--theme-color);
}

/* ---- Contact column ---- */
footer .footer-widget-contact p {
  color: #fff;
  margin-bottom: 24px;
}

/* ---- Rounded email pill ---- */
footer .footer-subscribe--pill form {
  position: relative;
}
footer .footer-subscribe--pill input[type=email] {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 0 64px 0 26px;
  margin-bottom: 0;
}
footer .footer-subscribe--pill input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
footer .footer-subscribe--pill button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #0a1a4f;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
}
footer .footer-subscribe--pill button:hover {
  background: var(--theme-color);
  color: #fff;
}
footer .footer-subscribe--pill button i {
  font-size: 16px;
  line-height: 1;
}

/* ---- Circular social icons (match reference) ---- */
footer .footer-widget-contact .footer-socials {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
}
footer .footer-widget-contact .footer-socials span {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
}
footer .footer-widget-contact .footer-socials span a {
  color: #fff;
  font-size: 14px;
}
footer .footer-widget-contact .footer-socials span:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  footer .footer-widget-1,
  footer .footer-widget-links,
  footer .footer-widget-contact {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
