/* --- DNK Dev - Modern Footer --- */

.footer {
  background: #ffffff;
  margin-top: 120px;
}

/* Footer CTA Section */
.footer-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #cc1f3a 100%);
  padding: 80px 8%;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-inner {
  width: min(1400px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.footer-cta .btn {
  background: white;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta-btn {
  border-radius: 999px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-cta .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Footer Main Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.7fr 2.3fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 8% 60px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 44px;
  height: auto;
  display: block;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-logo-text strong {
  color: var(--accent);
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 480px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 32px;
}

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

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.newsletter-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.newsletter-form input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 95, 127, 0.12);
}

.newsletter-btn {
  min-width: 140px;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--accent);
  color: white;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-btn:hover {
  background: #cc1f3a;
  transform: translateY(-2px);
}

.newsletter-response {
  font-size: 0.92rem;
  margin-top: 12px;
  color: var(--text-muted);
}

/* Footer Bottom */
 .footer-bottom {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 30px 8%;
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 8%;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 8%;
  }
  
  .footer-cta-inner {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-cta h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    padding: 40px 8%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}
