/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background-color: #1f1f1f;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  margin-top: auto;
  border-top: 3px solid #8b0e0e;
}

.new_footer ul{
  margin: 0 ;
  padding: 0;
  list-style: none;
}

.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82) !important;
}
.site-footer a:hover {
  color: #d4af37 !important;
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column li {
  margin-bottom: 12px;
}
.footer-column a {
  transition: color 250ms ease-in-out ease-in-out;
}
.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}
.footer-links a {
  font-size: 14px;
}

.footer-banner {
  border-radius: 12px;
  padding: 32px 16px;
  margin-bottom: 32px;
  text-align: center;
  color: #222222;
}
@media (min-width: 768px) {
  .footer-banner {
    padding: 32px;
  }
}
.footer-banner h3 {
  color: #222222;
  font-size: 20px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .footer-banner h3 {
    font-size: 24px;
  }
}
.footer-banner p {
  color: rgba(34, 34, 34, 0.9);
  margin-bottom: 16px;
}
.footer-banner .btn {
  background-color: #222222;
  color: #ffffff;
}
.footer-banner .btn:hover {
  background-color: #090909;
}

.footer-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 16px;
}
.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer-navigation ul {
    justify-content: flex-end;
  }
}
.footer-navigation a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 250ms ease-in-out ease-in-out;
}
.footer-navigation a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 250ms ease-in-out ease-in-out, color 250ms ease-in-out ease-in-out;
}
.footer-social a:hover {
  background-color: #d4af37;
  color: #222222;
}
.footer-social a svg,
.footer-social a i {
  width: 20px;
  height: 20px;
}

.footer-bottom-border {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  padding: 32px 24px 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-brand { padding: 40px 40px 0; }
}
@media (min-width: 1024px) {
  .footer-brand { padding: 48px 48px 0; }
}
.footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.footer-brand a:hover img {
  opacity: 1;
}

.new_footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 24px 32px;
  background: transparent;
}
@media (min-width: 768px) {
  .new_footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 40px 36px;
  }
}
@media (min-width: 1024px) {
  .new_footer {
    grid-template-columns: repeat(3, 1fr);
    padding: 56px 48px 40px;
  }
}
.new_footer .column {
  min-height: auto;
}
.new_footer .column.info {
  padding: 0;
}
.new_footer .column span.title {
  display: block;
  font-weight: 700;
  color: #d4af37;
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.new_footer .column span.title:first-child {
  margin-top: 0;
}
.new_footer .column li {
  line-height: 2.2;
}
.new_footer a,
.new_footer ul li a,
.new_footer .menu li a {
  color: rgba(255, 255, 255, 0.82) !important;
  transition: color 150ms ease;
}
.new_footer a:hover,
.new_footer ul li a:hover,
.new_footer .menu li a:hover {
  color: #d4af37 !important;
  text-decoration: none;
}
.new_footer .column.facebook > span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  line-height: 1.8;
}
.new_footer .footer_newsletter {
  margin-top: 20px;
}
.new_footer .footer_newsletter .mc4wp-form,
.new_footer .footer_newsletter form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.new_footer .footer_newsletter p,
.new_footer .footer_newsletter label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0 0 10px;
}

.new_footer .footer_newsletter .mc4wp-form-fields {
  display: flex;
  gap: 8px;
}

@media (max-width: 600px) {
 .new_footer .footer_newsletter .mc4wp-form-fields  {
    flex-direction: column;
  }
}

.new_footer .footer_newsletter input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 150ms ease;
  min-width: 0;
}
.new_footer .footer_newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.new_footer .footer_newsletter input[type="email"]:focus {
  border-color: #d4af37;
}
.new_footer .footer_newsletter input[type="submit"] {
  padding: 10px 18px;
  background: #8b0e0e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 150ms ease;
}
.new_footer .footer_newsletter input[type="submit"]:hover {
  background: #6b0909;
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
