/**
 * Premium footer — .lux-footer only
 */

.lux-footer.footer {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 2.75rem) !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #030503 0%, #071107 50%, #040704 100%) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.lux-footer .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lux-footer-inner {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.lux-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .lux-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 1100px) {
  .lux-footer-grid {
    grid-template-columns: 1.15fr 0.9fr 1fr 1.1fr;
    gap: 2rem;
  }
}

/* —— Brand —— */
.lux-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lux-footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.lux-footer-brand-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.lux-footer-brand-title .lux-ft-white {
  color: #f5f5f5;
}

.lux-footer-brand-title .lux-ft-green {
  color: #9fe870;
}

.lux-footer-brand-tag {
  margin-top: 0.2rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fe870;
}

.lux-footer-brand-desc {
  margin: 0 0 1.5rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #b8b8b8;
  max-width: 320px;
}

.lux-footer-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.lux-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(159, 232, 112, 0.45);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fe870;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.lux-footer-social a:hover {
  border-color: #9fe870;
  box-shadow: 0 0 16px rgba(159, 232, 112, 0.35);
  color: #b6ff7a;
}

.lux-footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* —— Column titles —— */
.lux-footer-col-title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.lux-footer-col-line {
  width: 48px;
  height: 2px;
  margin-bottom: 1.35rem;
  background: linear-gradient(90deg, #9fe870, transparent);
  border-radius: 1px;
}

/* Quick links */
.lux-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lux-footer-links li {
  margin: 0 0 0.65rem;
}

.lux-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.lux-footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9fe870;
  flex-shrink: 0;
}

.lux-footer-links a:hover {
  color: #9fe870;
  text-shadow: 0 0 12px rgba(159, 232, 112, 0.35);
}

/* Location card */
.lux-footer-location-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(159, 232, 112, 0.28);
  box-shadow: 0 0 24px rgba(159, 232, 112, 0.08);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(4, 7, 4, 0.88) 0%, rgba(4, 7, 4, 0.94) 100%),
    url('https://res.cloudinary.com/dae3rpnmg/image/upload/q_auto,f_auto/v1769247202/nature-trails_qtkau3.jpg') center / cover no-repeat;
}

.lux-footer-pin {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(159, 232, 112, 0.15);
  border: 1px solid rgba(159, 232, 112, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fe870;
  box-shadow: 0 0 18px rgba(159, 232, 112, 0.2);
}

.lux-footer-pin svg {
  width: 22px;
  height: 22px;
}

.lux-footer-location-name {
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5f5f5;
}

.lux-footer-location-place {
  margin: 0 0 1.25rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #9fe870;
}

.lux-footer-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 232, 112, 0.55);
  background: transparent;
  color: #f5f5f5;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.lux-footer-map-btn:hover {
  border-color: #9fe870;
  color: #9fe870;
  box-shadow: 0 0 20px rgba(159, 232, 112, 0.25);
}

/* Contact cards */
.lux-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lux-footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 232, 112, 0.18);
  background: rgba(8, 12, 8, 0.85);
  box-shadow: 0 0 18px rgba(159, 232, 112, 0.06);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lux-footer-contact-card:hover {
  border-color: rgba(159, 232, 112, 0.35);
  box-shadow: 0 0 22px rgba(159, 232, 112, 0.12);
}

.lux-footer-contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #9fe870, #6bae42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #040704;
}

.lux-footer-contact-icon svg {
  width: 22px;
  height: 22px;
}

.lux-footer-contact-label {
  display: block;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9fe870;
  margin-bottom: 0.15rem;
}

.lux-footer-contact-value {
  display: block;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: #f5f5f5;
  line-height: 1.35;
}

/* Bottom */
.lux-footer-rule {
  height: 1px;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.75rem;
  background: linear-gradient(90deg, transparent, rgba(159, 232, 112, 0.35), transparent);
}

.lux-footer-bottom {
  text-align: center;
}

.lux-footer-copy {
  margin: 0 0 0.75rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: #b8b8b8;
}

.lux-footer-credit {
  margin: 0;
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.lux-footer-heart {
  color: #9fe870;
}

.eco-luxury .lux-footer.footer {
  background: linear-gradient(180deg, #030503 0%, #071107 50%, #040704 100%) !important;
}

.eco-luxury .lux-footer .footer-content {
  display: none !important;
}
