/* Footer Section Styles */
.footer-section {
  background: var(--black);
  color: #fff;
  position: relative;
  width: 100%;
  font-family: 'Oxanium', sans-serif;
  overflow-x: hidden;
  overflow-y: visible;
}
.footer-container {
  margin: 0 auto;
  padding: 50px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.footer-left {
  flex: 1 1 340px;
  min-width: 320px;
  z-index: 2;
}
.footer-title {
    font-size: var(--text-heading-size, 28px);
    font-weight: var(--text-heading-weight, 800);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-divider {
  width: 130px;
  border: 1.5px solid var(--white);
  margin-top: var(--line-spacing-top);
  margin-bottom: var(--line-spacing-bottom);
}
.footer-email {
  font-size: 1.2rem;
  margin-bottom: 18px;
  display: block;
  color: #fff;
}
.footer-btn {
  background: var(--orange, #EF4D25);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Oxanium', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
}
.footer-btn:hover {
  background: #d13e1c;
}
.footer-socials {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-socials a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: var(--orange, #EF4D25);
}
.footer-location {
  margin-bottom: 32px;
}
.footer-location-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-location-details {
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
}
.footer-paper {
  position: absolute;
  right: 0;
  top: 32px;
  width: 44vw;
  max-width: 480px;
  min-width: 320px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-paper-img {
  width: 140%;
  height: auto;
  display: block;
  transform: translateY(250px) translateX(20px);
}
.footer-seo {
  padding: 24px 100px;
  background: var(--black);
}
.footer-seo p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.footer-bottom {
  width: auto;
  margin: 0 auto;
  padding: 18px 8px 18px 8px;
  margin: 18px 100px;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
  border-top: 1px solid #fff;
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--orange, #EF4D25);
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    padding: 50px 24px;
  }
  .footer-paper {
    position: static;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    margin-top: 32px;
    justify-content: center;
  }
  .footer-paper-text {
    position: static;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    text-align: center;
    margin-top: -48px;
    font-size: 1.2rem;
  }
  .footer-bottom {
    margin: 18px 24px;
    width: auto;
  }
  .footer-title {
    font-size: var(--mobile-subheading-size, 24px);
    font-weight: var(--mobile-subheading-weight, 800);
  }
  .footer-divider {
    width: 100px;
    margin-top: var(--mobile-line-spacing-top);
    margin-bottom: var(--mobile-line-spacing-bottom);
  }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    padding: 50px 24px 0 24px;
  }
  .footer-paper {
    display: none !important;
  }
  .footer-seo {
    padding: 24px;
  }
  .footer-divider {
    width: 100px;
    margin-top: var(--mobile-line-spacing-top);
    margin-bottom: var(--mobile-line-spacing-bottom);
  }
}


@media (max-width: 1280px) {
  .footer-paper-img {
    transform: translateY(250px) translateX(120px);
  }
}

@media (max-width: 1100px) {
  .footer-container {
    padding: 40px 32px 0 32px;
  }
  .footer-bottom {
    margin: 18px 32px;
  }
  .footer-title {
    font-size: var(--tablet-subheading-size, 24px);
    font-weight: var(--tablet-subheading-weight, 800);
  }
    .footer-divider {
        width: 100px;
        margin-top: var(--tablet-line-spacing-top);
        margin-bottom: var(--tablet-line-spacing-bottom);
    }
}
