﻿/* ==========================================================================
   T20ICL Custom — Footer Responsive Layout System (Critical Fix Edition)
   ========================================================================== */

.t20icl-footer {
  background: var(--t20icl-navy-dark, #070d18);
  color: #94a3b8;
  padding: 60px 0 30px 0;
  border-top: 3px solid var(--t20icl-orange, #ff6500);
}

.t20icl-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .t20icl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .t20icl-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

.t20icl-footer-logo-wrap {
  margin-bottom: 16px;
}

.t20icl-footer-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.t20icl-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.t20icl-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.t20icl-fbadge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.t20icl-footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.t20icl-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--t20icl-orange, #ff6500);
  border-radius: 2px;
}

.t20icl-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t20icl-footer-links li a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
  display: inline-block;
}

.t20icl-footer-links li a:hover {
  color: var(--t20icl-orange, #ff6500);
  transform: translateX(3px);
}

.t20icl-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.t20icl-footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.t20icl-footer-contact-list strong {
  color: #ffffff;
  font-size: 13px;
}

.t20icl-footer-contact-list a {
  color: var(--t20icl-orange, #ff6500);
  font-weight: 600;
  text-decoration: none;
}

.t20icl-footer-contact-list a:hover {
  text-decoration: underline;
}

.t20icl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
}

@media (min-width: 768px) {
  .t20icl-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.t20icl-copyright strong {
  color: #ffffff;
}

.t20icl-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t20icl-footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
}

.t20icl-footer-legal-links a:hover {
  color: #ffffff;
}

.t20icl-sep {
  color: rgba(255, 255, 255, 0.2);
}
