/* Footer Specific Styles */
footer.main-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 0;
  font-family: "Inter", sans-serif;
  padding-bottom: 40px;
}

.footer-top-orange {
  background: linear-gradient(90deg, #ff6a00 0%, #ee0979 100%);
  padding: 40px 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 80px 0 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-subscribe-form {
    flex-direction: column;
  }
}

.footer-logo-section {
  grid-row: 1;
  grid-column: 1;
}

.join-network-section {
  grid-row: 1;
  grid-column: 2 / span 3;
}

@media (max-width: 1024px) {
  .join-network-section {
    grid-row: auto;
    grid-column: span 1;
  }
}

.footer-details-section {
  grid-row: 2;
  grid-column: 1;
}

.footer-links-column {
  grid-row: 2;
}

@media (max-width: 1024px) {
  .footer-details-section,
  .footer-links-column {
    grid-row: auto;
    grid-column: auto;
  }
}

.footer-logo-section img {
  max-width: 250px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  font-family: "Inter", sans-serif;
}

.footer-description {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.company-details {
  font-size: 13px;
  color: #888;
}

.company-details div {
  margin-bottom: 8px;
}

.company-details strong {
  color: #ccc;
}

.contact-info {
  margin-top: 20px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0a0a0;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ff9900;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  font-family: "Inter", sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.footer-column ul li a:hover {
  color: #ff9900;
  padding-left: 5px;
}

/* Subscription Form Section (Orange Box in image) */

.join-network-section h3 {
  font-size: 32px;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
}

.join-network-section h3 span {
  color: #ff6a00;
}

.join-network-section p {
  color: #888;
  font-size: 14px;
  margin-bottom: 30px;
}

.footer-subscribe-form {
  display: flex;
  background: #1a1a1a;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #333;
}

.footer-subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
}

.footer-subscribe-form input:focus {
  outline: none;
}

.footer-subscribe-form button {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe-form button:hover {
  background: #e65c00;
}

/* Trust & Payments Section */
.footer-middle-bar {
  border-top: 1px solid #222;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-middle-bar {
    flex-direction: column;
    gap: 20px;
  }

  .trust-badges {
    flex-direction: column;
    align-self: start;
  }
}

.trust-badges {
  display: flex;
  gap: 20px;
}

.trust-badge {
  background: #1a1a1a;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  border: 1px solid #333;
}

.trust-badge svg {
  color: #ff6a00;
  width: 16px;
  height: 16px;
}

.payment-methods {
  display: flex;
  gap: 10px;
}

.payment-methods img {
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.payment-methods img:hover {
  opacity: 1;
}

/* DMCA Box */
.dmca_box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px 40px;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}

/* Removed marquee wrapper */

.dmca_box h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.dmca_box p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* Removed marquee animation and hover selector */

/* Bottom Copyright Section */
.footer-bottom-copyright {
  margin-top: 40px;
  text-align: center;
}

.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 30px;
}

.footer-bottom-copyright p {
  color: #666;
  font-size: 13px;
  font-family: "Inter", sans-serif;
}

/* Fixed DMCA Bar */
.fixed-dmca-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  border-top: 1px solid #333;
  color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  font-family: inherit;
  font-size: 11px;
}

.fixed-dmca-bar p {
  margin: 0;
  color: #ddd;
  text-align: center;
  gap: 10px;
}

.fixed-dmca-bar .dmca-badge {
  display: inline-flex;
  align-items: center;
}

.fixed-dmca-bar .dmca-badge img {
  height: 20px;
  width: auto;
}

body {
  padding-bottom: 40px; /* Leave space for the fixed bar */
}

/* DMCA Mobile Toggle */
.dmca-toggle-btn {
  display: none;
}

@media (max-width: 767px) {
  .fixed-dmca-bar p {
    font-size: 10px;
    text-align: center;
  }
  .dmca-more-text {
    display: none;
  }
  .dmca-toggle-btn {
    display: flex;
    color: #ff9900 !important;
    text-decoration: underline !important;
    margin-top: 5px;
    justify-content: center;
    font-weight: bold;
  }
  .fixed-dmca-bar.expanded .dmca-more-text {
    display: inline;
  }
  .fixed-dmca-bar .container {
    padding: 0 10px;
  }
}
