/* ============================================
   Ora Theme - Footer Styles (Redesigned)
   ============================================ */

.ora-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 80px;
  margin-top: 0;
  position: relative;
}

.ora-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.5), transparent);
}

.ora-footer .ora-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Section */
.ora-footer__brand {
  padding-right: 20px;
}

.ora-footer__logo {
  max-height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.ora-footer__brandname {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.ora-footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Social Icons */
.ora-footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.ora-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ora-footer__social a:hover {
  background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.35);
  border-color: transparent;
}

/* Contact Info - 紧凑样式 */
.ora-footer__contact {
  margin-top: 12px;
}

.ora-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.ora-footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: #0071e3;
  flex-shrink: 0;
}

.ora-footer__contact-item a,
.ora-footer__contact-item span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.ora-footer__contact-item a:hover {
  color: #0071e3;
}

.ora-footer__contact-item:hover svg {
  color: #00d4ff;
}

/* Links Section - 4 Columns */
.ora-footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Link Column */
.ora-footer__column {
  display: flex;
  flex-direction: column;
}

.ora-footer__links h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.ora-footer__links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #0071e3, #00d4ff);
  border-radius: 1px;
}

.ora-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ora-footer__menu li {
  margin-bottom: 10px;
}

.ora-footer__menu a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.ora-footer__menu a::before {
  content: '›';
  position: absolute;
  left: -14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
  color: #0071e3;
}

.ora-footer__menu a:hover {
  color: #fff;
  padding-left: 6px;
}

.ora-footer__menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom Bar */
.ora-footer__bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
}

.ora-footer__bottom .ora-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: unset;
  gap: unset;
  padding-bottom: 0;
  border-bottom: none;
}

.ora-footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.ora-footer__legal {
  display: flex;
  gap: 20px;
}

.ora-footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.ora-footer__legal a:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.2);
}

.ora-footer__legal a:hover {
  color: #fff;
}

/* Newsletter Section */
.ora-footer__newsletter {
  margin-top: 12px;
}

.ora-newsletter-form {
  display: flex;
  gap: 8px;
}

.ora-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: all 0.3s;
}

.ora-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ora-newsletter-form input:focus {
  border-color: #0071e3;
  background: rgba(255, 255, 255, 0.08);
}

.ora-newsletter-form button {
  padding: 10px 16px;
  background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ora-newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .ora-footer .ora-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ora-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ora-footer__brand {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .ora-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .ora-footer__column:last-child {
    grid-column: span 2;
  }

  .ora-footer__bottom .ora-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ora-newsletter-form {
    flex-direction: column;
  }
}