
    /* === Footer === */
    footer {
      background: linear-gradient(135deg, var(--rifle-green) 0%, #3a3c30 100%);
      color: var(--bone);
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c0d5ae' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.3;
      z-index: 1;
    }

    /* Floating background elements for footer */
    footer::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(192,213,174,0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: footerFloat 15s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes footerFloat {
      0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.08; 
      }
      50% { 
        transform: translateY(-50px) rotate(180deg) scale(1.2); 
        opacity: 0.15; 
      }
    }

    /* Footer Main Content */
    .footer-main {
      padding: 100px 0 60px;
      position: relative;
      z-index: 2;
    }


    /* Footer Content Grid */
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 80px;
      position: relative;
      z-index: 2;
    }

    .footer-col {
      position: relative;
    }

    /* Brand Column */
    .footer-brand {
      padding-right: 40px;
    }

    .footer-logo {
      max-width: 180px;
      margin-bottom: 35px;
      filter: brightness(0) invert(1);
      transition: all 0.4s ease;
    }

    .footer-logo:hover {
      transform: scale(1.05);
      filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(192,213,174,0.3));
    }

    .footer-description {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(224, 230, 212, 0.9);
      margin-bottom: 40px;
      font-weight: 300;
    }

    /* Premium Social Links */
    .footer-social {
      display: flex;
      gap: 20px;
    }

    .footer-social .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(248,249,245,0.8);
      color: var(--rifle-green);
      font-size: 1.3rem;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      text-decoration: none;
      border: 2px solid rgba(192,213,174,0.2);
    }

    .footer-social .social-link:hover {
      transform: translateY(-10px) scale(1.1);
      background: var(--light-moss);
      color: var(--rifle-green);
      box-shadow: 0 20px 40px rgba(192,213,174,0.3);
      border-color: var(--light-moss);
      text-decoration: none;
    }

    /* Footer Column Headers */
    .footer-col h3 {
      font-family: 'EmotiveType', serif;
      font-size: 1.6rem;
      margin-bottom: 35px;
      color: var(--light-moss);
      position: relative;
      padding-bottom: 20px;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--light-moss);
      opacity: 0.6;
    }

    /* Footer Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 18px;
    }

    .footer-links a {
      color: rgba(224, 230, 212, 0.9);
      text-decoration: none;
      transition: all 0.4s ease;
      font-weight: 400;
      font-size: 1.05rem;
      position: relative;
      padding-left: 0;
    }

    .footer-links a::before {
      content: '';
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 2px;
      background: var(--light-moss);
      transition: width 0.4s ease;
    }

    .footer-links a:hover {
      color: var(--light-moss);
      padding-left: 25px;
    }

    .footer-links a:hover::before {
      width: 15px;
    }

    /* Footer Contact */
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-contact li {
      margin-bottom: 25px;
      display: flex;
      align-items: flex-start;
      font-weight: 400;
      color: rgba(224, 230, 212, 0.9);
      font-size: 1.05rem;
      line-height: 1.6;
      transition: all 0.4s ease;
    }

    .footer-contact li:hover {
      color: var(--light-moss);
      transform: translateX(8px);
    }

    .footer-contact i {
      margin-right: 18px;
      color: var(--light-moss);
      min-width: 20px;
      margin-top: 3px;
      font-size: 1.1rem;
      transition: all 0.4s ease;
    }

    .footer-contact li:hover i {
      transform: scale(1.2);
    }

    /* Premium Copyright Section */
    .footer-bottom {
      padding: 40px 0;
      border-top: 1px solid rgba(192,213,174,0.2);
      position: relative;
      z-index: 2;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .copyright {
      color: rgba(224, 230, 212, 0.8);
      font-size: 1rem;
      font-weight: 300;
      margin: 0;
    }

    .footer-links-bottom {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-links-bottom a {
      color: rgba(224, 230, 212, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.4s ease;
      position: relative;
    }

    .footer-links-bottom a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--light-moss);
      transition: width 0.4s ease;
    }

    .footer-links-bottom a:hover {
      color: var(--light-moss);
    }

    .footer-links-bottom a:hover::after {
      width: 100%;
    }

    /* Responsive Design for Footer */
    @media (max-width: 1200px) {
      .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
      }
    }

    @media (max-width: 992px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .footer-main {
        padding: 80px 0 40px;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .footer-brand {
        padding-right: 0;
        text-align: center;
      }
      
      .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      
      .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
    }

    @media (max-width: 576px) {
      .footer-col h3 {
        font-size: 1.3rem;
      }
    }
