/* Footer and contact wala*/

.contact-footer {
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left column - categories */
.footer-left {
  flex: 1;
  min-width: 250px;
  overflow: hidden;
}

.footer-links {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.8rem;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.footer-links li:hover {
  /* background: rgba(102, 126, 234, 0.1);  */
  border: 1px solid #667be6;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li:hover a {
  color: #667eea;
}

/* Right column - contact form */
.footer-right {
  padding-left: 10rem;
  flex: 1.2;
  min-width: 280px;
}

.footer-desc {
  margin-bottom: 20px;
  color: #ccc;
}

/* Social buttons row stays centered */
.footer-social {
  justify-content: flex-start;
  margin-top: 20px;
}

/* Bottom strip */

.footer-title {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.8rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #667be6;
}

.contact-form button.join-btn {
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-top: 2rem;
}

.footer-social a {
  color: #fff;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.03);
}

.footer-social a:hover {
  color: #667eea !important;
  scale: 1.2;
}

.footer-rights {
  /* height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center; */
  background: #1b1b3b;
  text-align: center;
  margin-top: 20px;
  color: #ccc;
  font-size: 0.95em;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-right {
    padding-left: 0;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-right {
    padding-left: 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }
}