.footer-fixed-buttons {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
    background: #fff;
  }
  
  @media (min-width: 768px) {
    .footer-fixed-buttons a {
      width: 32%;
    }
  }

  .img-400px {
    max-height: 400px;
    object-fit: cover; /* Ensures good scaling/cropping */
  }

  .footer-fixed-buttons a {
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    padding: 10px 0;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-fixed-buttons .col-4:nth-child(1) a {
    background: #002B4E;
}

.footer-fixed-buttons .col-4:nth-child(2) a {
    background: #ED7620;
}

.footer-fixed-buttons .col-4:nth-child(3) a {
    background: #25D366;
}

.footer-fixed-buttons a:hover {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.1);
    color: #fff !important;
}

.enquiry-popup-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.enquiry-popup-form {
    background: #fff;
    padding: 24px 18px 18px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-width: 320px;
    max-width: 90vw;
    position: relative;
}
.close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
}
