/*
 * Hızlı Okuma - Premium Footer CSS
 * Modern, profesyonel footer stilleri
 */

footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1.25rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  border-color: transparent;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a i {
  margin-right: 0.75rem;
  color: #6366f1;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #fbbf24;
  padding-left: 0.5rem;
}

.footer-links a:hover i {
  transform: translateX(3px);
  color: #fbbf24;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-item i {
  color: #fbbf24;
  margin-right: 1rem;
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
  flex-grow: 1;
  padding: 1rem 1.25rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

/* ===== MOBILE FOOTER ===== */
@media (max-width: 992px) {
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    border-radius: 14px;
  }
  
  .newsletter-input {
    border-radius: 14px 14px 0 0;
    text-align: center;
  }
  
  .newsletter-button {
    border-radius: 0 0 14px 14px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-about p {
    font-size: 0.9rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.85rem;
  }
}
