/* --- Industrial Brand Refinements --- */
:root {
  --primary-navy: #002D5B;
  --accent-orange: #FF7D1A;
  --text-gray: #94a3b8;
  --gold-accent: #FFC107;
}

.footer-main {
  background: radial-gradient(circle at 50% 0%, #002D5B 0%, #001a35 100%);
  padding: 80px 0 20px;
  color: #f8fafc;
  border-top: 4px solid var(--accent-orange);
  font-family: 'Inter', sans-serif; /* Cleaner for industrial feel */
}

.footer-inner-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: start;
}

/* --- Logo Styling --- */
.footer-logo-text {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 10px;
}

.footer-logo-text span {
  color: var(--accent-orange);
}

.left-text {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 400px;
}

/* --- Social Icons --- */
.social-links {
  display: flex; 
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-orange);
  transform: translateY(-3px);
}

/* --- Right Side Grid --- */
.right-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-link-title {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
}

.footer-link-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Link & Contact Styling --- */
.footer-link-inner-wrapper a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.footer-link-inner-wrapper a:hover {
  color: #ffffff;
  padding-left: 10px; /* Modern slide effect */
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
}

.contact-item i {
  color: var(--accent-orange);
  font-size: 20px;
  margin-top: 3px;
}

.contact-label {
  display: block;
  font-weight: 700;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* --- Footer Bottom --- */
.footer-bottom-box {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-footer-text {
  color: #64748b;
  font-size: 13px;
}

/* --- Responsive --- */
@media(max-width: 1100px) {
  .footer-main-content { grid-template-columns: 1fr; gap: 50px; }
}

@media(max-width: 768px) {
  .right-footer-content { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 480px) {
  .right-footer-content { grid-template-columns: 1fr; }
  .footer-bottom-box { flex-direction: column; text-align: center; }
}