:root {
  --brand-dark: #111827;
  --brand-main: #60256c;
  --brand-gold: #eab308;
  --white: #ffffff;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --gray-800: #1f2937;
  --transition: all 0.3s ease;
}

.site-footer {
  background: radial-gradient(circle at 90% 0%, rgba(234, 179, 8, 0.1), transparent 42%), var(--brand-dark);
  color: var(--slate-300);
  font-size: 0.875rem;
  padding: 1.75rem 0 0.9rem;
  border-top: 4px solid var(--brand-gold);
  position: relative;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1.55fr;
  gap: 2.25rem;
  margin-bottom: 1.4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.brand-header img {
  margin-bottom: 0;
  height: 48px;
  width: auto;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
  opacity: 0.95;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-info .footer-title {
  margin: 0 0 0.25rem 0;
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.brand-info .footer-text {
  margin: 0 0 0.65rem 0;
  line-height: 1.45;
  font-weight: 300;
  color: var(--slate-300);
  font-size: 0.84rem;
}

.footer-visitor {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.6rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.footer-visitor:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(234, 179, 8, 0.3);
}

.footer-visitor i {
  color: var(--brand-gold);
  font-size: 1rem;
}

.footer-visitor span {
  color: var(--slate-300);
}

.footer-visitor strong {
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.map-contact-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: transparent;
  padding: 0;
  border: none;
}

.footer-map-container {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  touch-action: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.footer-map-container:hover {
  border-color: var(--brand-gold);
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  pointer-events: auto;
  touch-action: auto;
}

.contact-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.84rem;
  flex: 1;
}

.contact-compact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.42;
}

.contact-compact i {
  color: var(--brand-gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.contact-compact a,
.contact-compact span {
  color: var(--slate-300);
  text-decoration: none;
  transition: var(--transition);
}

.contact-compact a {
  pointer-events: auto;
  position: relative;
  z-index: 6;
}

.contact-compact a:hover {
  color: var(--brand-gold);
}

.contact-highlight {
  font-weight: 600;
  color: var(--white) !important;
}

.contact-highlight:hover,
.contact-highlight:focus-visible {
  color: var(--brand-gold) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-subtitle {
  margin: 0 0 1rem 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-gold);
}

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

.footer-list li {
  margin: 0 0 0.52rem 0;
}

.footer-list a {
  color: var(--slate-300);
  text-decoration: none;
  font-weight: 300;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-list a::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 0.7rem;
  margin-right: 0.5rem;
  opacity: 0;
  color: var(--brand-gold);
  transform: translateX(-5px);
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--brand-gold);
  transform: translateX(5px);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate-400);
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

@media (min-width: 769px) {
  .footer-col-main .footer-visitor {
    margin-top: auto;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.75rem;
  }

  .footer-col {
    align-items: flex-start;
    text-align: left;
  }

  .footer-subtitle::after {
    left: 0;
    transform: none;
  }

  .footer-list a {
    justify-content: flex-start;
  }

  .footer-list a:hover {
    transform: none;
    color: var(--brand-gold);
  }

  .footer-list a::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-col-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.2rem;
  }

  .map-contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .brand-header,
  .footer-col {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-map-container {
    width: 100%;
    max-width: 350px;
    height: 200px;
  }

  .contact-compact li {
    justify-content: center;
    text-align: center;
  }

  .footer-visitor {
    align-self: center;
  }

  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-list a {
    justify-content: center;
  }

  .footer-list a::before {
    display: none;
  }

  .footer-list a:hover {
    transform: none;
    color: var(--brand-gold);
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 5.75rem;
  }

  .footer-links {
    justify-content: center;
  }
}
