/* footer-new.css */

.footer {
  background: #060b16; /* Darker background from mockup */
  color: #cbd5e1;
  font-family: "Poppins", Helvetica, sans-serif;
  padding: 0;
  z-index: 10;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer a:hover {
  color: #ef9920;
}

.footer-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

.footer-top {
  display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    padding: 70px 0 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo {
  margin-bottom: 30px;
}

.footer-brand .logo img {
  max-width: 100px; /* Reduced to match design */
  height: auto;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.7);
  margin-bottom: 20px;
  max-width: 420px;
}

/* CONTACT INFO STYLES MATCHING MOCKUP */
.contact-info {
  margin: 10px 0 25px;
}

.contact-item {
  margin-bottom: 15px;
}

.footer-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5); /* Faded label like mockup */
  margin-bottom: 4px;
  font-weight: 400;
}

.footer-value {
  display: block;
  color: #ffffff !important; /* Pure white values */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
}

/* SOCIAL ICONS MATCHING MOCKUP (Always Orange) */
.social {
  display: flex;
  gap: 14px;
  margin: 15px 0 35px;
}

.social a {
  width: 34px;
  height: 34px;
  background: #ef9920 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: all 0.3s ease;
}

.social a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(239, 153, 32, 0.4);
}

.social .ta-icon {
  width: 15px;
  height: 15px;
  fill: #fff;
}

/* BADGES MATCHING MOCKUP */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center; /* Align scripts and images */
  margin-top: 5px;
}

.badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.clutch-widget {
  margin-bottom: 0 !important;
}

/* LINK COLUMNS REFINED */
.footer-links {
  display: flex;
  gap: 70px; /* Increased gap to match design cluster */
  padding-top: 80px; /* Pushes nav down to align with brand content like design */
}

.footer-links h5 {
  color: #fff;
  font-size: 16px; /* Matched to design */
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 18px; /* More space between links */
}

.footer-links ul li a {
  font-size: 14px; /* Slightly increased for better readability */
  color: rgba(203, 213, 225, 0.75);
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ef9920;
  transform: translateX(5px); /* Subtle hover effect */
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(203, 213, 225, 0.5);
}

.footer-bottom .legal {
  display: flex;
  gap: 30px;
}

.footer-bottom .legal a {
  color: rgba(203, 213, 225, 0.5);
}

.footer-bottom .legal a:hover {
  color: #ef9920;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-brand p {
    margin: 0 auto 25px;
  }
  
  .footer-brand .social {
    justify-content: center;
  }
  
  .footer-brand .badges {
    justify-content: center;
  }

  .footer-links {
    display: grid !important;
    text-align: left;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    padding-top: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-links > *:last-child {
    grid-column: span 2;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-box {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 100%;
  }

  .footer-links > * {
    text-align: center;
  }

  .footer-links > *:last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
