/* Footer Styles */

.s-footer {
  background-color: #fff;
  padding: 60px 0 0 0;
  position: relative;
}

.section-blur-effect {
  position: relative;
}

.s-footer__l-page__container {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Main Footer Section */
.s-footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* margin-bottom: 40px; */
  padding-bottom: 40px;
  /* border-bottom: 1px solid #e0e0e0; */
}

/* Footer Part - Logo */
.s-footer__part_logo {
  flex: 0 0 180px;
}

.s-footer__logo-wrapper {
  display: block;
  margin-bottom: 8px;
}

.s-footer__logo-wrapper svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.s-footer__under-logo-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.s-footer__under-logo-text div {
  margin-bottom: 15px;
}

.dmca-badge {
  display: inline-block;
}

.dmca-badge img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Footer Menu */
.c-footer-menu {
  padding: 0;
}

.c-footer-menu__title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-footer-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-footer-menu__item {
  margin-bottom: 10px;
}

.c-footer-menu__link {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.c-footer-menu__link:hover {
  color: #e74c1c;
}

/* Footer Contacts */
.s-footer__part_contacts {
  flex: 1 1 300px;
  min-width: 300px;
}

/* Footer Menu Parts */
.s-footer__part_menu {
  flex: 0 0 120px;
}

.c-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-footer-contacts__item {
  display: flex;
  gap: 15px;
}

.c-footer-contacts__icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer-contacts__icon {
  width: 24px;
  height: 24px;
}

.c-footer-contacts__detail {
  flex: 1;
}
.c-footer-contacts__detail p {
  margin: 0;
}

.c-footer-contacts__title {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.c-footer-contacts__desc {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  margin: 0;
  display: inline-block;
  transition: color 0.3s ease;
}

.c-footer-contacts__desc:hover {
  color: #e74c1c;
}

.c-footer-contacts__desc-sm {
  font-size: 12px;
  color: #999;
  margin-top: 3px;
}

/* Footer Email Form Section */
.s-footer__email-form {
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 80px 0;
}

.s-footer__email-form__l-page__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.s-footer__email-form__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .s-footer__email-form__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.s-footer__email-form__text-block {
  flex: 1;
}

.s-footer__email-form__title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.s-footer__email-form__text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.s-footer__email-form__form {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.s-footer__email-form__input {
  width: 300px;
  min-width: 300px;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: border-color 0.2s ease;
}

.s-footer__email-form__input:focus {
  border-color: #e84b19;
}

.s-footer__email-form__button {
  height: 46px;
  padding: 0 28px;
  background-color: #e84b19;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.s-footer__email-form__button:hover {
  background-color: #c73d13;
}

@media (max-width: 768px) {
  .s-footer__email-form__l-page__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .s-footer__email-form__title {
    font-size: 24px;
  }

  .s-footer__email-form__form {
    width: 100%;
  }

  .s-footer__email-form__input {
    flex: 1;
    width: auto;
    min-width: auto;
  }
}

/* Footer Copyright Section */
.s-footer__copyright {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 30px 20px;
  border-top: 1px solid #e0e0e0;
}

.s-footer__copyright .l-page__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;

  font-size: 12px;
  color: #333;
  margin: 0;
  margin-top: 0px;
  line-height: 1.6;
}
.s-footer__copyright p {
  font-size: 12px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.s-footer__copyright address {
  font-style: normal;
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .s-footer__main {
    gap: 30px;
  }

  .s-footer__part_menu {
    flex: 0 0 110px;
  }

  .s-footer__part_contacts {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .s-footer__main {
    flex-direction: column;
    gap: 30px;
  }

  .s-footer__part_logo,
  .s-footer__part_menu,
  .s-footer__part_contacts {
    flex: 0 0 auto;
    width: 100%;
  }

  .c-footer-contacts {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .c-footer-contacts__item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .s-footer__l-page__container {
    padding: 30px 15px;
  }

  .s-footer__main {
    gap: 25px;
  }

  .c-footer-contacts__item {
    flex: 0 0 100%;
  }

  .s-footer__copyright p {
    font-size: 11px;
  }
}

/* Link Styling */
a {
  color: inherit;
  text-decoration: none;
}

/* Address Styling */
address {
  font-style: normal;
}

/* Padding Utility */
.l-page__container_padding {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .l-page__container_padding {
    padding-left: 15px;
    padding-right: 15px;
  }
}
