.footer-main {
  background-color: #00000008;
  color: var(--pmk-dark);
  padding: 80px 20px;
  margin-top: 60px;
}

.footer-main .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 3px solid var(--pmk-green);
  padding-left: 10px;
}

.footer-main .widget-description {
  color: dimgray;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: justify;
}

.footer-main .pmk-mini-logo {
  width: 22%;
  object-fit: contain;
}

.footer-main .social-icons {
  padding: 0;
  margin-top: 18px;
}

.social-icons li {
  display: inline-flex;
}

.social-icons .social-link {
  color: var(--pmk-blue-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.social-icons .social-link:hover {
  color: var(--pmk-white);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.twitter:hover {
  background: #000000;
}

.social-link.instagram:hover {
  background: #e4405f;
}

.social-link.github:hover {
  background: #333333;
}

.footer-main nav {
  gap: 10px;
  margin-top: 50px;
}

.footer-main .nav-link {
  color: dimgray;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
}

.footer-main .nav-link:hover {
  color: var(--pmk-dark);
}

.footer-main .address {
  margin-top: 50px;
}

.footer-main .address p {
  color: dimgray;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer-main .address p a {
  color: dimgray;
}

.footer-main .address p:nth-child(n + 1) {
  margin-bottom: 10px;
}

.footer-main .newsletter h5 {
  margin: 10px 0 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* newsletter form wrapper */
.footer-main .newsletter form {
  display: flex;
  align-items: center;
  border: 1px solid dimgray;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.footer-main .newsletter form input {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.85rem;
  border: none;
  outline: none;
  color: dimgray;
}

.footer-main .newsletter form input::placeholder {
  color: dimgray;
}

.footer-main .newsletter form button {
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--pmk-green);
  color: var(--pmk-white);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* hover */
.footer-main .newsletter form button:hover {
  background: #007a59;
}

/* copyright styles  */
footer .copyright {
  padding: 20px;
}

.copyright .copyright-content {
  max-width: 1400px;
  margin: 0 auto;
}

.copyright .copyright-content .copy-text {
  font-size: 0.875rem;
}

.copyright-content .nav .nav-item .nav-link {
  color: dimgray;
  transition: 0.3s ease;
}

.copyright-content .nav .nav-item .nav-link:hover {
  color: lightgray;
}

/* responsive styles:: extra small devices  */
@media (max-width: 767.98px) {
  .container-width {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .footer-main .widget-title {
    margin-top: 30px;
  }

  .footer-main nav {
    margin-top: 30px;
  }

  .footer-main .newsletter form {
    flex-direction: column;
    align-items: stretch;
    border: none;
    background: none;
    gap: 8px;
  }

  .footer-main .newsletter form input {
    width: 100%;
    border: 1px solid dimgray;
    border-radius: 4px;
  }

  .footer-main .newsletter form button {
    width: 100%;
    border-radius: 4px;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-main .widget-title {
    margin-top: 30px;
  }

  .footer-main nav {
    margin-top: 30px;
  }

  .footer-main .newsletter form button {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-main .newsletter form {
    flex-direction: column;
    gap: 8px;
    border: none;
    background: none;
  }

  .footer-main .newsletter form input,
  .footer-main .newsletter form button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-main .newsletter form input {
    border: 1px solid dimgray;
  }
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-main .newsletter form input {
    width: 60%;
    border-radius: 4px;
  }

  .footer-main .newsletter form button {
    width: 39.5%;
    border-radius: 4px;
  }
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
