<style>
.footer {
  background-color: rgb();
  font-size: 15px;
}
  .footer-premium {
    background-color: var(--aear-deep-forest); /* #052D01 - Deep Green Footer */
    color: var(--aear-text-on-green); /* #FAFBF8 - Text on dark */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-premium h2, 
  .footer-premium h3 {
    color: var(--aear-text-on-green); /* White text on dark footer */
    letter-spacing: -0.01em;
  }

  .footer-premium p {
    line-height: 1.6;
    color: rgba(250, 251, 248, 0.85);
  }

  /* Newsletter Form Styling */
  .newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--aear-text-on-green);
  }

  .newsletter-form .form-control::placeholder {
    color: rgba(250, 251, 248, 0.5);
  }

  .newsletter-form .form-control:focus {
    border-color: var(--aear-cta-yellow);
    box-shadow: 0 0 0 4px rgba(254, 214, 0, 0.15);
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
  }

  .newsletter-form .btn-subscribe {
    background: var(--aear-cta-yellow); /* #FED600 - CTA Yellow (3% Rule) */
    color: var(--aear-cta-yellow-text); /* #111814 */
    border: 1px solid var(--aear-cta-yellow);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(254, 214, 0, 0.2);
  }

  .newsletter-form .btn-subscribe:hover,
  .newsletter-form .btn-subscribe:focus {
    background: var(--aear-cta-yellow-hover); /* #E5C100 */
    color: #FFFFFF !important;
    border-color: var(--aear-cta-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(229, 193, 0, 0.35);
  }

  /* Footer Links with Hover Effects */
  .footer-premium .list-unstyled li {
    margin-bottom: 12px;
  }

  .footer-premium .list-unstyled a {
    color: rgba(250, 251, 248, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  .footer-premium .list-unstyled a:hover {
    color: var(--aear-cta-yellow); /* Yellow accent on hover */
    transform: translateX(2px);
  }

  .footer-premium .list-unstyled a:hover::before {
    opacity: 1;
    transform: translateX(-18px);
  }

  /* Quick Contact Section */
  .footer-premium .quick-contact a {
    color: rgba(250, 251, 248, 0.8);
    transition: color 0.3s ease;
  }
  
  .footer-premium .quick-contact a:hover {
    color: var(--aear-cta-yellow);
  }

  .footer-premium .quick-contact i {
    color: var(--aear-cta-yellow) !important;
    font-size: 1.25rem;
    background: rgba(254, 214, 0, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  /* Bottom Credits */
  .footer-premium .credits {
    font-size: 0.9rem;
    color: rgba(250, 251, 248, 0.65);
  }

  .footer-premium .brand-highlight {
    color: var(--aear-cta-yellow);
  }

  /* ============================================================
     SOCIAL ICONS — Premium Footer Social Links
     Professional UI/UX with smooth hover animations
     ============================================================ */
  .footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social-links .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(250, 251, 248, 0.85);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .footer-social-links .social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .footer-social-links .social-icon-link:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .footer-social-links .social-icon-link.facebook:hover {
    background: #1877F2;
  }

  .footer-social-links .social-icon-link.linkedin:hover {
    background: #0A66C2;
  }

  .footer-social-links .social-icon-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  }

  .footer-social-links .social-icon-link:active {
    transform: translateY(-1px) scale(0.95);
  }

  /* Accessibility: focus-visible ring */
  .footer-social-links .social-icon-link:focus-visible {
    outline: 2px solid var(--aear-cta-yellow);
    outline-offset: 2px;
  }
</style>