.custom-footer {
  background-color: #2F2F2F;
  color: #ccc;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 90px 0;
}

/* Üst Bilgi */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: "Manrope", sans-serif;
  margin: -0.12em 0 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 14px
}

.footer-links a {
  color: #E9F6F9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #aeae1a;
}

/* Alt Bölüm (Ülkeler ve Şehirler) */
.footer-locations {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 50px;
  
}

.location-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #fff;
  margin: -0.12em 0 20px 0;
}

.location-title a {
	color: #FFFFFF
}

.location-title a:hover {
	color: #FFFFFF
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #6E7070
}

/* Responsive */
@media (max-width: 768px) {
  .footer-locations {
    flex-direction: column;
    gap: 20px;
  }
}

.custom-copyright {
  background-color: transparent;
  border-top: 1px solid #ebf6f933;
}

.copy-container {
  max-width: 1200px;
  padding: 18px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copy-left {
  flex: 1 1 auto;
  color: #FFFFFF;
  font-size: 12px;
}

.copy-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: #FFFFFF;
  font-size: 12px;
}

.copy-link {
  display: inline-block;
  text-decoration: none;
}

.copy-logo {
  max-width: 100%;
  height: 30px;
}

@media (max-width: 1240px) {
	.footer-top, .footer-locations, .copy-left, .copy-right, .custom-social-widget {
		padding: 0 20px 0 20px;
	}
}

@media (max-width: 600px) {
  .copy-container {
    flex-direction: column;
    align-items: center;
	text-align: center;
  }

  .copy-right {
    justify-content: flex-start;
  }
}

.custom-social-widget {
	margin-top: 50px;
}

.custom-th-social a {
    background-color: #ffffff33;
    color: #FFFFFF;
    margin-right: 10px;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	transition: all 0.4s ease;
}

.custom-th-social a:hover {
	background-color: #285c4d;
	color: #FFFFFF;
}