/* ============================================
   FOOTER - REUSABLE MODERN FOOTER STYLES
   ============================================ */

.footer {
   background: #fff;
   padding: 80px 0 30px;
   font-family: 'Montserrat', sans-serif;
}

.footer .section-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 5%;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 60px;
   margin-bottom: 60px;
}

.footer-brand img {
   height: 50px;
   margin-bottom: 20px;
}

.footer-brand p {
   color: #718096;
   line-height: 1.7;
   margin-bottom: 25px;
}

.footer-social {
   display: flex;
   gap: 15px;
}

.footer-social a {
   width: 45px;
   height: 45px;
   background: #f8f9fc;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #2B3A67;
   transition: all 0.3s ease;
}

.footer-social a:hover {
   background: linear-gradient(135deg, #7ADFBB 0%, #9AAEF2 100%);
   transform: translateY(-3px);
}

.footer-social a svg {
   width: 20px;
   height: 20px;
   fill: currentColor;
}

.footer-column h4 {
   font-size: 1.1rem;
   font-weight: 700;
   color: #2B3A67;
   margin-bottom: 25px;
}

.footer-column ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-column li {
   margin-bottom: 12px;
}

.footer-column a {
   color: #718096;
   text-decoration: none;
   transition: all 0.3s ease;
}

.footer-column a:hover {
   color: #E84855;
   padding-left: 5px;
}

.footer-bottom {
   padding-top: 30px;
   border-top: 1px solid #eee;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer-bottom p {
   color: #718096;
   font-size: 0.95rem;
   margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
   .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
   }
}

@media (max-width: 640px) {
   .footer {
      padding: 60px 0 30px;
   }
   
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }
   
   .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
   }
}
