/* Footer Styles - extracted from home.css */
.footer {
  background: #1e2f63;
  color: #fff;
  padding: 40px 0 24px 0;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  border-radius: 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
}
.footer-branches {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-branch {
  text-align: center;
  max-width: 340px;
}
.branch-title {
  color: #a6cd39;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.branch-address {
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
  text-align: left;
}
.branch-address i {
  color: #a6cd39;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-social-icon {
  color: #fff;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social-icon:hover {
  background: #a6cd39;
  color: #1e2f63;
  transform: translateY(-2px);
}
@media (max-width: 430px) {
  .footer {
    padding: 32px 0 20px 0;
    
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .footer-content {
    gap: 24px;
  }
  .footer-logo-img {
    width: 160px;
  }
  .footer-branches {
    gap: 20px;
  }
  .footer-branch {
    max-width: 300px;
  }
  .branch-title {
    font-size: 1.05rem;
  }
  .branch-address {
    font-size: 0.9rem;
  }
  .footer-social {
    gap: 14px;
  }
  .footer-social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 24px 0 16px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .footer {
    padding: 32px 0 20px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 40px 0 24px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer {
    padding: 48px 0 28px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 56px 0 32px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (min-width: 431px) {
  .footer {
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 56px 0 32px 0;
    margin: 48px 0 0 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-radius: 0;
  }
  .footer-content {
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  .footer-logo-img {
    width: 260px;
  }
  .footer-branches {
    gap: 32px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .footer-branch {
    max-width: 300px;
    flex: 1 1 0;
    text-align: left;
    margin: 0 12px;
  }
  .branch-title {
    font-size: 1.25rem;
  }
  .branch-address {
    font-size: 1.05rem;
    justify-content: flex-start;
    text-align: left;
  }
  .footer-social {
    gap: 24px;
  }
  .footer-social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }
} 