/* Footer Styles */

footer {
  position: relative;
  bottom: 0;
  display: flex;
  max-width: 1400px;
  margin: 0 auto; 
  padding: 0;
  justify-content: left;
  background-color: var(--white-back);
  border-top: 2px solid var(--grey-theme);
  align-items: center;
  overflow: hidden;
}

.vip-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  padding: 50px;
  box-sizing: border-box;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
}

.vip-footer-section {
    flex: 1;
    margin: 0px 200px;
    font-size: 15px;
}

.vip-footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.vip-footer-section ul {
  padding: 0;
}

.vip-footer-section li {
  margin-bottom: 15px;
}

.vip-footer-section p {
  margin: 0;
  color: var(--black-text);
}

.vip-footer-section a {
  font-size: 14px;
  color: var(--black-text);
}

.vip-footer-section a:hover {
  color: var(--grey-theme);
}

.vip-footer-logo {
  max-width: 200px;
}

.vip-footer-icon {
  width: 40px; 
  height: 40px;
  margin-right: 10px;
}
.vip-footer-icon-phone {
  width: 35px; 
  height: 35px;
  margin-top: 10px;
  margin-right: 15px;
}

/* Contact Items Styles */

.vip-footer-heading {
  font-weight: bold;
  color: var(--black-text);
  font-size: 1.5em;
  margin-bottom: 20px;
}

.vip-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex: 1 1 auto; 
}

.vip-contact-text {
  font-size: 1.1em;
  color: var(--black-text);
}

@media (max-width: 1450px) {
  .vip-footer-content {
    padding: 5px;
  }
  
  .vip-footer-section {
    margin: 20px;
    padding-left: 0;
  }
  
  .vip-footer-section a {
    font-size: 12px;
  }
  
  .vip-footer-logo {
    max-width: 200px;
  }
}

@media (max-width: 850px) {
  .vip-footer-content {
    flex-direction: column;
    padding: 20px;
  }

  .vip-footer-logo {
    max-width: 200px;
  }

  .vip-footer-section {
    margin: 10px 0;
    width: 100%;
  }

  .vip-footer-section h4 {
    font-size: 18px;
  }

  .vip-footer-heading {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
  }
  
  .vip-footer-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  .vip-contact-text {
    font-size: 1.1em;
  }
}
