
/* Footer */
.main-footer {
    background: #1f2731;
    color: var(--white);
}

.footer-content {
    padding: 3rem 0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--lightHelper);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/*.social-links a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: #007bff;*/
/*    border-radius: 50%;*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*    transition: background 0.3s ease;*/
/*}*/

.social-links a:hover {
    color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 1rem 0;
    text-align: center;
}

.copyright {
    color: #ccc;
}
/*Mobile Menu */
.bottom-nav {
    display: none;
  }

/* Responsive Design */
@media (max-width: 768px) { /*Mobile Menu */
    .bottom-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      bottom: 0;
      right: 0;
      left: 0;
      background-color: var(--helperColor);
      height: 60px;
      padding: 0 10px;
      z-index: 999;
      border-radius: 15px 15px 0 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .nav-item {
      color: var(--white);
      text-align: center;
      flex: 1;
      font-size: 12px;
    }
    .nav-item a {
        color: #FFF;
        text-decoration: none;
    }
    .nav-item i {
      display: block;
      font-size: 18px;
      margin-bottom: 3px;
    }

    .nav-add {
      background-color: var(--lightHelper);
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        margin: -40px auto 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}
