/* Way2Fly footer — sticky-header dark theme */
:root {
  --w2f-footer-bg: #081828;
  --w2f-footer-bottom: #060f18;
  --w2f-footer-accent: #ffd200;
  --w2f-footer-accent-hover: #e6bc00;
  --w2f-footer-white: #ffffff;
  --w2f-footer-muted: rgba(255, 255, 255, 0.82);
}

.main-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--w2f-footer-bg);
}

.main-footer.section-space-t {
  padding-top: 100px;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .main-footer.section-space-t {
    padding-top: 80px;
  }
}

.main-footer .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* Match sticky header side inset (foxico-hero.css uses 40px) */
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1199px) {
  .main-footer .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 575px) {
  .main-footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main-footer__row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  .main-footer__row {
    padding-bottom: 50px;
  }
}

/* About column — flush left with header logo */
.footer-widget--about {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.footer-widget__logo {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 0;
}

.footer-widget__logo img {
  max-width: 240px;
  height: auto;
  display: block;
}

.footer-widget__text {
  margin: 0 0 24px;
  max-width: 380px;
  color: var(--w2f-footer-muted);
  line-height: 1.7;
}

.main-footer .social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.main-footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 400ms ease;
}

.main-footer .social-links a:hover {
  border-color: var(--w2f-footer-accent);
  background-color: var(--w2f-footer-accent);
}

.main-footer .social-links__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--w2f-footer-white);
}

/* Titles */
.footer-widget__title {
  margin-bottom: 28px;
  font-size: 22px;
  color: var(--w2f-footer-white);
  font-weight: 700;
  line-height: 1.363;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-widget__title {
    margin-bottom: 22px;
  }
}

/* Quick links */
.footer-widget--links {
  padding-left: 0;
  padding-right: 0;
}

.footer-widget__links {
  margin: 0;
  padding-left: 0;
}

.footer-widget__links li + li {
  margin-top: 12px;
}

.footer-widget__links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--w2f-footer-muted);
  transition: color 400ms ease;
}

.footer-widget__links li a i {
  font-size: 13px;
  color: var(--w2f-footer-accent);
  transition: color 400ms ease, transform 400ms ease;
}

.footer-widget__links li a:hover {
  color: var(--w2f-footer-white);
}

.footer-widget__links li a:hover i {
  color: var(--w2f-footer-white);
  transform: translateX(3px);
}

/* Contact column */
.footer-widget--contact {
  padding-left: 0;
  padding-right: 0;
}

.footer-widget__contact {
  margin: 0;
  padding-left: 0;
}

.footer-widget__contact li,
.footer-widget__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-widget__contact-item--phones {
  align-items: flex-start;
}

.footer-widget__contact li + li,
.footer-widget__contact-item + .footer-widget__contact-item {
  margin-top: 22px;
}

.footer-widget__contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--w2f-footer-bg);
  background: rgba(255, 210, 0, 0.95);
  border: 1px solid rgba(255, 210, 0, 0.95);
  transition: all 400ms ease;
}

.footer-widget__contact-item--phones .footer-widget__contact-icon {
  margin-top: 2px;
}

.footer-widget__contact li:hover .footer-widget__contact-icon,
.footer-widget__contact-item:hover .footer-widget__contact-icon {
  color: var(--w2f-footer-bg);
  background: var(--w2f-footer-accent);
  border-color: var(--w2f-footer-accent);
}

.footer-widget__contact-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 0;
  min-height: 44px;
}

.footer-widget__contact-body--phones {
  justify-content: flex-start;
  min-height: 0;
  gap: 8px;
  padding-top: 2px;
}

.footer-widget__contact-body--phones a {
  display: block;
  line-height: 1.5;
}

.footer-widget__contact-body a {
  display: inline-block;
  font-size: 16px;
  color: var(--w2f-footer-muted);
  line-height: 1.5;
  transition: color 400ms ease;
  word-break: break-word;
}

.footer-widget__contact-city {
  color: var(--w2f-footer-accent);
  font-weight: 700;
}

.footer-widget__contact-body a:hover {
  color: var(--w2f-footer-white);
}

.footer-widget__contact-body a:hover .footer-widget__contact-city {
  color: var(--w2f-footer-white);
}

/* Bottom bar */
.main-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--w2f-footer-bottom);
}

.main-footer__bottom__inner {
  display: flex;
  gap: 20px 30px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }
}

.main-footer__copyright,
.main-footer__credit {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.main-footer__copyright a,
.main-footer__credit a {
  color: var(--w2f-footer-white);
  transition: color 400ms ease;
}

.main-footer__copyright a:hover,
.main-footer__credit a:hover {
  color: var(--w2f-footer-accent);
}
