.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 80px 30px 60px;
    text-align: center;
    position: relative;
    font-size: 16px;
    box-shadow: 0px -5px 20px rgba(255, 255, 255, 0.1);
    border-top: 3px solid rgba(255, 107, 107, 0.5);
    margin-top: 40px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffcc00;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
  }
  
  .footer-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffcc00);
    display: block;
    margin: 8px auto 0;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin: 10px 0;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  
  .footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ffcc00);
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  
  .footer-column ul li a:hover::after {
    width: 100%;
    left: 0;
  }
  
  .footer-column ul li a:hover {
    color: #ffcc00;
    transform: scale(1.05);
  }
  
  .footer-contact a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  
  .footer-contact a:hover {
    color: #ffcc00;
  }
  
  .map-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
  }
  
  .map-container:hover iframe {
    pointer-events: auto;
    transform: scale(1.03);
  }
  
  .map-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff6b6b, #ffcc00);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(255, 107, 107, 0.3);
  }
  
  .map-button:hover {
    background: linear-gradient(45deg, #ffcc00, #ff6b6b);
    transform: scale(1.05);
  }
  
  .footer-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-icons a {
    font-size: 26px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .footer-icons a:hover {
    color: #ffcc00;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.15);
  }
  
  .footer-copy {
    font-size: 15px;
    margin-top: 30px;
    opacity: 0.75;
    color: #ddd;
  }
  
  .quote.shimmer-text {
    font-style: italic;
    font-size: 18px;
    margin-top: 25px;
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 4s infinite linear;
    font-weight: 600;
    letter-spacing: 1.5px;
  }
  
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-column {
      text-align: center;
    }
  }  

  .footer-column a.d-inline-flex {
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-column a.d-inline-flex i {
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-column a.d-inline-flex:hover {
    color: #ffcc00;
    transform: scale(1.05);
  }
  
  .footer-column a.d-inline-flex:hover i {
    color: #ffcc00;
    transform: scale(1.15);
  }  