/* ===================================================
   FOOTER CSS — includes/footer.css
   =================================================== */

/* ===== FOOTER ===== */
footer {
  background: var(--crimson-dark);
  color: rgba(255, 255, 255, .75);
  padding: 50px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.footer-top {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-top .vac-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 12px;
}

.footer-top .vac-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-top .vac-tags a {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  padding: 6px 17px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease;
  border: 1px solid rgba(255, 255, 255, .12);
}

.footer-top .vac-tags a:hover {
  background: var(--amber);
  color: white;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 2fr 1.4fr 1.6fr;
  gap: 32px;
  padding: 36px 0 30px;
}

.footer-col .fc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.fc-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201, 146, 58, .35);
  flex-shrink: 0;
}

.fc-logo-img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.fc-brand {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
  font-family: var(--font-display);
}

.fc-brand span {
  color: var(--amber);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
  font-family: var(--font-display);
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 2;
  display: block;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--amber-light);
}

.footer-col .phone {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col .phone i {
  color: var(--amber);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  transition: background .2s ease;
  border: 1px solid rgba(255, 255, 255, .12);
}

.footer-social a:hover {
  background: var(--amber);
  color: white;
}

.footer-address-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  padding: 10px 14px;
}

.fac-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(176, 125, 40, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fac-icon i {
  color: var(--amber);
  font-size: 13px;
}

.fac-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.65;
}

.fac-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 3px;
}

.fc-link-arrow {
  font-size: 10px;
  color: var(--amber);
  margin-right: 4px;
  transition: transform .2s ease;
}

.footer-col a:hover .fc-link-arrow {
  transform: translateX(3px);
}

.vac-address-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: default;
  pointer-events: none;
}

.vac-address-tag i {
  color: var(--amber);
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom span {
  color: var(--amber-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}