/* footer.css */

.cd-footer {
  background: #1a1a1a; /* Dark, professional background */
  color: #e0e0e0;
  padding: 2.5rem 2rem 2rem;
  font-family: 'Sora', system-ui, sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.cd-footer__container {
  width: 100%;
  max-width: none; /* Full width */
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  justify-items: start; /* Left alignment */
}

/* Brand */
.cd-footer__brand .cd-footer__logo {
  font-weight: 600;
  color: #ccc; /* Red as preferred */
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
}

/* About */
.cd-footer__about {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #ccc;
  max-width: none;
}

.cd-footer__about a {
  color: #fff;
  text-decoration: underline;
}

.cd-footer__about a:hover {
  color: #c00;
}

/* Contact */
.cd-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.95rem;
}

.cd-footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.cd-footer__contact a:hover {
  color: #c00;
}

.cd-footer__contact i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
}

/* Links */
.cd-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.95rem;
}

.cd-footer__links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.cd-footer__links a:hover {
  color: #c00;
}

/* Social */
.cd-footer__social {
  display: flex;
  gap: 1rem;
}

.cd-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #e0e0e0;
  font-size: 18px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cd-footer__social a:hover {
  background: #c00;
  color: white;
  transform: translateY(-2px);
}

/* Copyright */
.cd-footer__copyright {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: #888;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cd-footer {
    padding: 2rem 1.25rem 1.75rem;
  }

  .cd-footer__container {
    gap: 1.5rem;
  }

  .cd-footer__brand .cd-footer__logo {
    font-size: 1.3rem;
  }

  .cd-footer__about {
    font-size: 0.9rem;
  }

  .cd-footer__contact,
  .cd-footer__links {
    font-size: 0.9rem;
  }

  .cd-footer__social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}