 .site-footer {
     background: #14161a;
     color: #b0b7c3;
     padding: 60px 0 0;
     border-top: 3px solid #3e8ed0;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 40px;
     padding-bottom: 40px;
 }

 .footer-title {
     font-size: 1.15rem;
     color: #ffffff;
     margin-bottom: 18px;
     font-weight: 600;
     letter-spacing: .5px;
 }

 .footer-desc {
     font-size: .92rem;
     line-height: 1.7;
     color: #9aa3af;
     margin-bottom: 20px;
 }
 /* Social */
 .footer-social {
     display: flex;
     gap: 10px;
 }

 .social-icon {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: #24272d;
     color: #c9d1d9;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .3s ease;
 }

 .social-icon:hover {
     background: #3e8ed0;
     color: #fff;
     transform: translateY(-3px);
 }
 /* Quick links */
 .footer-links,
 .footer-hours {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 11px;
 }

 .footer-link {
     color: #9aa3af;
     text-decoration: none;
     transition: color .2s ease, padding-left .2s ease;
 }

 .footer-link i {
     margin-right: 8px;
     color: #3e8ed0;
     font-size: .75rem;
 }

 .footer-link:hover {
     color: #ffffff;
     padding-left: 4px;
 }

 /* Contact & hours */
 .footer-contact {
     display: flex;
     align-items: center;
     gap: 10px;
     color: #9aa3af;
     margin-bottom: 24px;
 }

 .footer-contact i {
     color: #3e8ed0;
 }

 .footer-title-mt {
     margin-top: 28px;
 }

 .footer-hours li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 8px;
     font-size: .9rem;
     color: #9aa3af;
 }

 .footer-hours i {
     color: #3e8ed0;
     margin-top: 3px;
 }

 /* Bottom bar */
 .footer-bottom {
     border-top: 1px solid #2a2e35;
     padding: 22px 0;
     text-align: center;
     font-size: .9rem;
     color: #9aa3af;
 }

 .brand-name {
     color: #3e8ed0;
     font-weight: 600;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .footer-grid {
         grid-template-columns: 1fr;
         gap: 32px;
     }
     .site-footer {
         padding-top: 40px;
     }
 }
