/* ===========================
   FOOTER
   =========================== */
.em-footer {
  position: relative;
  overflow: hidden;
}

.em-footer__inner {
  background: linear-gradient(180deg, var(--em-navy2) 0%, #020c1b 100%);
  border-top: 1px solid var(--em-border-gold);
  padding: 80px 0 60px;
  position: relative;
}

.em-footer__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid */
.em-footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
}

/* Brand col — logo wrapper */
.em-footer__logo-wrap {
  display: block;
  margin-bottom: 18px;
}

/* Combined: logo image + name side by side */
.em-footer__logo-wrap--combined {
  display: flex;
  align-items: center;
  gap: 12px;
}

.em-footer__logo-wrap--combined .custom-logo {
  margin-bottom: 0;
}

.em-footer__logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--em-white);
}

/* Only add bottom margin when not in combined wrapper */
.em-footer__logo-wrap:not(.em-footer__logo-wrap--combined) .em-footer__logo-text {
  display: block;
}

.em-footer__logo-text span {
  color: var(--em-gold);
}

.em-footer__brand .custom-logo {
  height: 44px;
  width: auto;
  margin-bottom: 0;
  display: block;
}

.em-footer__tagline {
  font-size: 0.9rem;
  color: var(--em-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.em-footer__socials {
  display: flex;
  gap: 10px;
}

.em-footer__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--em-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--em-transition);
}

.em-footer__social:hover {
  background: rgba(245,158,11,0.15);
  border-color: var(--em-gold);
  color: var(--em-gold);
  transform: translateY(-3px);
}

/* Business hours */
.em-footer__hours {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.em-footer__hours div {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 7px;
}

.em-footer__hours i {
  color: var(--em-gold);
  opacity: 0.6;
  width: 12px;
}

/* Column */
.em-footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--em-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--em-border-gold);
}

.em-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.em-footer__links li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--em-transition-fast);
}

.em-footer__links li a::before {
  content: '›';
  color: var(--em-gold);
  font-size: 1rem;
}

.em-footer__links li a:hover {
  color: var(--em-white);
  padding-left: 4px;
}

/* Contact */
.em-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.em-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.em-footer__contact li i {
  color: var(--em-gold);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.em-footer__contact li a {
  color: rgba(255,255,255,0.55);
  transition: color var(--em-transition-fast);
}

.em-footer__contact li a:hover {
  color: var(--em-gold);
}

/* Footer Bar */
.em-footer__bar {
  background: #020c1b;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 18px 0;
}

.em-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.em-footer__copy,
.em-footer__credit {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  line-height: 1.5;
}
