/* ===============================
   ROOT
================================ */
.ss-footer {
  background:
    radial-gradient(
      circle at 80% 85%,
      rgba(34,197,94,0.12),
      transparent 42%
    ),
    linear-gradient(180deg, #020617, #020617);
  color: #cbd5e1;
  padding-top: 72px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

/* ===============================
   CONTAINER
================================ */
.ss-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   CTA
================================ */
.ss-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  /* padding-bottom: 72px; */
}

.ss-footer-cta h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.ss-footer-cta h2 span {
  color: #3b82f6;
}

.ss-footer-cta p {
  margin-top: 14px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
}

/* CTA buttons */
.ss-footer-actions,
.cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.btn.primary:hover {
  background: #1d4ed8;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* ===============================
   DIVIDER
================================ */
.ss-footer-divider {
  margin: 64px 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ===============================
   MAIN GRID
================================ */
.ss-footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  column-gap: 56px;
  padding-bottom: 72px;
}

/* ===============================
   BRAND COLUMN
================================ */
.ss-footer-brand h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.ss-footer-brand p {
  margin: 18px 0 28px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Contact cards */
.ss-footer-brand ul.contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Contact cards base */
.ss-footer-brand ul.contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ss-footer-brand ul.contact li .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Individual icon colors */
.ss-footer-brand ul.contact li .icon.email {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.ss-footer-brand ul.contact li .icon.phone {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.ss-footer-brand ul.contact li .icon.location {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* Glow effect on hover */
.ss-footer-brand ul.contact li:hover {
  transform: translateY(-2px);
}

/* Email – blue glow */
.ss-footer-brand ul.contact li.email:hover {
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.35),
    0 12px 30px rgba(59,130,246,0.25);
}

/* Phone – green glow */
.ss-footer-brand ul.contact li.phone:hover {
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.35),
    0 12px 30px rgba(34,197,94,0.25);
}

/* Address – amber glow */
.ss-footer-brand ul.contact li.address:hover {
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.35),
    0 12px 30px rgba(245,158,11,0.25);
}


/* ===============================
   COLUMN HEADERS
================================ */
.ss-footer-main h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* ===============================
   COLUMN LINKS
================================ */
.ss-footer-main ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-footer-main ul li {
  font-size: 14px;
  color: #94a3b8;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  line-height: 2.25rem;
}

/* Hover animation (reference style) */
/* Footer navigation links only */
.ss-footer-main ul.footer-links li {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ss-footer-main ul.footer-links li:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.ss-footer-main ul.footer-links li::before {
  content: "›";
  position: absolute;
  left: -12px;
  opacity: 0;
  color: #3b82f6;
  transition: all 0.2s ease;
}

.ss-footer-main ul.footer-links li:hover::before {
  opacity: 1;
  left: -16px;
}

/* ===============================
   HIRING BADGE
================================ */
.hiring {
  background: #f59e0b;
  color: #020617;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===============================
   BOTTOM BAR
================================ */
.ss-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 14px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.2px;
}
.status {
  position: relative;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
  overflow: visible;
}

.status::before,
.status::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.35);
  opacity: 0;
  animation: ripple 3s ease-out infinite;
}

.status::after {
  inset: -18px;
  border-color: rgba(34,197,94,0.2);
  animation-delay: 1.2s;
}

@keyframes ripple {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  25% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* FOOTER LOGO */
.ss-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.ss-footer-logo img {
  width: auto !important;
  height: 50px !important;
  object-fit: contain;
}

.ss-footer-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}


/* ===============================
   LOVE LINE
================================ */
.ss-footer-love {
  font-size: 16px;
  color: #94a3b8;
  margin-top: 24px;
  text-align: center;
}

.ss-footer-love span.heart {
  color: #ef4444;               /* red heart */
  font-weight: 700;
  font-size: 24px;
}

