<style>
.footer {
  background-color: rgb();
  font-size: 15px;
}
  .footer-premium {
    background-color: rgb(250, 251, 248); /* Updated background color */
    color: #4b5563; /* Subtle text-muted color */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Soft separation from main content */
  }

  .footer-premium h2, 
  .footer-premium h3 {
    color: #010101; /* Darker heading color for high contrast */
    letter-spacing: -0.01em;
  }

  .footer-premium p {
    line-height: 1.6;
  }

  /* Newsletter Form Styling */
  .newsletter-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
  }

  .newsletter-form .form-control:focus {
    border-color: #084202;
    box-shadow: 0 0 0 4px rgba(8, 66, 2, 0.1);
    outline: none;
  }

  .newsletter-form .btn-subscribe {
    background: #084202;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(8, 66, 2, 0.15);
  }

  .newsletter-form .btn-subscribe:hover {
    background: #127507;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 66, 2, 0.25);
  }

  /* Footer Links with Hover Effects */
  .footer-premium .list-unstyled li {
    margin-bottom: 12px;
  }

  .footer-premium .list-unstyled a {
    color: #010101;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  /* Custom animated arrow on hover */
  /*.footer-premium .list-unstyled a::before {
    content: "→";
    color: #084202;
    font-size: 1.1rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
    position: absolute;
  }*/

  .footer-premium .list-unstyled a:hover {
    color: #084202;
    transform: translateX(2px); /* Slide text right */
  }

  .footer-premium .list-unstyled a:hover::before {
    opacity: 1;
    transform: translateX(-18px); /* Slide arrow into view */
  }

  /* Quick Contact Section */
  .footer-premium .quick-contact a {
    color: #4C3333;
    transition: color 0.3s ease;
  }
  
  .footer-premium .quick-contact a:hover {
    color: #084202;
  }

  .footer-premium .quick-contact i {
    color: #084202 !important; /* Force brand green */
    font-size: 1.25rem;
    background: rgba(8, 66, 2, 0.08);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  /* Bottom Credits */
  .footer-premium .credits {
    font-size: 0.9rem;
  }

  .footer-premium .brand-highlight {
    color: #084202;
  }
</style>