/* DayTronX — footer.css */

.dt-footer {
  background: var(--dt-dark-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 40px 0;
}
.dt-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.dt-footer-col h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dt-white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.dt-footer-col img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.dt-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  max-width: 220px;
  line-height: 1.6;
}
.dt-footer-col ul {
  list-style: none;
}
.dt-footer-col li {
  margin-bottom: 10px;
}
.dt-footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 300;
}
.dt-footer-col a:hover {
  color: var(--dt-teal);
}
.dt-footer-contact {
  list-style: none;
}
.dt-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 300;
}
.dt-footer-contact i {
  font-size: 17px;
  color: var(--dt-teal);
  flex-shrink: 0;
}
.dt-footer-cta {
  display: inline-block;
  background: var(--dt-teal);
  color: var(--dt-white) !important;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background 0.18s ease;
}
.dt-footer-cta:hover {
  background: var(--dt-teal-dark);
}

.dt-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.dt-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.dt-footer-bottom a:hover {
  color: var(--dt-teal);
}

@media (max-width: 900px) {
  .dt-footer { padding: 50px 24px 0; }
  .dt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .dt-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dt-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
