/* Footer - Light theme (like reference: light background, blue accents, prominent outlined company name) */
.footer {
  background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 50%, #e0f2fe 100%);
  color: #1e293b;
  padding: 50px 20px 30px;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #004aad;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-section .company-description {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  max-width: 320px;
}

.footer-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #004aad;
  display: inline-block;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section ul a:hover {
  color: #004aad;
}

.contact-company-name {
  font-size: 15px;
  color: #1e3a5f;
  margin: -8px 0 14px 0;
}

.contact-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info i {
  color: #004aad;
  margin-top: 3px;
  min-width: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #004aad;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 74, 173, 0.15);
}

.social-links a:hover {
  background: #004aad;
  color: #ffffff;
}

/* Single prominent company name - large, outlined blue (stencil style) */
.large-text {
  max-width: 1200px;
  margin: 48px auto 24px;
  text-align: center;
  overflow: hidden;
}

.footer-company-name {
  display: block;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #3b82f6;
  -webkit-text-stroke: 2px #1e40af;
  text-stroke: 2px #1e40af;
  paint-order: stroke fill;
  -webkit-text-fill-color: #3b82f6;
  text-fill-color: #3b82f6;
  line-height: 1.2;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 74, 173, 0.12);
  margin-top: 8px;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section .company-description {
    max-width: 100%;
  }

  .footer-section h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-company-name {
    font-size: clamp(22px, 6vw, 36px);
  }
}
