/* Newsletter Section */
.footer-newsletter {
  background: #181818;
  color: #fff;
  padding: 48px 0 32px 0;
}
.footer-newsletter .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-left h2 {
  font-size: 2em;
  margin-bottom: 16px;
  font-weight: 600;
}
.newsletter-left p {
  font-size: 1.1em;
  margin: 0;
  opacity: 0.95;
  max-width: 600px;
}
.newsletter-right {
  display: flex;
  max-width: 500px;
  gap: 0;
  align-items: stretch;
}
.newsletter-right input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: 24px 0 0 24px;
  font-size: 1em;
  background: #fff;
  color: #222;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.newsletter-right input[type="email"]:focus {
  box-shadow: 0 4px 16px rgba(232,70,66,0.12);
}
.newsletter-right button {
  padding: 0 24px;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 0 24px 24px 0;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-width: 90px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-right button:hover {
  background: #c62828;
  box-shadow: 0 4px 16px rgba(232,70,66,0.12);
}
.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 0 0 32px 0;
}

/* Main Footer */
.footer-main {
  background: #181818;
  color: #fff;
  padding: 32px 0 0 0;
}
.footer-main .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer-col {
  min-width: 180px;
}
.logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo-img {
  width: 180px;
  max-width: 100%;
  /* filter: brightness(0) invert(1); */
  filter: none !important;
}
.footer-col h3 {
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.footer-underline {
  width: 40px;
  height: 3px;
  background: #ef4444;
  margin-bottom: 18px;
  border-radius: 2px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 1em;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 4px;
  padding: 2px 4px;
}
.footer-col ul li a:hover {
  color: #ef4444;
  background: #fff1f1;
}
.footer-contact-list {
  padding-left: 0;
}
.footer-icon {
  color: #ef4444;
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

/* Bottom Bar */
.footer-bottom {
  background: #111;
  color: #fff;
  padding: 18px 0 0 0;
  text-align: center;
  font-size: 0.98em;
}
.footer-bottom a {
  color: #ef4444;
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-main .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .footer-newsletter {
    padding: 18px 0 12px 0;
  }
  .footer-newsletter .container {
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    padding: 0 2vw;
  }
  .newsletter-left h2 {
    font-size: 1.08em;
    margin-bottom: 2px;
    text-align: center;
    word-break: break-word;
    max-width: 98vw;
  }
  .newsletter-left p {
    font-size: 0.95em;
    text-align: center;
    margin-bottom: 6px;
    margin-top: 0;
    word-break: break-word;
    max-width: 98vw;
  }
  .newsletter-right {
    background: none !important;
    border-radius: 24px;
    box-shadow: none !important;
    padding: 0;
    margin: 8px auto 0 auto;
    max-width: 340px;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 0;
    justify-content: center;
    backdrop-filter: none !important;
    gap: 0;
  }
  .newsletter-right input[type="email"] {
    border-radius: 22px 0 0 22px !important;
    margin-bottom: 0 !important;
    font-size: 1em !important;
    padding: 12px 14px !important;
    height: 44px !important;
    border: none;
    background: transparent !important;
    box-shadow: none;
    flex: 1 1 auto;
    min-width: 0;
    color: #fff;
    border-right: none !important;
    word-break: break-word;
    max-width: 100vw;
  }
  .newsletter-right button {
    border-radius: 0 22px 22px 0 !important;
    font-size: 1.08em !important;
    padding: 0 22px !important;
    margin-top: 0 !important;
    min-width: 0 !important;
    height: 44px !important;
    background: linear-gradient(90deg, #ef4444 60%, #e84642 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(232,70,66,0.10);
    letter-spacing: 0.5px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin-left: -4px !important;
    word-break: break-word;
    max-width: 100vw;
  }
  .newsletter-right button:active {
    transform: scale(0.97);
    box-shadow: 0 1px 2px rgba(232,70,66,0.08);
  }
  .newsletter-right button:hover {
    background: linear-gradient(90deg, #c62828 60%, #e84642 100%);
  }
}
@media (max-width: 600px) {
  .footer-newsletter .container {
    padding: 0 1vw;
  }
  .newsletter-left h2 {
    font-size: 0.98em;
  }
  .newsletter-left p {
    font-size: 0.9em;
  }
  .newsletter-right {
    flex-direction: column;
    max-width: 99vw;
    gap: 6px;
    align-items: stretch;
  }
  .newsletter-right input[type="email"] {
    border-radius: 12px 12px 0 0 !important;
    height: 38px !important;
    font-size: 0.98em !important;
    padding: 10px 10px !important;
    background: #222 !important;
    color: #fff !important;
    margin-bottom: 0 !important;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100vw;
  }
  .newsletter-right button {
    border-radius: 0 0 12px 12px !important;
    height: 38px !important;
    font-size: 0.98em !important;
    padding: 10px 0 !important;
    width: 100%;
    margin-left: 0 !important;
    max-width: 100vw;
  }
}
@media (max-width: 500px) {
  .footer-newsletter, .footer-newsletter .container, .newsletter-right {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  .newsletter-right {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    margin: 6px 0 0 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .newsletter-right input[type="email"], .newsletter-right button {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    overflow-x: hidden !important;
  }
  .newsletter-right input[type="email"] {
    border-radius: 10px 10px 0 0 !important;
    height: 36px !important;
    font-size: 0.95em !important;
    padding: 8px 8px !important;
    background: #222 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
  }
  .newsletter-right button {
    border-radius: 0 0 10px 10px !important;
    height: 36px !important;
    font-size: 0.95em !important;
    padding: 8px 0 !important;
    background: linear-gradient(90deg, #ef4444 60%, #e84642 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
  }
}
