/* Clean Professional Footer - Clutch Style */
.main-footer {
  background: #ffffff;
  color: #333333;
  padding: 60px 0 30px 0;
  margin-top: 80px;
  border-top: 1px solid #e5e5e5;
}

.main-footer .container {
  max-width: 1200px;
}

/* Logo Section */
.main-footer .logo-section {
  margin-bottom: 24px;
}

.main-footer .logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333333;
  font-size: 1.8em;
  font-weight: 700;
}

.main-footer .logo-link:hover {
  color: #333333;
  text-decoration: none;
}

.main-footer .logo-link .icon {
  width: 40px;
  height: 40px;
  background: #333333;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1em;
}

.main-footer .logo-text {
  color: #333333;
}

/* Address and Contact */
.main-footer .footer-address {
  color: #666666;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.main-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.main-footer .footer-contact a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.main-footer .footer-contact a:hover {
  color: #333333;
  text-decoration: none;
}

/* Section Titles */
.main-footer h5 {
  color: #333333;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation Links */
.main-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-footer .footer-link {
  color: #666666;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.main-footer .footer-link:hover {
  color: #333333;
  text-decoration: none;
}

/* Social Media */
.main-footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.main-footer .social-link {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.main-footer .social-link:hover {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
  text-decoration: none;
}

/* Footer Bottom */
.main-footer .footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 40px;
}

.main-footer .footer-bottom p {
  color: #666666;
  font-size: 0.85em;
  margin-bottom: 0;
}

.main-footer .footer-bottom .footer-nav {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.main-footer .footer-bottom .footer-link {
  font-size: 0.85em;
  color: #666666;
}

.main-footer .footer-bottom .footer-link:hover {
  color: #333333;
}

/* Privacy Choice Icon */
.main-footer .privacy-choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-footer .privacy-choice-icon {
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7em;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px 0;
    margin-top: 60px;
  }
  
  .main-footer .logo-link {
    font-size: 1.5em;
  }
  
  .main-footer .logo-link .icon {
    width: 36px;
    height: 36px;
  }
  
  .main-footer .social-links {
    justify-content: flex-start;
  }
  
  .main-footer .footer-bottom {
    text-align: center;
  }
  
  .main-footer .footer-bottom .d-flex {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-footer .footer-bottom .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .main-footer .col-lg-3,
  .main-footer .col-lg-2,
  .main-footer .col-md-6,
  .main-footer .col-md-3,
  .main-footer .col-sm-6 {
    margin-bottom: 30px;
  }
  
  .main-footer .footer-bottom .footer-nav {
    gap: 12px;
  }
}
