/**
 * Emit Mühendislik footer.
 */

.emit-partnership,
.emit-site-footer {
  font-family: "Poppins", sans-serif;
}

.emit-partnership *,
.emit-site-footer * {
  box-sizing: border-box;
}

.emit-footer-shell {
  width: min(100% - 30px, 1320px);
  margin-inline: auto;
}

.emit-partnership {
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #fdf2f2 0%, #fbeaea 100%);
}

.emit-partnership__inner {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 150px 1fr auto;
}

.emit-partnership__icon {
  display: grid;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #e31e25, #c41e3a);
  place-items: center;
  justify-self: center;
}

.emit-partnership__icon .emit-icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.emit-partnership__copy h2 {
  margin: 0 0 10px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.emit-partnership__copy p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.emit-partnership__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 25px;
  color: #fff;
  background: #e31e25;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.emit-partnership__button .emit-icon {
  width: 17px;
  height: 17px;
}

.emit-partnership__button:hover {
  color: #fff;
  background: #c41e3a;
  box-shadow: 0 5px 15px rgb(227 30 37 / 30%);
  transform: translateY(-2px);
}

.emit-site-footer {
  color: #555;
  background: #fff;
  font-size: 16px;
}

.emit-main-footer {
  padding: 80px 0 60px;
  border-top: 1px solid #eee;
}

.emit-footer-grid {
  display: grid;
  align-items: start;
  gap: 42px;
  grid-template-columns: 1.45fr .75fr 1fr .9fr 1.3fr;
}

.emit-footer-grid > section {
  min-width: 0;
}

.emit-footer-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin-bottom: 28px;
}

.emit-footer-about > p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.emit-footer-turkak {
  display: block;
  margin: 25px 0;
  object-fit: contain;
}

.emit-footer-title {
  position: relative;
  margin: 0 0 22px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.emit-footer-title::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e31e25;
  content: "";
}

.emit-footer-title--secondary {
  margin-top: 34px;
}

.emit-footer-menu,
.emit-footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.emit-footer-menu li {
  margin-bottom: 8px;
}

.emit-footer-menu a,
.emit-footer-contact a {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease;
}

.emit-footer-menu a:hover,
.emit-footer-contact a:hover {
  color: #e31e25;
}

.emit-footer-contact li {
  display: grid;
  align-items: start;
  gap: 10px;
  margin-bottom: 11px;
  color: #666;
  font-size: 14px;
  grid-template-columns: 16px 1fr;
  line-height: 1.5;
}

.emit-footer-contact .emit-icon {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: #e31e25;
}

.emit-footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.emit-footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #666;
  place-items: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.emit-footer-socials a:hover {
  border-color: #e31e25;
  color: #fff;
  background: #e31e25;
  transform: translateY(-2px);
}

.emit-footer-socials .emit-icon {
  width: 17px;
  height: 17px;
}

.emit-sub-footer {
  padding: 30px 0 20px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.emit-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.emit-legal-links a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: color 180ms ease;
}

.emit-legal-links a:hover {
  color: #e31e25;
}

.emit-sub-footer__bottom {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
}

.emit-sub-footer__bottom p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.emit-sub-footer__bottom img {
  width: auto;
  height: 50px;
  opacity: .8;
  justify-self: center;
}

@media (max-width: 1100px) {
  .emit-footer-grid { gap: 36px 28px; grid-template-columns: repeat(3, 1fr); }
  .emit-footer-about { grid-column: span 3; }
  .emit-footer-logo { width: 300px; }
}

@media (max-width: 900px) {
  .emit-partnership__inner { text-align: center; grid-template-columns: 1fr; }
  .emit-partnership__button { justify-self: center; }
  .emit-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .emit-footer-about { grid-column: span 2; }
}

@media (max-width: 700px) {
  .emit-partnership { padding: 35px 0; }
  .emit-partnership__inner { gap: 22px; }
  .emit-partnership__icon { width: 64px; height: 64px; }
  .emit-partnership__icon .emit-icon { width: 27px; height: 27px; }
  .emit-partnership__copy h2 { font-size: 22px; }
  .emit-partnership__copy p { font-size: 14px; }
  .emit-main-footer { padding: 50px 0 25px; }
  .emit-footer-grid { text-align: center; grid-template-columns: 1fr; }
  .emit-footer-about { grid-column: auto; }
  .emit-footer-logo,
  .emit-footer-turkak { margin-right: auto; margin-left: auto; }
  .emit-footer-title::after { left: 50%; transform: translateX(-50%); }
  .emit-footer-socials { justify-content: center; }
  .emit-footer-contact li { display: flex; justify-content: center; }
  .emit-legal-links { flex-direction: column; align-items: center; gap: 10px; }
  .emit-sub-footer__bottom { gap: 14px; text-align: center; grid-template-columns: 1fr; }
  .emit-sub-footer__bottom img { grid-row: 1; }
}
