.cm-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
  border-top: 1px solid #222;
  margin-top: 60px;
  color: #ccc;
}

.cm-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 30px 20px;
}

.cm-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.cm-footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.cm-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f7931a, #3b82f6);
}

.cm-footer-content p {
  line-height: 1.6;
  font-size: 14px;
  color: #aaa;
}

.cm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cm-footer-links li {
  margin-bottom: 10px;
}

.cm-footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-block;
}

.cm-footer-links a:hover {
  color: #f7931a;
  transform: translateX(5px);
}

.cm-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.cm-social-link {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  padding: 5px 10px;
  border-radius: 20px;
  background: #1a1a1a;
}

.cm-social-link:hover {
  background: #f7931a;
  color: #fff;
  transform: translateY(-2px);
}

.cm-footer-contact p {
  margin: 5px 0;
  font-size: 14px;
  color: #aaa;
}

.cm-footer-newsletter {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.cm-footer-newsletter .cm-footer-title {
  text-align: center;
}

.cm-footer-newsletter .cm-footer-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
}

.cm-newsletter-text {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 14px;
}

.cm-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.cm-form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cm-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 12px 18px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.2s;
}

.cm-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #f7931a;
  background: #222;
}

.cm-newsletter-form button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #f7931a, #e67e22);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cm-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 147, 26, 0.3);
}

.cm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #666;
}

.cm-copyright {
  color: #666;
}

.cm-footer-legal a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.cm-footer-legal a:hover {
  color: #f7931a;
}

@media (max-width: 768px) {
  .cm-footer-container {
    padding: 40px 20px 20px;
  }

  .cm-footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cm-footer-title,
  .cm-footer-content p,
  .cm-footer-links,
  .cm-footer-contact {
    text-align: center;
  }

  .cm-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cm-footer-social {
    justify-content: center;
  }

  .cm-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cm-form-group {
    flex-direction: column;
  }

  .cm-newsletter-form input[type="email"],
  .cm-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cm-footer-columns {
    gap: 25px;
  }

  .cm-footer-title {
    font-size: 16px;
  }

  .cm-copyright,
  .cm-footer-legal {
    font-size: 11px;
  }
}