/* ============================================
   FOOTER
   ============================================ */

.footer {
  margin-top: 30px;
}

.footer-main {
  background: #141414;
  padding: 70px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo & Description */
.footer-about {
  padding-right: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-about-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 25px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  background: #e8b94a;
  border-color: #e8b94a;
}

.footer-socials a:hover i {
  color: #000;
}

/* Footer Title */
.footer-title {
  font-family: "font_bold";
  font-size: 17px;
  color: #fff;
  margin: 0 0 25px 0;
  position: relative;
  padding-bottom: 12px;
  line-height: 1.4;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e8b94a;
}

/* Quick Links */
.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45) !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #e8b94a;
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 0;
}

.footer-links ul li a:hover {
  color: #e8b94a !important;
  padding-left: 12px;
}

.footer-links ul li a:hover::before {
  width: 8px;
  margin-right: 6px;
}

/* Newsletter */
.footer-newsletter-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer-newsletter-input {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.footer-newsletter-input:focus-within {
  border-color: #e8b94a;
}

.footer-newsletter-input input {
  flex: 1;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 16px;
  font-family: "font_main";
  font-size: 14px;
  color: #fff;
  outline: none;
}

.footer-newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-input button {
  width: 52px;
  height: 48px;
  border: none;
  background: #e8b94a;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-newsletter-input button i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.footer-newsletter-input button:hover {
  background: #d4a63d;
}

.footer-newsletter-input button:hover i {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  background: #0e0e0e;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-route {
  max-width: 100px;
  height: auto;
}


.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}


/* ---- Legacy styles ---- */

.end-page p {
  color: var(--color-gray);
  font-size: 17px;
}

.end-page a {
  display: flex;
  gap: 10px;
  color: var(--color-Primary1);
  align-items: center;
}



.end-page {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 20px 5%;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 75px;
}

.end-page a i {
  color: red;
}

.remove-mune {
  position: absolute;
  top: 30px;
  right: 30px;
}

.remove-mune span {
  width: 40px;
  height: 40px;
  display: block;
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);

  transition-delay: 0.8s;
}

.remove-mune span::after {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.6s linear;
}

.remove-mune span::before {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.2s linear;

  transition-delay: 0.6s;
}

.menu_responsive.active .remove-mune span::before {
  transform: rotate(90deg) translateY(-50%);
}

.menu_responsive.active .remove-mune span {
  transform: rotate(45deg);
}

.element_menu_responsive ul li {
  transform: translateY(100%);
  transition: all 0.2s linear;
  transition-delay: 0.4s;
  display: block;
  opacity: 0;
}

.menu_responsive {
  transition-delay: 1s;
}

.menu_responsive.active {
  transition-delay: 0.3s;
}

.menu_responsive.active .element_menu_responsive ul li {
  transform: translateY(0%);
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(1) {
  transition-delay: 0.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(2) {
  transition-delay: 0.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(3) {
  transition-delay: 0.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(4) {
  transition-delay: 1s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(5) {
  transition-delay: 1.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(6) {
  transition-delay: 1.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(7) {
  transition-delay: 1.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(8) {
  transition-delay: 1.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(9) {
  transition-delay: 2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(10) {
  transition-delay: 2.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(11) {
  transition-delay: 2.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(12) {
  transition-delay: 2.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(13) {
  transition-delay: 2.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(14) {
  transition-delay: 3s;
  opacity: 1;
}