  
  .nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f8f72;
    padding: 14px 40px;
    border-radius: 6px;
    display: flex;
    gap: 40px;
    z-index: 10;
    gap: 100px;
  }
  
  .nav a {
    color: white;
    letter-spacing: 2px;
    font-size: 20px;
    font-family: Antonio, sans-serif;
    text-decoration: none;
  }
  
/* ===== Mobile ===== */
@media (max-width: 600px) {
    .nav {
      top: 30px;
      padding: 10px 16px;
      gap: 40px;
    }
  
    .nav a {
      font-size: 16px;
      letter-spacing: 0px;
    }
  }
/* ===== Footer (cleaner + smaller desktop scale) ===== */
.site-footer{
  background: #9fb8b2;
  color: #ffffff;
  padding: 45px 0 0;
  overflow: hidden;
}

.footer-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 20px;
  padding-bottom: 18px;
}

/* Titles */
.footer-title{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: Antonio, sans-serif;
  text-transform: uppercase;
}

/* Contact list */
.contact-list{
  display: grid;
  gap: 14px;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.95;
}

.contact-text{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* Right nav */
.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  padding-top: 30px;
}

.footer-nav a{
  color: #ffffff;
  text-decoration: none;
  font-size: 30px;
  letter-spacing: 4px;
  font-weight: 700;
  font-family: Antonio, sans-serif;
  text-transform: uppercase;
}

/* Hover (more subtle now) */
.footer-nav a:hover{
  color: #1f8f72;
  transform: translateX(-3px);
  transition: all 0.25s ease;
}

/* Marquee */
.footer-marquee{
  padding: 12px 0 22px;
}

.marquee-track{
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 14s linear infinite;
}

.marquee-track span{
  font-size: 70px;
  letter-spacing: 4px;
  font-weight: 800;
  font-family: Antonio, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

  
  /* Left -> Right (as you asked) */
  @keyframes marquee{
    from { transform: translateX(-40%); }
    to   { transform: translateX(0%); }
  }
  
  /* Mobile */
  @media (max-width: 820px){
   
    .footer-inner{
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      justify-items: center;
    }
  
    .footer-nav{
      align-items: center;
    }
  
    .contact-text{
      font-size: 22px;
    }
  
    .footer-title{
      font-size: 45px;
    }
  
    .footer-nav a{
      font-size: 30px;
    }
  
    .marquee-track span{
      font-size: 70px;
    }
  }
  