/* ========================
   FOOTER STYLING - COOAI
   ======================== */
   :root {
    --footer-bg-color: #ffffff;
    --footer-text-color: #333333;
    --footer-hover-color: #FF6B6B;
    --footer-border-color: rgba(255, 215, 0, 0.3);
    --transition-speed: 0.3s;
  }
  
  .site-footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 1rem 2rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h3 {
    color: var(--footer-text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--footer-hover-color);
  }
  
  .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .contact-info li i {
    margin-right: 0.5rem;
    color: var(--footer-hover-color);
  }
  
  .contact-info a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
  }
  
  .contact-info a:hover {
    color: var(--footer-hover-color);
  }
  
  .footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--footer-border-color);
    font-size: 0.85rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      padding: 1rem 0;
    }
    
    .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .contact-info li {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer {
      padding: 1rem;
    }
    
    .footer-section {
      width: 100%;
    }
  }
  