/* Footer Layout Styles - Matching Figma Design */

/* Footer Header Section */
.footer-header {
  padding: 24px 0;
}

.footer-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-subscription-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.yl-socials-footer-custom {
  display: flex;
  gap: 12px;
}

/* Footer Columns Section */
.footer-columns {
  padding: 40px 0;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.yl-nav-title {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
}

/* Footer Column Titles */
.footer-column h4,
.footer-column h5,
.footer-column h6 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin: 0 0 16px 0;
}

/* Divider Line */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #dda8a2;
  margin: 0;
}

/* Footer Bottom Section */
.site-footer-copyright {
  padding: 20px 0;
}

.site-footer-copyright .holder {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo-section,
  .footer-subscription-section {
    justify-content: center;
  }

  .footer-columns .vc_col-md-2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .footer-header {
    padding: 20px 0;
  }

  .footer-columns {
    padding: 30px 0;
  }

  .footer-column ul li a {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-column h4,
  .footer-column h5,
  .footer-column h6 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Ensure proper spacing between sections */
.site-footer .page-container {
  margin-bottom: 0;
}

/* Override default widget styles for footer */
.site-footer .widgets-column {
  padding: 0;
}

.site-footer .widgets-column ul {
  margin: 0;
  padding: 0;
}

/* Social Icons Styling */
.footer-column .social-networks {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-column .social-networks a {
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.footer-column .social-networks a:hover {
  opacity: 0.8;
}

/* YL Menu Widget Styles */
.yl-menu-widget {
  font-family: Inter, sans-serif;
}

.yl-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yl-menu-item {
  margin-bottom: 0;
}

.yl-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.yl-menu-link:hover {
  color: #ffffff;
  opacity: 0.8;
}

.yl-menu-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yl-menu-icon i {
  font-size: 18px;
  color: #ffffff;
}

.yl-menu-text {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.yl-menu-badge {
  background-color: #697077;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 400;
  margin-right: 8px;
  min-width: 32px;
  text-align: center;
}

.yl-menu-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yl-menu-arrow i {
  font-size: 18px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.yl-menu-item.has-children .yl-menu-arrow i {
  transform: rotate(0deg);
}

.yl-submenu {
  display: block;
}

.yl-submenu-item {
  margin-bottom: 0;
  position: relative;
}

.yl-submenu-link {
  display: flex;
  align-items: center;
  position: relative;
}

.yl-submenu-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yl-submenu-icon i {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.7;
}

.yl-submenu-text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}

.yl-submenu-badge {
  background-color: #697077;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 400;
  margin-right: 8px;
  min-width: 28px;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.yl-submenu-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yl-submenu-arrow i {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

/* No icons styling */
.yl-menu-widget.no-icons .yl-menu-icon,
.yl-menu-widget.no-icons .yl-submenu-icon {
  display: none;
}

.yl-menu-widget.no-icons .yl-menu-text,
.yl-menu-widget.no-icons .yl-submenu-text {
  margin-left: 0;
}

/* No badges styling */
.yl-menu-widget.no-badges .yl-menu-badge,
.yl-menu-widget.no-badges .yl-submenu-badge {
  display: none;
}

/* No arrows styling */
.yl-menu-widget.no-arrows .yl-menu-arrow,
.yl-menu-widget.no-arrows .yl-submenu-arrow {
  display: none;
}

/* Enhanced submenu styling */
.yl-submenu-item.has-children {
  position: relative;
}

.yl-submenu-item.has-children .yl-submenu-link {
  padding-right: 40px;
}

/* Responsive submenu */
@media (max-width: 768px) {
  .yl-submenu {
    padding-left: 20px;
    margin-top: 2px;
  }

  .yl-submenu-link {
    padding: 6px 8px;
  }

  .yl-submenu-text {
    font-size: 14px;
  }

  .yl-submenu-badge {
    font-size: 10px;
    padding: 1px 4px;
    min-width: 24px;
  }
}
