/* ================================================================
   FOOTER — CMA N. Muthuraman & Co.
   ================================================================ */

/* Override old style.css rules */
.site-footer                          { padding: 0 !important; background: #0f0720 !important; color: #a89ec0 !important; }
.site-footer p                        { max-width: none !important; }
.site-footer a:not(.whatsapp-float)   { display: block !important; margin: 0 !important; }
.footer-bottom                        { padding: 0 !important; border-top: none !important; margin: 0 !important; }
.footer-grid                          { display: none !important; }

/* ── Main layout ── */
.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 1.1fr 1.2fr;
  gap: 52px;
  padding: 60px 0 52px;
  border-bottom: 1px solid #1e1038;
}

/* ── Col 1: Brand ── */
.ftr-logo {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.ftr-about {
  font-size: 13px;
  line-height: 1.8;
  color: #7d7290;
  margin: 0 0 22px;
  max-width: 280px;
}

/* Social icons */
.ftr-social {
  display: flex;
  gap: 10px;
}
.ftr-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1035;
  border: 1px solid #2e2050;
  color: #9085a8;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.ftr-social a:hover                    { background: #ff6a00; color: #fff; border-color: #ff6a00; }
.ftr-social a[aria-label="Instagram"]:hover { background: #e1306c; border-color: #e1306c; }
.ftr-social a[aria-label="Facebook"]:hover  { background: #1877f2; border-color: #1877f2; }
.ftr-social a[aria-label="YouTube"]:hover   { background: #ff0000; border-color: #ff0000; }
.ftr-social a[aria-label="LinkedIn"]:hover  { background: #0a66c2; border-color: #0a66c2; }
.ftr-social a[aria-label="WhatsApp"]:hover  { background: #25d366; border-color: #25d366; }

/* ── Cols 2 & 3: Link lists ── */
.ftr-col {
  display: flex;
  flex-direction: column;
}
.ftr-col h4 {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  margin: 0 0 20px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #ff6a00 !important;
  display: inline-block !important;
}
.ftr-col a {
  font-size: 13.5px !important;
  color: #8a7fa0 !important;
  margin: 0 0 10px !important;
  text-decoration: none !important;
  display: block !important;
  transition: color .2s, padding-left .2s;
}
.ftr-col a:hover { color: #fff !important; padding-left: 6px; }

/* ── Col 4: Contact ── */
.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 13.5px;
  color: #8a7fa0;
  line-height: 1.6;
}
.ftr-contact-item span:first-child {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}
.ftr-contact-item a {
  color: #c2bad4 !important;
  text-decoration: none !important;
  display: inline !important;
  margin: 0 !important;
  transition: color .2s;
}
.ftr-contact-item a:hover { color: #fff !important; }

/* ── Bottom bar ── */
.ftr-bottom-wrap {
  background: #090415;
  border-top: 1px solid #1e1038;
}
.ftr-bottom {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 !important;
  font-size: 12.5px;
  color: #4a4060;
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
}
.ftr-bottom strong { color: #7a6e8a; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ftr-brand { grid-column: 1 / -1; }
  .ftr-about { max-width: 100%; }
}
@media (max-width: 600px) {
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
}
