/* Footer Styles */
    .site-footer {
      background: linear-gradient(135deg, #1A6B5F 0%, #0F4A42 50%, #1A6B5F 100%);
      color: #FFF5E0;
      padding: 0;
      font-family: 'Poppins', Arial, sans-serif;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #C76A4A, #1A6B5F, #C76A4A);
    }

    .site-footer::after {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(199, 106, 74, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) translateX(0px); }
      50% { transform: translateY(-20px) translateX(10px); }
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 50px 40px 30px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
    }

    .footer-logo-img {
      height: 55px;
      width: auto;
      transition: all 0.4s ease;
      filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
    }

    .footer-logo-link:hover .footer-logo-img {
      transform: scale(1.08) rotate(3deg);
      filter: drop-shadow(0 5px 15px rgba(199, 106, 74, 0.4));
    }

    .footer-brand-text {
      font-size: 18px;
      font-weight: 700;
      background: linear-gradient(135deg, #FFF5E0, #C76A4A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-tagline {
      font-size: 14px;
      color: rgba(255, 245, 224, 0.8);
      font-style: italic;
      margin-top: 5px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
    }

    .footer-nav-items {
      list-style: none;
      display: flex;
      gap: 35px;
      margin: 0;
      padding: 0;
      flex-wrap: nowrap;
    }

    .footer-nav-items li {
      flex-shrink: 0;
    }

    .footer-nav-items a {
      color: #FFF5E0;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      position: relative;
      transition: all 0.3s ease;
      white-space: nowrap;
      padding: 8px 16px;
      border-radius: 20px;
      background: rgba(255, 245, 224, 0.05);
      backdrop-filter: blur(5px);
    }

    .footer-nav-items a:hover,
    .footer-nav-items a:focus {
      color: #1A6B5F;
      background: rgba(255, 245, 224, 0.95);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .footer-nav-items a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #C76A4A, #1A6B5F);
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
      border-radius: 1px;
    }

    .footer-nav-items a:hover::after,
    .footer-nav-items a:focus::after {
      width: 80%;
    }

    .social-section {
      text-align: center;
    }

    .social-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #FFF5E0;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(255, 245, 224, 0.9) 0%, rgba(255, 245, 224, 0.7) 100%);
      border-radius: 50%;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(199, 106, 74, 0.3);
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #C76A4A, #1A6B5F);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 50%;
    }

    .social-link:hover::before,
    .social-link:focus::before {
      opacity: 1;
    }

    .social-link:hover,
    .social-link:focus {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      border-color: #C76A4A;
    }

    .social-icon {
      width: 24px;
      height: 24px;
      position: relative;
      z-index: 1;
      transition: filter 0.3s ease;
    }

    .social-link:hover .social-icon,
    .social-link:focus .social-icon {
      filter: brightness(0) invert(1);
    }

    .footer-info {
      text-align: right;
    }

    .footer-contact {
      margin-bottom: 15px;
    }

    .footer-contact h4 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px 0;
      color: #FFF5E0;
    }

    .footer-contact p {
      margin: 0;
      font-size: 13px;
      color: rgba(255, 245, 224, 0.8);
      line-height: 1.4;
    }

    .footer-contact a {
      color: #C76A4A;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact a:hover {
      color: #FFF5E0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 245, 224, 0.2);
      padding: 20px 40px;
      text-align: center;
      background: rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
    }

    .footer-copyright {
      margin: 0;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 245, 224, 0.9);
    }

    .footer-love {
      margin-top: 8px;
      font-size: 12px;
      color: rgba(255, 245, 224, 0.7);
    }

    .footer-love .heart {
      color: #C76A4A;
      font-size: 14px;
      animation: heartbeat 2s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px 20px;
        gap: 35px;
      }

      .footer-left,
      .footer-right {
        align-items: center;
      }

      .footer-info {
        text-align: center;
      }

      .footer-logo-img {
        height: 45px;
      }

      .footer-nav-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .footer-nav-items a {
        font-size: 14px;
        padding: 10px 20px;
      }

      .social-icons {
        gap: 12px;
      }

      .social-link {
        width: 44px;
        height: 44px;
      }

      .social-icon {
        width: 22px;
        height: 22px;
      }

      .footer-bottom {
        padding: 20px;
        margin-bottom: 80px; /* Space for mobile navigation */
      }

      .footer-contact h4 {
        font-size: 15px;
      }

      .footer-contact p {
        font-size: 12px;
      }

      .social-title {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .footer-container {
        padding: 30px 16px 15px;
        gap: 25px;
      }

      .footer-brand-text {
        font-size: 16px;
      }

      .footer-tagline {
        font-size: 13px;
      }

      .footer-nav-items a {
        font-size: 13px;
        padding: 8px 16px;
      }

      .social-link {
        width: 40px;
        height: 40px;
      }

      .social-icon {
        width: 20px;
        height: 20px;
      }
    }