.bottom-section {
  position: relative;
  width: 100%;
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.bottom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 38%, rgba(24,23,28,0.2) 100%), 
    url('../img/bottom-bg.jpg') center center/cover no-repeat;
  z-index: 1;
}

.bottom-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1400px;
  padding: 36px 40px 20px 36px;
  box-sizing: border-box;
  z-index: 2;
}

.bottom-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 275px;
  max-width: 320px;
  gap: 24px;
}

.bottom-logo {
  width: 110px;
  margin-bottom: 10px;
}

.bottom-desc {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 6px;
}

.bottom-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

.bottom-whatsapp .bottom-icon {
  width: 24px;
  height: 24px;
}

.bottom-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.bottom-socials img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.bottom-socials a:hover img {
  filter: brightness(1.5) invert(0.5) sepia(1) hue-rotate(210deg) saturate(2);
}

.bottom-center {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 200px;
  margin-left: 60px;
}

.bottom-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  letter-spacing: 1px;
}

.bottom-links li {
  opacity: 0.95;
  transition: color 0.2s;
  cursor: pointer;
}

.bottom-links li:hover {
  color: #fff;
}

.bottom-copyright {
  color: #ccc;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 5px;
  opacity: 0.85;
  white-space: pre-line;
}

/* Responsive */
@media (max-width: 900px) {
  .bottom-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 16px 14px 16px;
    gap: 28px;
  }
  .bottom-center {
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  .bottom-links {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .bottom-section {
    min-height: 210px;
  }
  .bottom-content {
    padding: 18px 4vw 8px 4vw;
    gap: 12px;
  }
  .bottom-logo {
    width: 76px;
  }
  .bottom-left {
    min-width: 0;
    max-width: 100%;
    gap: 12px;
  }
  .bottom-desc {
    font-size: 0.92rem;
  }
  .bottom-socials img {
    width: 22px;
    height: 22px;
  }
  .bottom-links {
    font-size: 0.99rem;
    gap: 4px;
  }
  .bottom-copyright {
    font-size: 0.85rem;
  }
}