/* Footer */
.footer 
{
  background-color: var(--dark);
  color: var(--white);
  padding: 50px 0 25px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px; /* daha az boşluq */
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 0 15px;
}

.footer-col h4 
{
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after 
{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  user-select: none;
}


footer-logo img 
{
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: 2px solid var(--primary);
  padding: 3px;
  object-fit: cover;
  display: block;
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.footer-logo span 
{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  line-height: 1.2;
}

.footer-about 
{
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 10px 0 0 0;
  max-width: 260px;
  text-align: left;
  user-select: none;
}

.footer-links 
{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a 
{
  font-size: 0.92rem;
  color: var(--gray);
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover 
{
  color: var(--primary);
  padding-left: 6px;
}