/* ===================================================
   FSM CATERING — FOOTER
   footer.css
   =================================================== */

/* ===========================
   FOOTER MAIN
   =========================== */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-4xl);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Footer Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer__col {
  display: flex;
  flex-direction: column;
}

/* Footer About (First Column) */
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__logo img {
  height: auto;
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}

.footer__logo-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
}

.footer__about-text {
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-xl);
}

/* Footer Social */
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Footer Headings */
.footer__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--bg-white);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* Footer Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
}

.footer__link::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__link:hover::before {
  transform: translateX(2px);
}

/* Footer Contact Info */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 1rem;
}

.footer__contact-text {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

.footer__contact-text strong {
  display: block;
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 0.125rem;
}

/* Service Areas in Footer */
.footer__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: var(--space-sm);
}

.footer__area-tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  font-size: var(--fs-xs);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer__area-tag:hover {
  background: rgba(var(--accent-rgb), 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

/* WhatsApp CTA in Footer */
.footer__whatsapp {
  margin-top: var(--space-xl);
}


/* ===========================
   FOOTER BOTTOM BAR
   =========================== */
.footer__bottom {
  padding: var(--space-lg) 0;
  margin-top: var(--space-md);
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__copyright a {
  color: var(--accent);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal a:hover {
  color: var(--accent);
}

.footer__legal-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}