.kitingplanet-footer {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  padding: 50px 30px 20px;
  color: #e0e0e0;
  font-family: 'Playfair Display', serif;
}

.kitingplanet-footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.kitingplanet-footer__left {
  flex: 1;
  min-width: 250px;
}

.kitingplanet-footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.kitingplanet-footer__logo img {
  height: 50px;
  filter: brightness(1.2);
}

.kitingplanet-footer__brand {
  font-size: 20px;
  font-weight: 600;
  color: #f9c56d;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kitingplanet-footer__note {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 15px;
  max-width: 300px;
}

.kitingplanet-footer__right {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.kitingplanet-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.kitingplanet-footer__menu a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.kitingplanet-footer__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background: #f9c56d;
  transition: width 0.3s ease;
}

.kitingplanet-footer__menu a:hover {
  color: #f9c56d;
}

.kitingplanet-footer__menu a:hover::after {
  width: 100%;
}

.kitingplanet-footer__bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .kitingplanet-footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kitingplanet-footer__right {
    justify-content: center;
  }

  .kitingplanet-footer__menu {
    text-align: center;
  }
}
